[SCM] live-build branch, upstream, updated. upstream/2.0_a22-1-g6ce55c5
Daniel Baumann
daniel at debian.org
Sat Aug 14 18:56:23 UTC 2010
The following commit has been merged in the upstream branch:
commit 6ce55c55f1b12f89001175e06e90929f399b3c1b
Author: Daniel Baumann <daniel at debian.org>
Date: Sat Aug 14 20:54:38 2010 +0200
Adding upstream version 2.0~a23.
diff --git a/Makefile b/Makefile
index 28ff8b4..33c78b4 100644
--- a/Makefile
+++ b/Makefile
@@ -40,16 +40,16 @@ build:
install:
# Installing shared data
- mkdir -p $(DESTDIR)/usr/share/live-helper
- cp -r cgi data examples functions scripts hooks includes lists repositories templates $(DESTDIR)/usr/share/live-helper
+ mkdir -p $(DESTDIR)/usr/share/live/build
+ cp -r cgi data examples functions scripts hooks includes lists repositories templates $(DESTDIR)/usr/share/live/build
# Installing executables
mkdir -p $(DESTDIR)/usr/bin
- mv $(DESTDIR)/usr/share/live-helper/scripts/build/lh $(DESTDIR)/usr/share/live-helper/scripts/build/live-helper $(DESTDIR)/usr/bin
+ mv $(DESTDIR)/usr/share/live/build/scripts/build/lh $(DESTDIR)/usr/share/live/build/scripts/build/live-helper $(DESTDIR)/usr/bin
# Installing documentation
- mkdir -p $(DESTDIR)/usr/share/doc/live-helper
- cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-helper
+ mkdir -p $(DESTDIR)/usr/share/doc/live-build
+ cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-build
# Installing manpages
for MANPAGE in manpages/en/*; \
@@ -72,13 +72,14 @@ install:
uninstall:
# Uninstalling shared data
- rm -rf $(DESTDIR)/usr/share/live-helper
+ rm -rf $(DESTDIR)/usr/share/live/build
+ rmdir --ignore-fail-on-non-empty $(DESTDIR)/usr/share/live
# Uninstalling executables
rm -f $(DESTDIR)/usr/bin/lh $(DESTDIR)/usr/bin/live-helper
# Uninstalling documentation
- rm -rf $(DESTDIR)/usr/share/doc/live-helper
+ rm -rf $(DESTDIR)/usr/share/doc/live-build
# Uninstalling manpages
for MANPAGE in manpages/en/*; \
diff --git a/VERSION b/VERSION
index 73f70a8..418bd6c 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0~a22
+2.0~a23
diff --git a/cgi/cgi b/cgi/cgi
index 05e10bb..66eded8 100755
--- a/cgi/cgi
+++ b/cgi/cgi
@@ -8,7 +8,7 @@
# under certain conditions; see COPYING for details.
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Reading defaults
if [ -r /etc/default/live-helper.cgi ]
diff --git a/cgi/cron b/cgi/cron
index 4815614..47b1f4c 100755
--- a/cgi/cron
+++ b/cgi/cron
@@ -8,7 +8,7 @@
# under certain conditions; see COPYING for details.
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Reading defaults
if [ -r /etc/default/live-helper.cgi ]
diff --git a/cgi/default b/cgi/default
index 41c76ef..b58efe7 100644
--- a/cgi/default
+++ b/cgi/default
@@ -7,7 +7,7 @@ _MODE="debian-official"
_DEBUG="disabled"
_DESTDIR="/srv/debian-live/build/www"
-_TEMPLATES="/usr/share/live-helper/templates/cgi/${_MODE}"
+_TEMPLATES="/usr/share/live/build/templates/cgi/${_MODE}"
_TEMPDIR="/srv/debian-live/build/tmp"
LH_MIRROR_BOOTSTRAP="http://ftp.de.debian.org/debian/"
diff --git a/examples/hooks/all_binary_live-helper.sh b/examples/hooks/all_binary_live-helper.sh
index c1823b3..219193b 100755
--- a/examples/hooks/all_binary_live-helper.sh
+++ b/examples/hooks/all_binary_live-helper.sh
@@ -18,7 +18,7 @@ else
mkdir -p "${DIRECTORY}"/live-helper/bin
cp -a /usr/bin/lh* "${DIRECTORY}"/live-helper/bin
- cp -a /usr/share/live-helper "${DIRECTORY}"/live-helper/share
+ cp -a /usr/share/live/build "${DIRECTORY}"/live-helper/share
- cp -a /usr/share/doc/live-helper "${DIRECTORY}"/live-helper/doc
+ cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-helper/doc
fi
diff --git a/functions/common.sh b/functions/common.sh
index 0c48175..7d33310 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -9,7 +9,7 @@
PROGRAM="$(basename ${0})"
PACKAGE="live-helper"
-VERSION="2.0~a22-1"
+VERSION="2.0~a23-1"
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
PATH="${PWD}/auto/helpers:${PATH}"
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 12141dd..8e62e5c 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -11,7 +11,7 @@ Set_defaults ()
{
## config/common
- LH_BASE="${LH_BASE:-/usr/share/live-helper}"
+ LH_BASE="${LH_BASE:-/usr/share/live/build}"
# Setting mode
if [ -z "${LH_MODE}" ]
@@ -24,7 +24,7 @@ Set_defaults ()
then
case "${LH_MODE}" in
debian|debian-release)
- LH_DISTRIBUTION="lenny"
+ LH_DISTRIBUTION="squeeze"
;;
emdebian)
diff --git a/functions/packageslists.sh b/functions/packageslists.sh
index beeaec8..08b3880 100755
--- a/functions/packageslists.sh
+++ b/functions/packageslists.sh
@@ -21,7 +21,7 @@ Expand_packagelist ()
_LH_NESTED=0
_LH_ENABLED=1
- for _LH_SEARCH_PATH in ${@} "${LH_BASE:-/usr/share/live-helper}/lists"
+ for _LH_SEARCH_PATH in ${@} "${LH_BASE:-/usr/share/live/build}/lists"
do
if [ -e "${_LH_SEARCH_PATH}/${_LH_LIST_NAME}" ]
then
diff --git a/hooks/minimal b/hooks/minimal
index fdb289b..33f3cce 100755
--- a/hooks/minimal
+++ b/hooks/minimal
@@ -1,6 +1,6 @@
#!/bin/sh
-# /usr/share/live-helper/hooks/minimal - hook list for live-helper(7)
+# /usr/share/live/build/hooks/minimal - hook list for live-helper(7)
# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/hooks/stripped b/hooks/stripped
index 95afdf2..8463124 100755
--- a/hooks/stripped
+++ b/hooks/stripped
@@ -1,6 +1,6 @@
#!/bin/sh
-# /usr/share/live-helper/hooks/stripped - hook list for live-helper(7)
+# /usr/share/live/build/hooks/stripped - hook list for live-helper(7)
# Copyright (C) 2006-2010 Daniel Baumann <daniel at debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/lists/debian-forensics b/lists/debian-forensics
index 3c6c549..18b6d2f 100644
--- a/lists/debian-forensics
+++ b/lists/debian-forensics
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/debian-forensics - package list for live-helper(7)
+# /usr/share/live/build/lists/debian-forensics - package list for live-helper(7)
## LH: Debian Forensics
#include <standard>
diff --git a/lists/debian-junior b/lists/debian-junior
index 51b5b34..7c84e2d 100644
--- a/lists/debian-junior
+++ b/lists/debian-junior
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/debian-junior - package list for live-helper(7)
+# /usr/share/live/build/lists/debian-junior - package list for live-helper(7)
## LH: Debian Junior
#include <standard>
diff --git a/lists/debian-live b/lists/debian-live
index 3643780..c3d89af 100644
--- a/lists/debian-live
+++ b/lists/debian-live
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/debian-live - package list for live-helper(7)
+# /usr/share/live/build/lists/debian-live - package list for live-helper(7)
## LH: Debian Live
#include <standard>
diff --git a/lists/debian-science b/lists/debian-science
index 3d7a2b2..369708b 100644
--- a/lists/debian-science
+++ b/lists/debian-science
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/debian-science - package list for live-helper(7)
+# /usr/share/live/build/lists/debian-science - package list for live-helper(7)
## LH: Debian Science
#include <standard>
diff --git a/lists/gnome b/lists/gnome
index c703321..834f0b0 100644
--- a/lists/gnome
+++ b/lists/gnome
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/gnome - package list for live-helper(7)
+# /usr/share/live/build/lists/gnome - package list for live-helper(7)
## LH: GNOME Desktop
#include <gnome-core>
diff --git a/lists/gnome-core b/lists/gnome-core
index 34c74a2..bb97e30 100644
--- a/lists/gnome-core
+++ b/lists/gnome-core
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/gnome-core - package list for live-helper(7)
+# /usr/share/live/build/lists/gnome-core - package list for live-helper(7)
## LH: GNOME Core
#include <standard-x11>
diff --git a/lists/gnome-full b/lists/gnome-full
index 630299c..bc07f1d 100644
--- a/lists/gnome-full
+++ b/lists/gnome-full
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/gnome-full - package list for live-helper(7)
+# /usr/share/live/build/lists/gnome-full - package list for live-helper(7)
## LH: GNOME full
#include <gnome>
diff --git a/lists/gnome-junior b/lists/gnome-junior
index 926f0e9..5a23cfc 100644
--- a/lists/gnome-junior
+++ b/lists/gnome-junior
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/gnome-junior - package list for live-helper(7)
+# /usr/share/live/build/lists/gnome-junior - package list for live-helper(7)
## LH: Debian Junior (Gnome)
#include <gnome>
diff --git a/lists/gnustep b/lists/gnustep
index f0dcef7..7e5934f 100644
--- a/lists/gnustep
+++ b/lists/gnustep
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/gnustep - package list for live-helper(7)
+# /usr/share/live/build/lists/gnustep - package list for live-helper(7)
## LH: GNUstep desktop
#include <standard-x11>
diff --git a/lists/kde b/lists/kde
index fcc0e16..fb5d35b 100644
--- a/lists/kde
+++ b/lists/kde
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/kde - package list for live-helper(7)
+# /usr/share/live/build/lists/kde - package list for live-helper(7)
## LH: KDE
#include <kde-core>
diff --git a/lists/kde-core b/lists/kde-core
index 8483c41..6c7b373 100644
--- a/lists/kde-core
+++ b/lists/kde-core
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/kde-core - package list for live-helper(7)
+# /usr/share/live/build/lists/kde-core - package list for live-helper(7)
## LH: KDE Core
#include <standard-x11>
diff --git a/lists/kde-extra b/lists/kde-extra
index c23ff2f..fe74cf4 100644
--- a/lists/kde-extra
+++ b/lists/kde-extra
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/kde-extra - package list for live-helper(7)
+# /usr/share/live/build/lists/kde-extra - package list for live-helper(7)
## LH: KDE Extra
#include <kde-full>
diff --git a/lists/kde-full b/lists/kde-full
index 4fdccb2..e416ce7 100644
--- a/lists/kde-full
+++ b/lists/kde-full
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/kde-full - package list for live-helper(7)
+# /usr/share/live/build/lists/kde-full - package list for live-helper(7)
## LH: KDE Full
#include <kde>
diff --git a/lists/kde-junior b/lists/kde-junior
index 1366722..3a0edd7 100644
--- a/lists/kde-junior
+++ b/lists/kde-junior
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/kde-junior - package list for live-helper(7)
+# /usr/share/live/build/lists/kde-junior - package list for live-helper(7)
## LH: KDE Junior
#include <kde>
diff --git a/lists/lxde b/lists/lxde
index 457279d..1bd69d4 100644
--- a/lists/lxde
+++ b/lists/lxde
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/lxde - package list for live-helper(7)
+# /usr/share/live/build/lists/lxde - package list for live-helper(7)
## LH: LXDE
#include <standard-x11>
diff --git a/lists/minimal b/lists/minimal
index 51c9c78..991332b 100644
--- a/lists/minimal
+++ b/lists/minimal
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/minimal - package list for live-helper(7)
+# /usr/share/live/build/lists/minimal - package list for live-helper(7)
## LH: Minimal
diff --git a/lists/rescue b/lists/rescue
index 001a40b..80b838e 100644
--- a/lists/rescue
+++ b/lists/rescue
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/rescue - package list for live-helper(7)
+# /usr/share/live/build/lists/rescue - package list for live-helper(7)
## LH: Rescue
#include <standard>
diff --git a/lists/standard b/lists/standard
index 1372727..60de1cd 100644
--- a/lists/standard
+++ b/lists/standard
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/standard - package list for live-helper(7)
+# /usr/share/live/build/lists/standard - package list for live-helper(7)
## LH: Standard
#include <minimal>
diff --git a/lists/standard-x11 b/lists/standard-x11
index 868c1a4..f016747 100644
--- a/lists/standard-x11
+++ b/lists/standard-x11
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/standard-x11 - package list for live-helper(7)
+# /usr/share/live/build/lists/standard-x11 - package list for live-helper(7)
## LH: Standard X11
#include <standard>
diff --git a/lists/studio b/lists/studio
index 24ede73..2fdebd4 100644
--- a/lists/studio
+++ b/lists/studio
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/studio - package list for live-helper(7)
+# /usr/share/live/build/lists/studio - package list for live-helper(7)
## LH: Music Studio base
# packagelist inspired from the A/DeMuDi one.
diff --git a/lists/studio-gnome b/lists/studio-gnome
index c9c12cb..c722ae6 100644
--- a/lists/studio-gnome
+++ b/lists/studio-gnome
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/studio-gnome - package list for live-helper(7)
+# /usr/share/live/build/lists/studio-gnome - package list for live-helper(7)
## LH: Music Studio (Gnome)
#include <gnome>
diff --git a/lists/studio-kde b/lists/studio-kde
index 0971a41..5d65148 100644
--- a/lists/studio-kde
+++ b/lists/studio-kde
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/studio-kde - package list for live-helper(7)
+# /usr/share/live/build/lists/studio-kde - package list for live-helper(7)
## LH: Music Studio (KDE)
#include <kde>
diff --git a/lists/studio-xfce b/lists/studio-xfce
index 0f5d492..6351301 100644
--- a/lists/studio-xfce
+++ b/lists/studio-xfce
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/studio-xfce - package list for live-helper(7)
+# /usr/share/live/build/lists/studio-xfce - package list for live-helper(7)
## LH: Music Studio (Xfce)
#include <xfce>
diff --git a/lists/xfce b/lists/xfce
index 4d7db25..b8df706 100644
--- a/lists/xfce
+++ b/lists/xfce
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/xfce - package list for live-helper(7)
+# /usr/share/live/build/lists/xfce - package list for live-helper(7)
## LH: Xfce
#include <standard-x11>
diff --git a/lists/xfce-junior b/lists/xfce-junior
index 170c329..0bfa094 100644
--- a/lists/xfce-junior
+++ b/lists/xfce-junior
@@ -1,4 +1,4 @@
-# /usr/share/live-helper/lists/xfce-junior - package list for live-helper(7)
+# /usr/share/live/build/lists/xfce-junior - package list for live-helper(7)
## LH: Xfce Debian Junior
#include <xfce>
diff --git a/manpages/de/lh.de.1 b/manpages/de/lh.de.1
index 3931cd5..0971b9d 100644
--- a/manpages/de/lh.de.1
+++ b/manpages/de/lh.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh\fP \- Wrapper für live\-helper Programme
diff --git a/manpages/de/lh_binary.de.1 b/manpages/de/lh_binary.de.1
index d6fd768..9946dcd 100644
--- a/manpages/de/lh_binary.de.1
+++ b/manpages/de/lh_binary.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_checksums.de.1 b/manpages/de/lh_binary_checksums.de.1
index 41e6b48..d28f494 100644
--- a/manpages/de/lh_binary_checksums.de.1
+++ b/manpages/de/lh_binary_checksums.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_checksums\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_chroot.de.1 b/manpages/de/lh_binary_chroot.de.1
index b71c313..c2b2e03 100644
--- a/manpages/de/lh_binary_chroot.de.1
+++ b/manpages/de/lh_binary_chroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_chroot\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_debian-installer.de.1 b/manpages/de/lh_binary_debian-installer.de.1
index 6a5669b..dcd5377 100644
--- a/manpages/de/lh_binary_debian-installer.de.1
+++ b/manpages/de/lh_binary_debian-installer.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_debian\-installer\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_disk.de.1 b/manpages/de/lh_binary_disk.de.1
index 22da1d9..dd03f37 100644
--- a/manpages/de/lh_binary_disk.de.1
+++ b/manpages/de/lh_binary_disk.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_disk\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_encryption.de.1 b/manpages/de/lh_binary_encryption.de.1
index d85ab3c..4fb3a9d 100644
--- a/manpages/de/lh_binary_encryption.de.1
+++ b/manpages/de/lh_binary_encryption.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_encryption\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_grub.de.1 b/manpages/de/lh_binary_grub.de.1
index 323bc56..226d1cd 100644
--- a/manpages/de/lh_binary_grub.de.1
+++ b/manpages/de/lh_binary_grub.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_grub\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_grub2.de.1 b/manpages/de/lh_binary_grub2.de.1
index 2fd8cec..6abf222 100644
--- a/manpages/de/lh_binary_grub2.de.1
+++ b/manpages/de/lh_binary_grub2.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_grub2\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_includes.de.1 b/manpages/de/lh_binary_includes.de.1
index 44f7042..b2727c6 100644
--- a/manpages/de/lh_binary_includes.de.1
+++ b/manpages/de/lh_binary_includes.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_includes\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_iso.de.1 b/manpages/de/lh_binary_iso.de.1
index 8775581..d67167a 100644
--- a/manpages/de/lh_binary_iso.de.1
+++ b/manpages/de/lh_binary_iso.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_iso\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_linux-image.de.1 b/manpages/de/lh_binary_linux-image.de.1
index 92895ee..bbe81be 100644
--- a/manpages/de/lh_binary_linux-image.de.1
+++ b/manpages/de/lh_binary_linux-image.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_linux\-image\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_local-hooks.de.1 b/manpages/de/lh_binary_local-hooks.de.1
index 1a813ba..1ddda98 100644
--- a/manpages/de/lh_binary_local-hooks.de.1
+++ b/manpages/de/lh_binary_local-hooks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_local\-hooks\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_local-includes.de.1 b/manpages/de/lh_binary_local-includes.de.1
index d4898b9..a175795 100644
--- a/manpages/de/lh_binary_local-includes.de.1
+++ b/manpages/de/lh_binary_local-includes.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_local\-includes\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_local-packageslists.de.1 b/manpages/de/lh_binary_local-packageslists.de.1
index 69f65a3..98f3d47 100644
--- a/manpages/de/lh_binary_local-packageslists.de.1
+++ b/manpages/de/lh_binary_local-packageslists.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_local\-packageslists\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_manifest.de.1 b/manpages/de/lh_binary_manifest.de.1
index d3e81e9..9815aa3 100644
--- a/manpages/de/lh_binary_manifest.de.1
+++ b/manpages/de/lh_binary_manifest.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_manifest\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_memtest.de.1 b/manpages/de/lh_binary_memtest.de.1
index 2f27ac0..3afeeb9 100644
--- a/manpages/de/lh_binary_memtest.de.1
+++ b/manpages/de/lh_binary_memtest.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_memtest\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_net.de.1 b/manpages/de/lh_binary_net.de.1
index dbfc83d..0d5e8ec 100644
--- a/manpages/de/lh_binary_net.de.1
+++ b/manpages/de/lh_binary_net.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_net\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_rootfs.de.1 b/manpages/de/lh_binary_rootfs.de.1
index ba03107..1e768ef 100644
--- a/manpages/de/lh_binary_rootfs.de.1
+++ b/manpages/de/lh_binary_rootfs.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_rootfs\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_silo.de.1 b/manpages/de/lh_binary_silo.de.1
index 702a86c..bbfd6ee 100644
--- a/manpages/de/lh_binary_silo.de.1
+++ b/manpages/de/lh_binary_silo.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_silo\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_syslinux.de.1 b/manpages/de/lh_binary_syslinux.de.1
index a32b5c0..8db750e 100644
--- a/manpages/de/lh_binary_syslinux.de.1
+++ b/manpages/de/lh_binary_syslinux.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_syslinux\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_tar.de.1 b/manpages/de/lh_binary_tar.de.1
index dde8b31..a80fe7b 100644
--- a/manpages/de/lh_binary_tar.de.1
+++ b/manpages/de/lh_binary_tar.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_tar\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_usb.de.1 b/manpages/de/lh_binary_usb.de.1
index 7a73fab..38d62a2 100644
--- a/manpages/de/lh_binary_usb.de.1
+++ b/manpages/de/lh_binary_usb.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_usb\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_virtual-hdd.de.1 b/manpages/de/lh_binary_virtual-hdd.de.1
index bb7e0c3..8b0045c 100644
--- a/manpages/de/lh_binary_virtual-hdd.de.1
+++ b/manpages/de/lh_binary_virtual-hdd.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_virtual\-hdd\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_win32-loader.de.1 b/manpages/de/lh_binary_win32-loader.de.1
index 77e09be..8c273b4 100644
--- a/manpages/de/lh_binary_win32-loader.de.1
+++ b/manpages/de/lh_binary_win32-loader.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_win32\-loader\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_binary_yaboot.de.1 b/manpages/de/lh_binary_yaboot.de.1
index fc9a7db..f445782 100644
--- a/manpages/de/lh_binary_yaboot.de.1
+++ b/manpages/de/lh_binary_yaboot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh binary_yaboot\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lh_bootstrap.de.1 b/manpages/de/lh_bootstrap.de.1
index 5aa53e9..612313a 100644
--- a/manpages/de/lh_bootstrap.de.1
+++ b/manpages/de/lh_bootstrap.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh bootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_cache.de.1 b/manpages/de/lh_bootstrap_cache.de.1
index 2234a1a..978594f 100644
--- a/manpages/de/lh_bootstrap_cache.de.1
+++ b/manpages/de/lh_bootstrap_cache.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh bootstrap_cache\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_cdebootstrap.de.1 b/manpages/de/lh_bootstrap_cdebootstrap.de.1
index 79d2e5c..503c277 100644
--- a/manpages/de/lh_bootstrap_cdebootstrap.de.1
+++ b/manpages/de/lh_bootstrap_cdebootstrap.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh bootstrap_cdebootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_copy.de.1 b/manpages/de/lh_bootstrap_copy.de.1
index e5ecd5b..3a96809 100644
--- a/manpages/de/lh_bootstrap_copy.de.1
+++ b/manpages/de/lh_bootstrap_copy.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh bootstrap_copy\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_bootstrap_debootstrap.de.1 b/manpages/de/lh_bootstrap_debootstrap.de.1
index 33ab370..4226627 100644
--- a/manpages/de/lh_bootstrap_debootstrap.de.1
+++ b/manpages/de/lh_bootstrap_debootstrap.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh bootstrap_debootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lh_build.de.1 b/manpages/de/lh_build.de.1
index d3687b8..36c71aa 100644
--- a/manpages/de/lh_build.de.1
+++ b/manpages/de/lh_build.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh build\fP \- Erstellt die "bootstrap", "chroot", "binary" und "source"
diff --git a/manpages/de/lh_chroot.de.1 b/manpages/de/lh_chroot.de.1
index b23e6a0..aec4204 100644
--- a/manpages/de/lh_chroot.de.1
+++ b/manpages/de/lh_chroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_apt.de.1 b/manpages/de/lh_chroot_apt.de.1
index dc25d5f..27a4bce 100644
--- a/manpages/de/lh_chroot_apt.de.1
+++ b/manpages/de/lh_chroot_apt.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_apt\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_cache.de.1 b/manpages/de/lh_chroot_cache.de.1
index 0fc5517..fc5e91f 100644
--- a/manpages/de/lh_chroot_cache.de.1
+++ b/manpages/de/lh_chroot_cache.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_cache\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_debianchroot.de.1 b/manpages/de/lh_chroot_debianchroot.de.1
index fba1c77..9504f1b 100644
--- a/manpages/de/lh_chroot_debianchroot.de.1
+++ b/manpages/de/lh_chroot_debianchroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_debianchroot\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_devpts.de.1 b/manpages/de/lh_chroot_devpts.de.1
index c4299e7..b9523eb 100644
--- a/manpages/de/lh_chroot_devpts.de.1
+++ b/manpages/de/lh_chroot_devpts.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_devpts\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_dpkg.de.1 b/manpages/de/lh_chroot_dpkg.de.1
index 7f098cf..b699018 100644
--- a/manpages/de/lh_chroot_dpkg.de.1
+++ b/manpages/de/lh_chroot_dpkg.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_dpkg\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hacks.de.1 b/manpages/de/lh_chroot_hacks.de.1
index 33cc1cc..c8fd979 100644
--- a/manpages/de/lh_chroot_hacks.de.1
+++ b/manpages/de/lh_chroot_hacks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_hacks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hooks.de.1 b/manpages/de/lh_chroot_hooks.de.1
index 5a28603..df27135 100644
--- a/manpages/de/lh_chroot_hooks.de.1
+++ b/manpages/de/lh_chroot_hooks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_hooks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hostname.de.1 b/manpages/de/lh_chroot_hostname.de.1
index bf34897..b7ed5ab 100644
--- a/manpages/de/lh_chroot_hostname.de.1
+++ b/manpages/de/lh_chroot_hostname.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_hostname\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_hosts.de.1 b/manpages/de/lh_chroot_hosts.de.1
index 1d6c881..9ecb29d 100644
--- a/manpages/de/lh_chroot_hosts.de.1
+++ b/manpages/de/lh_chroot_hosts.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_hosts\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_install-packages.de.1 b/manpages/de/lh_chroot_install-packages.de.1
index 5e3d492..a44fa83 100644
--- a/manpages/de/lh_chroot_install-packages.de.1
+++ b/manpages/de/lh_chroot_install-packages.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_install\-packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_interactive.de.1 b/manpages/de/lh_chroot_interactive.de.1
index 0ad2627..8c09568 100644
--- a/manpages/de/lh_chroot_interactive.de.1
+++ b/manpages/de/lh_chroot_interactive.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_interactive\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_linux-image.de.1 b/manpages/de/lh_chroot_linux-image.de.1
index 2e9b0f4..c981688 100644
--- a/manpages/de/lh_chroot_linux-image.de.1
+++ b/manpages/de/lh_chroot_linux-image.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_linux\-image\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-hooks.de.1 b/manpages/de/lh_chroot_local-hooks.de.1
index e50f222..55a9b86 100644
--- a/manpages/de/lh_chroot_local-hooks.de.1
+++ b/manpages/de/lh_chroot_local-hooks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_local\-hooks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-includes.de.1 b/manpages/de/lh_chroot_local-includes.de.1
index a8b9d2c..f5b50ca 100644
--- a/manpages/de/lh_chroot_local-includes.de.1
+++ b/manpages/de/lh_chroot_local-includes.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_local\-includes\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-packages.de.1 b/manpages/de/lh_chroot_local-packages.de.1
index fd4fc36..3483bab 100644
--- a/manpages/de/lh_chroot_local-packages.de.1
+++ b/manpages/de/lh_chroot_local-packages.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_local\-packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-packageslists.de.1 b/manpages/de/lh_chroot_local-packageslists.de.1
index f51075f..3d3077a 100644
--- a/manpages/de/lh_chroot_local-packageslists.de.1
+++ b/manpages/de/lh_chroot_local-packageslists.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_local\-packageslists\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-patches.de.1 b/manpages/de/lh_chroot_local-patches.de.1
index 6ae0b28..97fc5f2 100644
--- a/manpages/de/lh_chroot_local-patches.de.1
+++ b/manpages/de/lh_chroot_local-patches.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_local\-patches\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_local-preseed.de.1 b/manpages/de/lh_chroot_local-preseed.de.1
index 2bfa8fa..99e99d0 100644
--- a/manpages/de/lh_chroot_local-preseed.de.1
+++ b/manpages/de/lh_chroot_local-preseed.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_local\-preseed\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_localization.de.1 b/manpages/de/lh_chroot_localization.de.1
index 392ad6f..6f2fd6b 100644
--- a/manpages/de/lh_chroot_localization.de.1
+++ b/manpages/de/lh_chroot_localization.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_localization\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_packages.de.1 b/manpages/de/lh_chroot_packages.de.1
index 970142b..c76682b 100644
--- a/manpages/de/lh_chroot_packages.de.1
+++ b/manpages/de/lh_chroot_packages.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_packageslists.de.1 b/manpages/de/lh_chroot_packageslists.de.1
index adb93bb..7cc8838 100644
--- a/manpages/de/lh_chroot_packageslists.de.1
+++ b/manpages/de/lh_chroot_packageslists.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_packageslists\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_preseed.de.1 b/manpages/de/lh_chroot_preseed.de.1
index a7309ec..36e7d22 100644
--- a/manpages/de/lh_chroot_preseed.de.1
+++ b/manpages/de/lh_chroot_preseed.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_preseed\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_proc.de.1 b/manpages/de/lh_chroot_proc.de.1
index dedaf3f..63a470c 100644
--- a/manpages/de/lh_chroot_proc.de.1
+++ b/manpages/de/lh_chroot_proc.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_proc\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_resolv.de.1 b/manpages/de/lh_chroot_resolv.de.1
index f2ad208..768e901 100644
--- a/manpages/de/lh_chroot_resolv.de.1
+++ b/manpages/de/lh_chroot_resolv.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_resolv\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_selinuxfs.de.1 b/manpages/de/lh_chroot_selinuxfs.de.1
index 10b41f8..0ce80d8 100644
--- a/manpages/de/lh_chroot_selinuxfs.de.1
+++ b/manpages/de/lh_chroot_selinuxfs.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_selinuxfs\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sources.de.1 b/manpages/de/lh_chroot_sources.de.1
index 0d72fec..d2fa6f9 100644
--- a/manpages/de/lh_chroot_sources.de.1
+++ b/manpages/de/lh_chroot_sources.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_sources\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_symlinks.de.1 b/manpages/de/lh_chroot_symlinks.de.1
index c817e8a..8060180 100644
--- a/manpages/de/lh_chroot_symlinks.de.1
+++ b/manpages/de/lh_chroot_symlinks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_symlinks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sysfs.de.1 b/manpages/de/lh_chroot_sysfs.de.1
index ccb2f3b..fbb1b5d 100644
--- a/manpages/de/lh_chroot_sysfs.de.1
+++ b/manpages/de/lh_chroot_sysfs.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_sysfs\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sysv-rc.de.1 b/manpages/de/lh_chroot_sysv-rc.de.1
index 261bc51..b53993d 100644
--- a/manpages/de/lh_chroot_sysv-rc.de.1
+++ b/manpages/de/lh_chroot_sysv-rc.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_sysv\-rc\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_sysvinit.de.1 b/manpages/de/lh_chroot_sysvinit.de.1
index a06f1bc..3094e18 100644
--- a/manpages/de/lh_chroot_sysvinit.de.1
+++ b/manpages/de/lh_chroot_sysvinit.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_sysvinit\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_tasks.de.1 b/manpages/de/lh_chroot_tasks.de.1
index 397508c..b39cbed 100644
--- a/manpages/de/lh_chroot_tasks.de.1
+++ b/manpages/de/lh_chroot_tasks.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_tasks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_chroot_upstart.de.1 b/manpages/de/lh_chroot_upstart.de.1
index c78c8bf..b69f4a5 100644
--- a/manpages/de/lh_chroot_upstart.de.1
+++ b/manpages/de/lh_chroot_upstart.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh chroot_upstart\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lh_clean.de.1 b/manpages/de/lh_clean.de.1
index 7d04f14..ca8db62 100644
--- a/manpages/de/lh_clean.de.1
+++ b/manpages/de/lh_clean.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh clean\fP \- Räumt das Arbeitsverzeichnis auf
diff --git a/manpages/de/lh_config.de.1 b/manpages/de/lh_config.de.1
index cb13edc..4775343 100644
--- a/manpages/de/lh_config.de.1
+++ b/manpages/de/lh_config.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh config\fP \- Erstellen des config Verzeichnisses
@@ -438,9 +438,9 @@ 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.
+defines which hooks available in /usr/share/live/build/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
@@ -451,7 +451,7 @@ 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/.
+systems. By default, this is set to /usr/share/live/build/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
@@ -595,7 +595,7 @@ 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
+defines which lists available in /usr/share/live/build/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
@@ -607,7 +607,7 @@ quick and convenient place to add a few packages when building an image
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.
+/usr/share/live/build/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
@@ -663,7 +663,7 @@ 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/.
+bootloaders. By default, this is set to /usr/share/live/build/templates/.
.IP "\fB\-\-virtual\-root\-filesystem\fP ext3" 4
defines what filesystem to format the root filesystem when building
virtual\-hdd images.
diff --git a/manpages/de/lh_local.de.1 b/manpages/de/lh_local.de.1
index c3dd1fa..d756b87 100644
--- a/manpages/de/lh_local.de.1
+++ b/manpages/de/lh_local.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh local\fP \- Wrapper für lokale live\-helper Programme
diff --git a/manpages/de/lh_source.de.1 b/manpages/de/lh_source.de.1
index d39bc56..26ffaac 100644
--- a/manpages/de/lh_source.de.1
+++ b/manpages/de/lh_source.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_checksums.de.1 b/manpages/de/lh_source_checksums.de.1
index 99eefb4..d4424b8 100644
--- a/manpages/de/lh_source_checksums.de.1
+++ b/manpages/de/lh_source_checksums.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_checksums\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_debian-live.de.1 b/manpages/de/lh_source_debian-live.de.1
index 7b3f493..bfabc5f 100644
--- a/manpages/de/lh_source_debian-live.de.1
+++ b/manpages/de/lh_source_debian-live.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_debian\-live\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_debian.de.1 b/manpages/de/lh_source_debian.de.1
index e632677..7209756 100644
--- a/manpages/de/lh_source_debian.de.1
+++ b/manpages/de/lh_source_debian.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_debian\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_disk.de.1 b/manpages/de/lh_source_disk.de.1
index 1866d3c..6fa2cb2 100644
--- a/manpages/de/lh_source_disk.de.1
+++ b/manpages/de/lh_source_disk.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_disk\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_iso.de.1 b/manpages/de/lh_source_iso.de.1
index 6afabae..4e129db 100644
--- a/manpages/de/lh_source_iso.de.1
+++ b/manpages/de/lh_source_iso.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_iso\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_net.de.1 b/manpages/de/lh_source_net.de.1
index f3e1222..15a8a08 100644
--- a/manpages/de/lh_source_net.de.1
+++ b/manpages/de/lh_source_net.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_net\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_tar.de.1 b/manpages/de/lh_source_tar.de.1
index f19d21b..9ed091b 100644
--- a/manpages/de/lh_source_tar.de.1
+++ b/manpages/de/lh_source_tar.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_tar\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_usb.de.1 b/manpages/de/lh_source_usb.de.1
index 33a6a27..d57e871 100644
--- a/manpages/de/lh_source_usb.de.1
+++ b/manpages/de/lh_source_usb.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_usb\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_source_virtual-hdd.de.1 b/manpages/de/lh_source_virtual-hdd.de.1
index 5762eb3..5673510 100644
--- a/manpages/de/lh_source_virtual-hdd.de.1
+++ b/manpages/de/lh_source_virtual-hdd.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh source_virtual\-hdd\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lh_testroot.de.1 b/manpages/de/lh_testroot.de.1
index b0314c7..3870668 100644
--- a/manpages/de/lh_testroot.de.1
+++ b/manpages/de/lh_testroot.de.1
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 1 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 1 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlh testroot\fP \- stellt sicher, dass ein System als root erstellt wird
diff --git a/manpages/de/live-helper.de.7 b/manpages/de/live-helper.de.7
index d80df81..0d16817 100644
--- a/manpages/de/live-helper.de.7
+++ b/manpages/de/live-helper.de.7
@@ -3,7 +3,7 @@
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
-.TH LIVE\-HELPER 7 10.08.2010 2.0~a22 "Debian Live Projekt"
+.TH LIVE\-HELPER 7 14.08.2010 2.0~a23 "Debian Live Projekt"
.SH NAME
\fBlive\-helper\fP \- die Debian Live Tool Suite
diff --git a/manpages/en/lh.1 b/manpages/en/lh.1
index 72e695d..75aed12 100644
--- a/manpages/en/lh.1
+++ b/manpages/en/lh.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh\fR \- wrapper for live\-helper programs
diff --git a/manpages/en/lh_binary.1 b/manpages/en/lh_binary.1
index 7e35951..e02ffdf 100644
--- a/manpages/en/lh_binary.1
+++ b/manpages/en/lh_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_checksums.1 b/manpages/en/lh_binary_checksums.1
index 50c1237..629391f 100644
--- a/manpages/en/lh_binary_checksums.1
+++ b/manpages/en/lh_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_chroot.1 b/manpages/en/lh_binary_chroot.1
index 2b6f5dc..616bf4d 100644
--- a/manpages/en/lh_binary_chroot.1
+++ b/manpages/en/lh_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_debian-installer.1 b/manpages/en/lh_binary_debian-installer.1
index 152bfa4..b0863d3 100644
--- a/manpages/en/lh_binary_debian-installer.1
+++ b/manpages/en/lh_binary_debian-installer.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_disk.1 b/manpages/en/lh_binary_disk.1
index d1df7c9..4fe4aca 100644
--- a/manpages/en/lh_binary_disk.1
+++ b/manpages/en/lh_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_encryption.1 b/manpages/en/lh_binary_encryption.1
index d312255..c824eef 100644
--- a/manpages/en/lh_binary_encryption.1
+++ b/manpages/en/lh_binary_encryption.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_encryption\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_grub.1 b/manpages/en/lh_binary_grub.1
index 746f725..44a1830 100644
--- a/manpages/en/lh_binary_grub.1
+++ b/manpages/en/lh_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_grub2.1 b/manpages/en/lh_binary_grub2.1
index 65560e3..9fa5c44 100644
--- a/manpages/en/lh_binary_grub2.1
+++ b/manpages/en/lh_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_includes.1 b/manpages/en/lh_binary_includes.1
index b1f6fae..f045a3f 100644
--- a/manpages/en/lh_binary_includes.1
+++ b/manpages/en/lh_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_iso.1 b/manpages/en/lh_binary_iso.1
index 5720a99..48b9265 100644
--- a/manpages/en/lh_binary_iso.1
+++ b/manpages/en/lh_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_linux-image.1 b/manpages/en/lh_binary_linux-image.1
index 03be59e..4ce4009 100644
--- a/manpages/en/lh_binary_linux-image.1
+++ b/manpages/en/lh_binary_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_local-hooks.1 b/manpages/en/lh_binary_local-hooks.1
index e506607..b834184 100644
--- a/manpages/en/lh_binary_local-hooks.1
+++ b/manpages/en/lh_binary_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_local-includes.1 b/manpages/en/lh_binary_local-includes.1
index 87ae60f..707c758 100644
--- a/manpages/en/lh_binary_local-includes.1
+++ b/manpages/en/lh_binary_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_local-packageslists.1 b/manpages/en/lh_binary_local-packageslists.1
index f58ea7b..fa1f58e 100644
--- a/manpages/en/lh_binary_local-packageslists.1
+++ b/manpages/en/lh_binary_local-packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_local-packageslists\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_manifest.1 b/manpages/en/lh_binary_manifest.1
index 8e46132..c0791d2 100644
--- a/manpages/en/lh_binary_manifest.1
+++ b/manpages/en/lh_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_memtest.1 b/manpages/en/lh_binary_memtest.1
index e5b615a..0d2c8e7 100644
--- a/manpages/en/lh_binary_memtest.1
+++ b/manpages/en/lh_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_net.1 b/manpages/en/lh_binary_net.1
index 4d1ca8b..7d9c04f 100644
--- a/manpages/en/lh_binary_net.1
+++ b/manpages/en/lh_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_rootfs.1 b/manpages/en/lh_binary_rootfs.1
index c2e2784..9b0552a 100644
--- a/manpages/en/lh_binary_rootfs.1
+++ b/manpages/en/lh_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_silo.1 b/manpages/en/lh_binary_silo.1
index 9da66c6..80c9200 100644
--- a/manpages/en/lh_binary_silo.1
+++ b/manpages/en/lh_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_syslinux.1 b/manpages/en/lh_binary_syslinux.1
index 7df88fe..11ceb8c 100644
--- a/manpages/en/lh_binary_syslinux.1
+++ b/manpages/en/lh_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_tar.1 b/manpages/en/lh_binary_tar.1
index 3c44cd5..328f850 100644
--- a/manpages/en/lh_binary_tar.1
+++ b/manpages/en/lh_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_usb.1 b/manpages/en/lh_binary_usb.1
index 69d7570..4c48291 100644
--- a/manpages/en/lh_binary_usb.1
+++ b/manpages/en/lh_binary_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_usb\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_virtual-hdd.1 b/manpages/en/lh_binary_virtual-hdd.1
index 1fe92cf..187fcc8 100644
--- a/manpages/en/lh_binary_virtual-hdd.1
+++ b/manpages/en/lh_binary_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_win32-loader.1 b/manpages/en/lh_binary_win32-loader.1
index 408373f..e583883 100644
--- a/manpages/en/lh_binary_win32-loader.1
+++ b/manpages/en/lh_binary_win32-loader.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lh_binary_yaboot.1 b/manpages/en/lh_binary_yaboot.1
index 8428ffe..27f929d 100644
--- a/manpages/en/lh_binary_yaboot.1
+++ b/manpages/en/lh_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lh_bootstrap.1 b/manpages/en/lh_bootstrap.1
index c50f181..2fda8d5 100644
--- a/manpages/en/lh_bootstrap.1
+++ b/manpages/en/lh_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_cache.1 b/manpages/en/lh_bootstrap_cache.1
index e6fa1e4..8c20047 100644
--- a/manpages/en/lh_bootstrap_cache.1
+++ b/manpages/en/lh_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_cdebootstrap.1 b/manpages/en/lh_bootstrap_cdebootstrap.1
index 64befea..3ad5419 100644
--- a/manpages/en/lh_bootstrap_cdebootstrap.1
+++ b/manpages/en/lh_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_copy.1 b/manpages/en/lh_bootstrap_copy.1
index 2dbf09b..c2720de 100644
--- a/manpages/en/lh_bootstrap_copy.1
+++ b/manpages/en/lh_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_bootstrap_debootstrap.1 b/manpages/en/lh_bootstrap_debootstrap.1
index 536db1e..8d0f2a3 100644
--- a/manpages/en/lh_bootstrap_debootstrap.1
+++ b/manpages/en/lh_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lh_build.1 b/manpages/en/lh_build.1
index d7d548f..6023568 100644
--- a/manpages/en/lh_build.1
+++ b/manpages/en/lh_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lh_chroot.1 b/manpages/en/lh_chroot.1
index a6db084..4a6c156 100644
--- a/manpages/en/lh_chroot.1
+++ b/manpages/en/lh_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_apt.1 b/manpages/en/lh_chroot_apt.1
index 964f9cc..917955b 100644
--- a/manpages/en/lh_chroot_apt.1
+++ b/manpages/en/lh_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_cache.1 b/manpages/en/lh_chroot_cache.1
index 6517a63..f20111f 100644
--- a/manpages/en/lh_chroot_cache.1
+++ b/manpages/en/lh_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_debianchroot.1 b/manpages/en/lh_chroot_debianchroot.1
index 4a947cf..a4d715f 100644
--- a/manpages/en/lh_chroot_debianchroot.1
+++ b/manpages/en/lh_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_devpts.1 b/manpages/en/lh_chroot_devpts.1
index fa84991..9776527 100644
--- a/manpages/en/lh_chroot_devpts.1
+++ b/manpages/en/lh_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_dpkg.1 b/manpages/en/lh_chroot_dpkg.1
index 129d52a..be36cd9 100644
--- a/manpages/en/lh_chroot_dpkg.1
+++ b/manpages/en/lh_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hacks.1 b/manpages/en/lh_chroot_hacks.1
index dbdade9..34e7775 100644
--- a/manpages/en/lh_chroot_hacks.1
+++ b/manpages/en/lh_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hooks.1 b/manpages/en/lh_chroot_hooks.1
index 0911a93..cbc3d22 100644
--- a/manpages/en/lh_chroot_hooks.1
+++ b/manpages/en/lh_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hostname.1 b/manpages/en/lh_chroot_hostname.1
index c8a1fe0..f8f9177 100644
--- a/manpages/en/lh_chroot_hostname.1
+++ b/manpages/en/lh_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_hosts.1 b/manpages/en/lh_chroot_hosts.1
index 06f088d..8598c97 100644
--- a/manpages/en/lh_chroot_hosts.1
+++ b/manpages/en/lh_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_install-packages.1 b/manpages/en/lh_chroot_install-packages.1
index 4c9aa3c..3b0ab91 100644
--- a/manpages/en/lh_chroot_install-packages.1
+++ b/manpages/en/lh_chroot_install-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_interactive.1 b/manpages/en/lh_chroot_interactive.1
index 73b2550..eca8059 100644
--- a/manpages/en/lh_chroot_interactive.1
+++ b/manpages/en/lh_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_linux-image.1 b/manpages/en/lh_chroot_linux-image.1
index 434c330..0bb70a6 100644
--- a/manpages/en/lh_chroot_linux-image.1
+++ b/manpages/en/lh_chroot_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-hooks.1 b/manpages/en/lh_chroot_local-hooks.1
index b0c7b0a..6aad3c1 100644
--- a/manpages/en/lh_chroot_local-hooks.1
+++ b/manpages/en/lh_chroot_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_local\-hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-includes.1 b/manpages/en/lh_chroot_local-includes.1
index c2eb5e5..6d69968 100644
--- a/manpages/en/lh_chroot_local-includes.1
+++ b/manpages/en/lh_chroot_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-packages.1 b/manpages/en/lh_chroot_local-packages.1
index 7d15795..056ba94 100644
--- a/manpages/en/lh_chroot_local-packages.1
+++ b/manpages/en/lh_chroot_local-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_local\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-packageslists.1 b/manpages/en/lh_chroot_local-packageslists.1
index 904e21c..573f69a 100644
--- a/manpages/en/lh_chroot_local-packageslists.1
+++ b/manpages/en/lh_chroot_local-packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_local\-packageslists\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-patches.1 b/manpages/en/lh_chroot_local-patches.1
index 8ee9b40..39dc8ed 100644
--- a/manpages/en/lh_chroot_local-patches.1
+++ b/manpages/en/lh_chroot_local-patches.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_local-preseed.1 b/manpages/en/lh_chroot_local-preseed.1
index fd87517..b6f6fb4 100644
--- a/manpages/en/lh_chroot_local-preseed.1
+++ b/manpages/en/lh_chroot_local-preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_localization.1 b/manpages/en/lh_chroot_localization.1
index 0131647..98c0d0c 100644
--- a/manpages/en/lh_chroot_localization.1
+++ b/manpages/en/lh_chroot_localization.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_localization\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_packages.1 b/manpages/en/lh_chroot_packages.1
index 14ebe74..e744d2e 100644
--- a/manpages/en/lh_chroot_packages.1
+++ b/manpages/en/lh_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_packageslists.1 b/manpages/en/lh_chroot_packageslists.1
index 6f22a66..d48322a 100644
--- a/manpages/en/lh_chroot_packageslists.1
+++ b/manpages/en/lh_chroot_packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_packageslists\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_preseed.1 b/manpages/en/lh_chroot_preseed.1
index 90afdeb..0234529 100644
--- a/manpages/en/lh_chroot_preseed.1
+++ b/manpages/en/lh_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_proc.1 b/manpages/en/lh_chroot_proc.1
index 1aa72f2..440c9d0 100644
--- a/manpages/en/lh_chroot_proc.1
+++ b/manpages/en/lh_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_resolv.1 b/manpages/en/lh_chroot_resolv.1
index 7d8e4d9..d2363ca 100644
--- a/manpages/en/lh_chroot_resolv.1
+++ b/manpages/en/lh_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_selinuxfs.1 b/manpages/en/lh_chroot_selinuxfs.1
index bad211a..5b04b12 100644
--- a/manpages/en/lh_chroot_selinuxfs.1
+++ b/manpages/en/lh_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sources.1 b/manpages/en/lh_chroot_sources.1
index 355efbb..995b4b2 100644
--- a/manpages/en/lh_chroot_sources.1
+++ b/manpages/en/lh_chroot_sources.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_sources\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_symlinks.1 b/manpages/en/lh_chroot_symlinks.1
index 1f08e4e..9bcd29c 100644
--- a/manpages/en/lh_chroot_symlinks.1
+++ b/manpages/en/lh_chroot_symlinks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_symlinks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sysfs.1 b/manpages/en/lh_chroot_sysfs.1
index 46d0fd8..5646124 100644
--- a/manpages/en/lh_chroot_sysfs.1
+++ b/manpages/en/lh_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sysv-rc.1 b/manpages/en/lh_chroot_sysv-rc.1
index c806ab7..749120f 100644
--- a/manpages/en/lh_chroot_sysv-rc.1
+++ b/manpages/en/lh_chroot_sysv-rc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_sysvinit.1 b/manpages/en/lh_chroot_sysvinit.1
index 23d0342..f2d455e 100644
--- a/manpages/en/lh_chroot_sysvinit.1
+++ b/manpages/en/lh_chroot_sysvinit.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_sysvinit\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_tasks.1 b/manpages/en/lh_chroot_tasks.1
index d79a795..6c9a6aa 100644
--- a/manpages/en/lh_chroot_tasks.1
+++ b/manpages/en/lh_chroot_tasks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_tasks\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_chroot_upstart.1 b/manpages/en/lh_chroot_upstart.1
index 73d21b7..60c0630 100644
--- a/manpages/en/lh_chroot_upstart.1
+++ b/manpages/en/lh_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lh_clean.1 b/manpages/en/lh_clean.1
index 237772d..1fc99bc 100644
--- a/manpages/en/lh_clean.1
+++ b/manpages/en/lh_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh clean\fR \- Clean build directory
diff --git a/manpages/en/lh_config.1 b/manpages/en/lh_config.1
index 79678cb..d483520 100644
--- a/manpages/en/lh_config.1
+++ b/manpages/en/lh_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh config\fR \- Create config directory
@@ -302,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/build/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
\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/build/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
@@ -375,11 +375,11 @@ sets the IP or hostname that will be configured in the bootloader configuration
.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/build/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/build/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.
.IP "\fB\-\-use-fakeroot\fR true|false" 4
@@ -407,7 +407,7 @@ selects which program is used to install tasks. By default, this is set to tasks
.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/build/templates/.
.IP "\fB\-\-virtual\-root\-filesystem\fR ext3" 4
defines what filesystem to format the root filesystem when building virtual\-hdd images.
.IP "\fB\-\-virtual\-root\-size\fR MB" 4
diff --git a/manpages/en/lh_local.1 b/manpages/en/lh_local.1
index 2f9700e..89ccf25 100644
--- a/manpages/en/lh_local.1
+++ b/manpages/en/lh_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh local\fR \- wrapper for local live\-helper programs
diff --git a/manpages/en/lh_source.1 b/manpages/en/lh_source.1
index d19ceed..70cb668 100644
--- a/manpages/en/lh_source.1
+++ b/manpages/en/lh_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_checksums.1 b/manpages/en/lh_source_checksums.1
index 51b48b0..f08dbff 100644
--- a/manpages/en/lh_source_checksums.1
+++ b/manpages/en/lh_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_debian-live.1 b/manpages/en/lh_source_debian-live.1
index 5eb89e5..8b862fa 100644
--- a/manpages/en/lh_source_debian-live.1
+++ b/manpages/en/lh_source_debian-live.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_debian.1 b/manpages/en/lh_source_debian.1
index b28c39e..4a57d47 100644
--- a/manpages/en/lh_source_debian.1
+++ b/manpages/en/lh_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_disk.1 b/manpages/en/lh_source_disk.1
index 17570f3..5c1a61f 100644
--- a/manpages/en/lh_source_disk.1
+++ b/manpages/en/lh_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_iso.1 b/manpages/en/lh_source_iso.1
index 1daced6..88b3e6b 100644
--- a/manpages/en/lh_source_iso.1
+++ b/manpages/en/lh_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_net.1 b/manpages/en/lh_source_net.1
index 08f6056..83fe711 100644
--- a/manpages/en/lh_source_net.1
+++ b/manpages/en/lh_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_net\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_tar.1 b/manpages/en/lh_source_tar.1
index 69dfead..795a1f6 100644
--- a/manpages/en/lh_source_tar.1
+++ b/manpages/en/lh_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_usb.1 b/manpages/en/lh_source_usb.1
index cf56c9f..467d267 100644
--- a/manpages/en/lh_source_usb.1
+++ b/manpages/en/lh_source_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_usb\fR \- Complete the source stage
diff --git a/manpages/en/lh_source_virtual-hdd.1 b/manpages/en/lh_source_virtual-hdd.1
index 524b2bc..73554d1 100644
--- a/manpages/en/lh_source_virtual-hdd.1
+++ b/manpages/en/lh_source_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lh_testroot.1 b/manpages/en/lh_testroot.1
index 20841ad..1c37a7d 100644
--- a/manpages/en/lh_testroot.1
+++ b/manpages/en/lh_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 1 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 1 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlh testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-helper.7 b/manpages/en/live-helper.7
index db307a5..383db0a 100644
--- a/manpages/en/live-helper.7
+++ b/manpages/en/live-helper.7
@@ -1,4 +1,4 @@
-.TH LIVE\-HELPER 7 2010\-08\-10 2.0~a22 "Debian Live Project"
+.TH LIVE\-HELPER 7 2010\-08\-14 2.0~a23 "Debian Live Project"
.SH NAME
\fBlive\-helper\fR \- the Debian Live tool suite
diff --git a/manpages/old/de/lh_config.1.po b/manpages/old/de/lh_config.1.po
deleted file mode 100644
index 698aed7..0000000
--- a/manpages/old/de/lh_config.1.po
+++ /dev/null
@@ -1,2463 +0,0 @@
-# German translation for live-helper package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the
-# live-helper package.
-# Chris Leick <c.leick at vollbio.de>, 2009.
-# file: lh_config
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-helper 1.0.5\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-16 08:02+0300\n"
-"Last-Translator: Chris Leick <c.leick at vollbio.de>\n"
-"Language-Team: German <debian-l10n-german at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-# type: TH
-#: lh_binary.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 "2009-02-14"
-
-# 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 "1.0.4"
-
-# 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 "Live-Helper"
-
-# 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 "NAME"
-
-# 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 "ÜBERSICHT"
-
-# 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 "BESCHREIBUNG"
-
-# 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 "OPTIONEN"
-
-# 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 "SIEHE AUCH"
-
-# 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 "I<live-helper>(7)"
-
-# 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 "Dieses Programm ist Teil von Live-Helper."
-
-# 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 "HOMEPAGE"
-
-# 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 ""
-"Weitere Informationen über Live-Helper und das Debian-Live-Projekt können "
-"auf der Homepage E<lt>I<http://debian-live.alioth.debian.org/>E<gt> und "
-"im Handbuch unter E<lt>I<http://live.debian.net/manual/>E<gt> gefunden "
-"werden."
-
-# 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 "FEHLER"
-
-# 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 at lists.debian.org>E<gt>."
-msgstr ""
-"Berichten Sie Fehler, indem Sie einen Fehlerbericht zum Live-Helper-Paket "
-"an die Debian-Fehlerdatenbank unter E<lt>I<http://bugs.debian.org/>E<gt> "
-"einreichen oder schreiben Sie eine englischsprachige E-Mail an die "
-"Mailingliste E<lt>I<debian-live at lists.debian.org>E<gt>."
-
-# 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 "AUTOR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"Live-Helper wurde von Daniel Baumann E<lt>I<daniel at debian.org>E<gt> für "
-"das Debian-Projekt geschrieben."
-
-# type: TH
-#: lh_config.en.1:1
-#, no-wrap
-msgid "LH_CONFIG"
-msgstr "LH_CONFIG"
-
-# type: Plain text
-#: lh_config.en.1:5
-msgid "lh_config - create configuration for live-helper"
-msgstr "lh_config - Konfiguration für Live-Helper erstellen"
-
-# type: Plain text
-#: lh_config.en.1:8
-msgid "B<lh_config>"
-msgstr "B<lh_config>"
-
-# type: Plain text
-#: lh_config.en.1:10
-msgid " [B<--apt> apt|aptitude]"
-msgstr " [B<--apt> apt|aptitude]"
-
-# type: Plain text
-#: lh_config.en.1:12
-msgid " [B<--apt-ftp-proxy> I<URL>]"
-msgstr " [B<--apt-ftp-proxy> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:14
-msgid " [B<--apt-http-proxy> I<URL>]"
-msgstr " [B<--apt-http-proxy> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:16
-msgid " [B<--apt-pdiffs> enabled|disabled]"
-msgstr " [B<--apt-pdiffs> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:18
-msgid " [B<--apt-options> I<OPTION>|\"I<OPTIONS>\"]"
-msgstr " [B<--apt-options> I<OPTION>|\"I<OPTIONEN>\"]"
-
-# type: Plain text
-#: lh_config.en.1:20
-msgid " [B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"]"
-msgstr " [B<--aptitude-options> I<OPTION>|\"I<OPTIONEN>\"]"
-
-# type: Plain text
-#: lh_config.en.1:22
-msgid " [B<--apt-pipeline> I<FIXME>]"
-msgstr " [B<--apt-pipeline> I<FIXME>]"
-
-# type: Plain text
-#: lh_config.en.1:24
-msgid " [B<--apt-recommends> enabled|disabled]"
-msgstr " [B<--apt-recommends> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:26
-msgid " [B<--apt-secure> enabled|disabled]"
-msgstr " [B<--apt-secure> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:28
-msgid " [-a|B<--architecture> I<ARCHITECTURE>]"
-msgstr " [-a|B<--architecture> I<ARCHITEKTUR>]"
-
-# type: Plain text
-#: lh_config.en.1:30
-msgid " [-b|B<--binary-images> iso|net|tar|usb-hdd]"
-msgstr " [-b|B<--binary-images> iso|net|tar|usb-hdd]"
-
-# type: Plain text
-#: lh_config.en.1:32
-msgid " [B<--binary-filesystem> fat16|fat32|ext2]"
-msgstr " [B<--binary-filesystem> fat16|fat32|ext2]"
-
-# type: Plain text
-#: lh_config.en.1:34
-msgid " [B<--binary-indices> enabled|disabled|none]"
-msgstr " [B<--binary-indices> enabled|disabled|none]"
-
-# type: Plain text
-#: lh_config.en.1:36
-msgid " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">]"
-msgstr " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETER\"]"
-
-# type: Plain text
-#: lh_config.en.1:38
-msgid " [B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">]"
-msgstr " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETER\"]"
-
-# type: Plain text
-#: lh_config.en.1:40
-msgid " [B<--bootloader> grub|syslinux|yaboot]"
-msgstr " [B<--bootloader> grub|syslinux|yaboot]"
-
-# type: Plain text
-#: lh_config.en.1:42
-msgid " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy]"
-msgstr " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy]"
-
-# type: Plain text
-#: lh_config.en.1:44
-msgid " [B<--bootstrap-config> I<FILE>]"
-msgstr " [B<--bootstrap-config> I<DATEI>]"
-
-# type: Plain text
-#: lh_config.en.1:46
-msgid " [-f|B<--bootstrap-flavour> minimal|standard]"
-msgstr " [-f|B<--bootstrap-flavour> minimal|standard]"
-
-# type: Plain text
-#: lh_config.en.1:48
-msgid " [B<--bootstrap-keyring> I<PACKAGE>]"
-msgstr " [B<--bootstrap-keyring> I<PAKET>]"
-
-# type: Plain text
-#: lh_config.en.1:50
-msgid " [B<--cache> enabled|disabled]"
-msgstr " [B<--cache> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:52
-msgid " [B<--cache-indices> enabled|disabled]"
-msgstr " [B<--cache-indices> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:54
-msgid " [B<--cache-packages> enabled|disabled]"
-msgstr " [B<--cache-packages> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:56
-msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
-msgstr " [B<--cache-stages> I<STUFE>|I<\"STUFEN\">]"
-
-# type: Plain text
-#: lh_config.en.1:58
-msgid " [B<--checksums> enabled|disabled]"
-msgstr " [B<--checksums> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:60
-msgid " [B<--chroot-build> enabled|disabled]"
-msgstr " [B<--chroot-build> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:62
-msgid " [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]"
-msgstr " [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]"
-
-# type: Plain text
-#: lh_config.en.1:64
-msgid " [B<--clean]>"
-msgstr " [B<--clean]>"
-
-# type: Plain text
-#: lh_config.en.1:66
-msgid "B<\t[-c|--conffile> I<FILE>]"
-msgstr "B<\t[-c|--conffile> I<DATEI>]"
-
-# type: Plain text
-#: lh_config.en.1:68
-msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
-msgstr " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
-
-# type: Plain text
-#: lh_config.en.1:70
-msgid " [B<--debconf-nowarnings> enabled|disabled]"
-msgstr " [B<--debconf-nowarnings> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:72
-msgid " [B<--debconf-priority> low|medium|high|critical]"
-msgstr " [B<--debconf-priority> low|medium|high|critical]"
-
-# type: Plain text
-#: lh_config.en.1:74
-msgid ""
-" [B<--debian-installer> enabled|cdrom|netinst|netboot|businesscard|live|"
-"disabled]"
-msgstr ""
-" [B<--debian-installer> enabled|cdrom|netinst|netboot|businesscard|live|"
-"disabled]"
-
-# type: Plain text
-#: lh_config.en.1:76
-msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]"
-msgstr " [B<--debian-installer-distribution> daily|I<CODENAME>]"
-
-# type: Plain text
-#: lh_config.en.1:78
-msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
-msgstr " [B<--debian-installer-preseedfile> I<DATEI>|I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:80
-msgid " [-d|B<--distribution> I<CODENAME>]"
-msgstr " [-d|B<--distribution> I<CODENAME>]"
-
-# type: Plain text
-#: lh_config.en.1:82
-msgid " [--B<dump>]"
-msgstr " [--B<dump>]"
-
-# type: Plain text
-#: lh_config.en.1:84
-msgid " [-e|B<--encryption> disabled|aes128|aes192|aes256]"
-msgstr " [-e|B<--encryption> disabled|aes128|aes192|aes256]"
-
-# type: Plain text
-#: lh_config.en.1:86
-msgid " [B<--fdisk> fdisk|fdisk.dist]"
-msgstr " [B<--fdisk> fdisk|fdisk.dist]"
-
-# type: Plain text
-#: lh_config.en.1:88
-msgid " [B<--genisoimage> genisomage|mkisofs]"
-msgstr " [B<--genisoimage> genisomage|mkisofs]"
-
-# type: Plain text
-#: lh_config.en.1:90
-msgid " [B<--grub-splash> I<FILE>]"
-msgstr " [B<--grub-splash> I<DATEI>]"
-
-# type: Plain text
-#: lh_config.en.1:92
-msgid " [B<--hooks> I<FILE>]"
-msgstr " [B<--hooks> I<DATEI>]"
-
-# type: Plain text
-#: lh_config.en.1:94
-msgid " [B<--hostname> I<NAME>]"
-msgstr " [B<--hostname> I<NAME>]"
-
-# type: Plain text
-#: lh_config.en.1:96
-msgid " [B<--ignore-system-defaults>]"
-msgstr " [B<--ignore-system-defaults>]"
-
-# type: Plain text
-#: lh_config.en.1:98
-msgid " [B<--includes> I<PATH>]"
-msgstr " [B<--includes> I<PFAD>]"
-
-# type: Plain text
-#: lh_config.en.1:100
-msgid " [B<--initramfs> auto|live-initramfs|casper]"
-msgstr " [B<--initramfs> auto|live-initramfs|casper]"
-
-# type: Plain text
-#: lh_config.en.1:102
-msgid " [B<--interactive> shell]"
-msgstr " [B<--interactive> shell]"
-
-# type: Plain text
-#: lh_config.en.1:104
-msgid " [B<--iso-application> I<NAME>]"
-msgstr " [B<--iso-application> I<NAME>]"
-
-# type: Plain text
-#: lh_config.en.1:106
-msgid " [B<--iso-preparer> I<NAME>]"
-msgstr " [B<--iso-preparer> I<NAME>]"
-
-# type: Plain text
-#: lh_config.en.1:108
-msgid " [B<--iso-publisher> I<NAME>]"
-msgstr " [B<--iso-publisher> I<NAME>]"
-
-# type: Plain text
-#: lh_config.en.1:110
-msgid " [B<--iso-volume> I<NAME>]"
-msgstr " [B<--iso-volume> I<NAME>]"
-
-# type: Plain text
-#: lh_config.en.1:112
-msgid " [B<--jffs2-eraseblock> I<SIZE>]"
-msgstr " [B<--jffs2-eraseblock> I<GRÖßE>]"
-
-# type: Plain text
-#: lh_config.en.1:114
-msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
-msgstr " [B<--keyring-packages> I<PAKET|\"PAKETE\">]"
-
-# type: Plain text
-#: lh_config.en.1:116
-msgid " [-l|B<--language> I<LANGUAGE>]"
-msgstr " [-l|B<--language> I<SPRACHE>]"
-
-# type: Plain text
-#: lh_config.en.1:118
-msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
-msgstr ""
-" [-k|B<--linux-flavours> I<VARIANTE>|I<\"VARIANTEN\">]"
-
-# type: Plain text
-#: lh_config.en.1:120
-msgid " [B<--linux-packages> I<\"PACKAGES\">]"
-msgstr " [B<--linux-packages> I<\"PAKETE\">]"
-
-# type: Plain text
-#: lh_config.en.1:122
-msgid " [B<--losetup> losetup|losetup.orig]"
-msgstr " [B<--losetup> losetup|losetup.orig]"
-
-# type: Plain text
-#: lh_config.en.1:124
-msgid " [B<--memtest> memtest86+|memtest86|none]"
-msgstr " [B<--memtest> memtest86+|memtest86|none]"
-
-# type: Plain text
-#: lh_config.en.1:126
-msgid " [-m|B<--mirror-bootstrap> I<URL>]"
-msgstr " [-m|B<--mirror-bootstrap> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:128
-msgid " [B<--mirror-binary> I<URL>]"
-msgstr " [B<--mirror-binary> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:130
-msgid " [B<--mirror-binary-security> I<URL>]"
-msgstr " [B<--mirror-binary-security> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:132
-msgid " [B<--mirror-chroot> I<URL>]"
-msgstr " [B<--mirror-chroot> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:134
-msgid " [B<--mirror-chroot-security> I<URL>]"
-msgstr " [B<--mirror-chroot-security> I<URL>]"
-
-# type: Plain text
-#: lh_config.en.1:136
-msgid " [B<--mode> debian|emdebian]"
-msgstr " [B<--mode> debian|emdebian]"
-
-# type: Plain text
-#: lh_config.en.1:138
-msgid " [B<--net-root-filesystem> nfs|cfs]"
-msgstr " [B<--net-root-filesystem> nfs|cfs]"
-
-# type: Plain text
-#: lh_config.en.1:140
-msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
-msgstr " [B<--net-root-mountoptions> I<OPTIONEN>]"
-
-# type: Plain text
-#: lh_config.en.1:142
-msgid " [B<--net-root-path> I<PATH>]"
-msgstr " [B<--net-root-path> I<PFAD>]"
-
-# type: Plain text
-#: lh_config.en.1:144
-msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
-msgstr " [B<--net-root-server> I<IP>|I<RECHNERNAME>]"
-
-# type: Plain text
-#: lh_config.en.1:146
-msgid " [B<--net-cow-filesystem> nfs|cfs]"
-msgstr " [B<--net-cow-filesystem> nfs|cfs]"
-
-# type: Plain text
-#: lh_config.en.1:148
-msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
-msgstr " [B<--net-cow-mountoptions> I<OPTIONEN>]"
-
-# type: Plain text
-#: lh_config.en.1:150
-msgid " [B<--net-cow-path> I<PATH>]"
-msgstr " [B<--net-cow-path> I<PFAD>]"
-
-# type: Plain text
-#: lh_config.en.1:152
-msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
-msgstr " [B<--net-cow-server> I<IP>|I<RECHNERNAME>]"
-
-# type: Plain text
-#: lh_config.en.1:154
-msgid " [B<--net-tarball> bzip2|gzip|tar|none]"
-msgstr " [B<--net-tarball> bzip2|gzip|tar|none]"
-
-# type: Plain text
-#: lh_config.en.1:156
-msgid " [-p|B<--packages-lists> I<FILE>]"
-msgstr " [-p|B<--packages-lists> I<DATEI>]"
-
-# type: Plain text
-#: lh_config.en.1:158
-msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
-msgstr " [B<--packages> I<PAKET>|I<\"PAKETE\">]"
-
-# type: Plain text
-#: lh_config.en.1:160
-msgid " [B<--root-command> sudo]"
-msgstr " [B<--root-command> sudo]"
-
-# type: Plain text
-#: lh_config.en.1:162
-msgid " [B<--use-fakeroot> enabled|disabled]"
-msgstr " [B<--use-fakeroot> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:164
-msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
-msgstr " [B<--archive-areas> I<KATEGORIE>|I<\"KATEGORIEN\">]"
-
-# type: Plain text
-#: lh_config.en.1:166
-msgid " [B<--security> enabled|disabled]"
-msgstr " [B<--security> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:168
-msgid " [B<--source> enabled|disabled]"
-msgstr " [B<--source> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:170
-msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
-msgstr " [-s|B<--source-images> iso|net|tar|usb-hdd]"
-
-# type: Plain text
-#: lh_config.en.1:172
-msgid " [B<--symlinks> enabled|disabled]"
-msgstr " [B<--symlinks> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:174
-msgid " [B<--syslinux-splash> I<FILE>]"
-msgstr " [B<--syslinux-splash> I<DATEI>]"
-
-# type: Plain text
-#: lh_config.en.1:176
-msgid " [B<--syslinux-timeout> I<SECONDS>]"
-msgstr " [B<--syslinux-timeout> I<SEKUNDEN>]"
-
-# type: Plain text
-#: lh_config.en.1:178
-msgid " [B<--syslinux-menu> enabled|disabled]"
-msgstr " [B<--syslinux-menu> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:180
-msgid " [B<--sysvinit> enabled|disabled]"
-msgstr " [B<--sysvinit> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:182
-msgid " [B<--tasksel> aptitude|tasksel]"
-msgstr " [B<--tasksel> aptitude|tasksel]"
-
-# type: Plain text
-#: lh_config.en.1:184
-msgid " [B<--tasks> I<TASK>]"
-msgstr " [B<--tasks> I<PROGRAMMGRUPPE>]"
-
-# type: Plain text
-#: lh_config.en.1:186
-msgid " [B<--templates> I<PATH>]"
-msgstr " [B<--templates> I<PFAD>]"
-
-# type: Plain text
-#: lh_config.en.1:188
-msgid " [B<--union-filesystem> aufs|unionfs]"
-msgstr " [B<--union-filesystem> aufs|unionfs]"
-
-# type: Plain text
-#: lh_config.en.1:190
-msgid " [B<--virtual-root-filesystem> ext3]"
-msgstr " [B<--virtual-root-filesystem> ext3]"
-
-# type: Plain text
-#: lh_config.en.1:192
-msgid " [B<--virtual-root-size >I<MB>]"
-msgstr " [B<--virtual-root-size >I<MB>]"
-
-# type: Plain text
-#: lh_config.en.1:194
-msgid " [B<--exposed-root> enabled|disabled]"
-msgstr " [B<--exposed-root> enabled|disabled]"
-
-# type: Plain text
-#: lh_config.en.1:196
-msgid " [B<--username> I<NAME>]"
-msgstr " [B<--username> I<NAME>]"
-
-# type: Plain text
-#: lh_config.en.1:198
-msgid " [B<--win32-loader enabled|disabled]>"
-msgstr " [B<--win32-loader enabled|disabled]>"
-
-# type: Plain text
-#: lh_config.en.1:200
-msgid "B<lh_config> [I<live-helper\\ options>]"
-msgstr "B<lh_config> [I<Live-Helper-Optionen>]"
-
-# 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 ""
-"ist ein Befehl hoher Stufe (Porzellan) von Live-Helper, der "
-"Debian-Live-Werkzeugsammlung. Es bevölkert das Konfigurationsverzeichnis von "
-"Live-Helper. Standardmäßig heißt das Verzeichnis »config« und wird im "
-"aktuellen Verzeichnis erstellt, in dem lh_config ausgeführt wurde."
-
-# 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 ""
-"B<Achtung:> lh_config versucht schlau zu sein und setzt Vorgaben für "
-"einige Optionen in Abhängigkeit von anderen Optionen (z.B. das zu "
-"benutzende einheitliche (»union«) Dateisystem abhängig davon, ob ein "
-"Etch-System erstellt wird oder nicht). Das bedeutet, dass Sie, wenn Sie "
-"eine neue Konfiguration erstellen, lh_config nur einmal mit allen "
-"angegebenen Optionen aufrufen sollten. Es mehrfach mit einer Untermenge der "
-"Optionen aufzurufen, kann zu nicht funktionierenden Konfigurationen führen. "
-"Das ist außerdem dadurch der Fall, dass lh_config, wenn es mit nur einer "
-"Option aufgerufen wird, nur diese Option ändert und alles andere so "
-"lässt, solange es nicht definiert ist. Jedoch warnt lh_config vor "
-"bekannten unmöglichen oder wahrscheinlich unmöglichen Kombinationen, die "
-"zu nicht funktionierenden Live-Systemen führen. Wenn Sie sich nicht "
-"sicher sind, entfernen Sie config/{binary,bootstrap,chroot,common,source} "
-"und rufen Sie lh_config erneut auf."
-
-# 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 ""
-"Zusätzlich zu seinen speziellen Optionen versteht lh_config außerdem alle "
-"generischen Live-Helper-Optionen. Siehe I<live-helper>(7), um eine Liste "
-"aller generischen Live-Helper-Optionen zu erhalten."
-
-# type: IP
-#: lh_config.en.1:209
-#, no-wrap
-msgid "B<--apt> apt|aptitude"
-msgstr "B<--apt> apt|aptitude"
-
-# 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 ""
-"definiert, ob apt-get oder aptitude benutzt wird, um beim Erstellen des "
-"Images Pakete zu installieren. Wenn Etch-Images erstellt werden, ist "
-"diese Vorgabe aptitude. Die Vorgabe für jede andere Distribution ist "
-"»apt.«"
-
-# type: IP
-#: lh_config.en.1:211
-#, no-wrap
-msgid "B<--apt-ftp-proxy> I<URL>"
-msgstr "B<--apt-ftp-proxy> I<URL>"
-
-# 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 ""
-"setzt den FTP-Proxy, der von Apt benutzt wird. Standardmäßig ist er leer, "
-"aber wenn das Bausystem die Umgebungsvariable »ftp_proxy« gesetzt hat, "
-"wird »apt-ftp-proxy« automatisch auf den Wert von »ftp_proxy« gesetzt."
-
-# type: IP
-#: lh_config.en.1:213
-#, no-wrap
-msgid "B<--apt-http-proxy> I<URL>"
-msgstr "B<--apt-http-proxy> I<URL>"
-
-# 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 ""
-"setzt den HTTP-Proxy, der von apt benutzt wird. Standardmäßig ist er "
-"leer, wenn das Bausystem die Umgebungsvariable »http_proxy« gesetzt hat , "
-"wird »apt-http-proxy« automatisch auf den Wert von »http_proxy« gesetzt."
-
-# type: IP
-#: lh_config.en.1:215
-#, no-wrap
-msgid "B<--apt-pdiffs> enabled|disabled"
-msgstr "B<--apt-pdiffs> enabled|disabled"
-
-# 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 ""
-"definiert, ob Apt die inkrementelle Paketindizesfunktionalität benutzen "
-"soll oder nicht. Dies ist standardmäßig eingeschaltet."
-
-# type: IP
-#: lh_config.en.1:217
-#, no-wrap
-msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>"
-msgstr "B<--apt-options> I<OPTION>|\"I<OPTIONEN>"
-
-# 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 ""
-"definiert die Standardoptionen, die an jeden Apt-Aufruf angehängt werden, der "
-"innerhalb von Chroot während der Erstellung des Images ausgeführt wird. "
-"Standardmäßig ist dies auf --yes gesetzt, um nicht interaktive Installation "
-"von Paketen zu erlauben."
-
-# type: IP
-#: lh_config.en.1:219
-#, no-wrap
-msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
-msgstr "B<--aptitude-options> I<OPTION>|\"I<OPTIONEN>\""
-
-# 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 ""
-"definiert die Standardoptionen, die an jeden Aptitude-Aufruf angehängt "
-"werden, der innerhalb von Chroot während der Erstellung des Images "
-"ausgeführt wird. Standardmäßig ist dies auf --assume-yes gesetzt, um "
-"nicht interaktive Installation von Paketen zu erlauben."
-
-# type: IP
-#: lh_config.en.1:221
-#, no-wrap
-msgid "B<--apt-pipeline> I<FIXME>"
-msgstr "B<--apt-pipeline> I<FIXME>"
-
-# 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 "FIXME"
-
-# type: IP
-#: lh_config.en.1:223
-#, no-wrap
-msgid "B<--apt-recommends> enabled|disabled"
-msgstr "B<--apt-recommends> enabled|disabled"
-
-# 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 ""
-"definiert, ob Apt empfohlene Pakete automatisch installieren soll. "
-"Standardmäßig ist dies im Debian-Modus eingeschaltet und im "
-"Emdebian-Modus ausgeschaltet."
-
-# type: IP
-#: lh_config.en.1:225
-#, no-wrap
-msgid "B<--apt-secure> enabled|disabled"
-msgstr "B<--apt-secure> enabled|disabled"
-
-# type: Plain text
-#: lh_config.en.1:227
-msgid ""
-"defines if apt should check repository signatures. This is enabled by "
-"default."
-msgstr ""
-"definiert, ob Apt Paket-Depot-Signaturen prüfen soll. Dies ist "
-"standardmäßig eingeschaltet."
-
-# type: IP
-#: lh_config.en.1:227
-#, no-wrap
-msgid "-a|B<--architecture> I<ARCHITECTURE>"
-msgstr "-a|B<--architecture> I<ARCHITEKTUR>"
-
-# 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 ""
-"definiert die Architektur des zu erstellenden Images. Standardmäßig ist "
-"dies auf die Host-Architektur gesetzt. Beachten Sie, dass Sie es nicht "
-"für eine andere Architektur cross-erstellen können, wenn die Programme "
-"für die Zielarchitektur nicht auch auf dem Gastsystem ausgeführt werden "
-"können. Zum Beispiel ist das Erstellen von AMD64-Images auf i386 und "
-"umgekehrt möglich, wenn Sie einen 64-Bit-fähigen i386-Prozessor und den "
-"richtigen Kernel haben. Aber das Erstellen von PowerPC-Images auf einem "
-"i386-System ist nicht möglich."
-
-# type: IP
-#: lh_config.en.1:229
-#, no-wrap
-msgid "-b|B<--binary-images> iso|net|tar|usb-hdd"
-msgstr "-b|B<--binary-images> iso|net|tar|usb-hdd"
-
-# 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 ""
-"definiert den zu erstellenden Image-Typ. Standardmäßig ist dies auf »iso« "
-"gesetzt, um CD/DVD-Images zu erstellen."
-
-# type: IP
-#: lh_config.en.1:231
-#, no-wrap
-msgid "B<--binary-filesystem> fat16|fat32|ext2"
-msgstr "B<--binary-filesystem> fat16|fat32|ext2"
-
-# 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 ""
-"definiert das Dateisystem, das in dem Image-Typ benutzt werden soll. Dies "
-"hat nur eine Auswirkung, wenn der ausgewählte Programm-Image-Typ die "
-"Auswahl eines Dateisystems erlaubt. Zum Beispiel hat die resultierende "
-"CD/DVD, wenn Sie ISO auswählen immer das Dateisystem ISO9660. Beim "
-"Erstellen von USB-HDD-Images für USB-Sticks ist dies aktiv. Beachten Sie, "
-"dass es mit Ausnahme von Sparc, wo die Vorgabe »ext2« ist, auf allen "
-"Architekturen standardmäßig auf »fat16« gesetzt ist. Beachten Sie "
-"außerdem, dass wenn Sie »fat16« wählen und Ihr resultierendes Image "
-"größer als 2 GB wird, das binäre Dateisystem automatisch auf »fat32« "
-"umgestellt wird."
-
-# type: IP
-#: lh_config.en.1:233
-#, no-wrap
-msgid "B<--binary-indices> enabled|disabled|none"
-msgstr "B<--binary-indices> enabled|disabled|none"
-
-# 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 ""
-"definiert, ob das resultierende Image Programmindizes haben soll oder "
-"nicht und ist als Vorgabe eingeschaltet. Wenn es auf »none« gesetzt ist, "
-"sind überhaupt keine Indizes enthalten."
-
-# type: IP
-#: lh_config.en.1:235
-#, no-wrap
-msgid "B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">"
-msgstr "B<--bootappend-install> I<PARAMETER>|I<\"PARAMETER\">"
-
-# type: Plain text
-#: lh_config.en.1:237
-msgid "sets boot parameters specific to debian-installer, if included."
-msgstr ""
-"Setzt Debian-Installationsprogrammspezifische Boot-Parameter, wenn "
-"enthalten."
-
-# type: IP
-#: lh_config.en.1:237
-#, no-wrap
-msgid "B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">"
-msgstr "B<--bootappend-live> I<PARAMETER>|I<\"PARAMETER\">"
-
-# 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 ""
-"setzt für Debian-Live spezifische Boot-Parameter. Eine komplette Liste "
-"der Boot-Parameter kann für Etch in der Handbuchseite von Casper und für "
-"alle anderen Distributionen in der Handbuchseite von Live-Initramfs "
-"gefunden werden. In den Images ist eine Liste aller Parametern "
-"(unkommentiert) in »/parameters.txt« enthalten."
-
-# type: IP
-#: lh_config.en.1:239
-#, no-wrap
-msgid "B<--bootloader> grub|syslinux|yaboot"
-msgstr "B<--bootloader> grub|syslinux|yaboot"
-
-# 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 ""
-"definiert, welcher Boot-Loader im erzeugten Image benutzt wird. Dies hat "
-"nur Auswirkungen, wenn der ausgewählte Programm-Image-Typ die Auswahl des "
-"Boot-Loaders unterstützt. Wenn Sie zum Beispiel ein ISO erstellen, wird "
-"immer Syslinux (oder genauer Isolinux) benutzt. Beachten Sie außerdem, "
-"dass einige Kombinationen von Programm-Image-Typen und Boot-Loadern "
-"möglich sein könnten, aber von Live-Helper noch nicht unterstützt werden. "
-"Lh_config wird beim Erstellen einer solchen noch nicht unterstützten "
-"Kombination scheitern und eine Erklärung darüber ausgeben. Für "
-"USB-HDD-Images auf AMD64 und i386 ist die Vorgabe »syslinux«. »yaboot« "
-"wird nur auf PowerPC benutzt."
-
-# type: IP
-#: lh_config.en.1:241
-#, no-wrap
-msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
-msgstr "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
-
-# 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 ""
-"definiert, welches Programm für die Boot-Einrichtung von der "
-"Debian-Chroot benutzt wird. Beachten Sie, dass Ihr Host-System kopiert "
-"wird, wenn Sie das Boot-Einrichtungsprogramm auf »copy« setzen. Dies kann "
-"nützlich sein, wenn Sie Ihr bestehendes Host-System in ein Live-System "
-"konvertieren/klonen möchten. Stellen Sie jedoch sicher, dass Sie genug "
-"freien Speicher haben, weil das abhängig von Ihrem Host-System ziemlich "
-"groß werden könnte."
-
-# type: IP
-#: lh_config.en.1:243
-#, no-wrap
-msgid "B<--bootstrap-config> I<FILE>"
-msgstr "B<--bootstrap-config> I<FILE>"
-
-# 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 ""
-"stellt eine Konfigurationsdatei für das Boot-Einrichtungsprogramm Ihrer "
-"Wahl zusammen und ist standardmäßig leer. Schauen Sie in die "
-"Dokumentation von Debootstrap oder Cdebootstrap, um weitere Informationen "
-"darüber zu erhalten. Wenn das Boot-Einrichtungsprogramm auf »copy« "
-"gesetzt ist, hat dies keine Auswirkungen."
-
-# type: IP
-#: lh_config.en.1:245
-#, no-wrap
-msgid "-f|B<--bootstrap-flavour> minimal|standard"
-msgstr "-f|B<--bootstrap-flavour> minimal|standard"
-
-# 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 ""
-"definiert, ob das Boot-Einrichtungsprogramm das Booten des "
-"Standardsystems einrichten soll (alle Pakete mit der Dringlichkeit "
-"»required« (erforderlich) oder »important« (wichtig), was Vorgabe ist) oder "
-"ein minimales System (nur Pakete der Dringlichkeit »required« plus Apt)."
-
-# type: IP
-#: lh_config.en.1:247
-#, no-wrap
-msgid "B<--bootstrap-keyring> I<PACKAGE>"
-msgstr "B<--bootstrap-keyring> I<PAKET>"
-
-# type: Plain text
-#: lh_config.en.1:249
-msgid ""
-"sets the archive keyring package to be used. Default is debian-archive-"
-"keyring."
-msgstr ""
-"setzt das zu benutzende Schlüsselbund-Paket. Vorgabe ist "
-"»debian-archive-keyring«."
-
-# type: IP
-#: lh_config.en.1:249
-#, no-wrap
-msgid "B<--cache> enabled|disabled"
-msgstr "B<--cache> enabled|disabled"
-
-# 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 ""
-"definiert global, ob ein Zwischenspeicher (Cache) überhaupt benutzt "
-"werden soll. Unterschiedliche Zwischenspeicher können durch ihre eigenen "
-"Optionen kontrolliert werden."
-
-# type: IP
-#: lh_config.en.1:251
-#, no-wrap
-msgid "B<--cache-indices> enabled|disabled"
-msgstr "B<--cache-indices> enabled|disabled"
-
-# 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 ""
-"definiert, ob heruntergeladene Paketindizes und Listen "
-"zwischengespeichert werden sollen, was als Vorgabe ausgeschaltet ist. Es "
-"einzuschalten würde es erlauben, ein komplettes Image offline neu zu "
-"erstellen, jedoch würden Sie dann keine Aktualisierungen mehr erhalten."
-
-# type: IP
-#: lh_config.en.1:253
-#, no-wrap
-msgid "B<--cache-packages> enabled|disabled"
-msgstr "B<--cache-packages> enabled|disabled"
-
-# 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 ""
-"definiert, ob heruntergeladene Paketdateien zwischengespeichert werden "
-"sollen, was als Vorgabe eingeschaltet ist. Es auszuschalten spart "
-"Speicher in Ihrem Erstellungsverzeichnis, aber bedenken Sie, dass Sie "
-"viel unnötigen Verkehr verursachen, wenn Sie ein paar Neuerstellungen "
-"vornehmen. Generell sollten Sie es immer eingeschaltet lassen, es kann "
-"jedoch in einigen seltenen Erstellungseinrichtungen schneller sein, "
-"Pakete von dem lokalen Netzwerkspiegel erneut abzuholen, als die lokale "
-"Platte zu benutzen."
-
-# type: IP
-#: lh_config.en.1:255
-#, no-wrap
-msgid "B<--cache-stages> enabled|disabled|I<STAGE>|I<\"STAGES\">"
-msgstr "B<--cache-stages> enabled|disabled|I<STUFE>|I<\"STUFEN\">"
-
-# 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 ""
-"legt fest, welche Stufen zwischengespeichert werden sollen. Es ist "
-"standardmäßig auf »bootstrap« (Boot-Einrichtung) gesetzt. Als eine "
-"Ausnahme zu den normalen Stufennamen kann hier außerdem »rootfs« benutzt "
-"werden, welches nur das erzeugte Wurzeldateisystem in "
-"filesystem.{dir,ext*,squashfs} zwischenspeichert. Dies kann während der "
-"Entwicklung nützlich sein, wenn Sie die Programmstufe neu erstellen "
-"möchten, aber das Wurzeldateisystem nicht ständig neu erstellen wollen."
-
-# type: IP
-#: lh_config.en.1:257
-#, no-wrap
-msgid "B<--checksums> enabled|disabled"
-msgstr "B<--checksums> enabled|disabled"
-
-# 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 ""
-"definiert, ob das Programm-Image eine Datei mit dem Namen md5sums.txt "
-"enthalten soll, die alle Dateien im Image zusammen mit ihren "
-"Md5-Prüfsummen auflistet. Dies kann im Gegenzug von Live-Initramfs' "
-"eingebauter Integritätsprüfung benutzt werden, um das Medium zu "
-"überprüfen, wenn dies an der Boot-Eingabeaufforderung angegeben ist."
-"Generell sollte dies nicht ausgeschaltet sein und es ist eine wichtige "
-"Funktion des Live-Systems, das der Öffentlichkeit freigegeben wird. "
-"Jedoch kann es während der Entwicklung von sehr großen Images manchmal "
-"Zeit sparen, die Prüfsummen nicht zu errechnen."
-
-# type: IP
-#: lh_config.en.1:259
-#, no-wrap
-msgid "B<--chroot-build> enabled|disabled"
-msgstr "B<--chroot-build> enabled|disabled"
-
-# 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 ""
-"definiert, ob Live-Helper die Werkzeuge innerhalb von der Chroot "
-"benutzten soll, um das Programm-Image zu erstellen oder nicht, indem die "
-"Host-Systemwerkzeuge benutzt und eingefügt werden. Dies ist eine sehr "
-"gefährliche Option, denn Werkzeuge eines Hostsystems zu benutzen, kann zu "
-"unsauberen und sogar nicht-bootbaren Images führen, wenn die "
-"Host-System-Versionen der benötigten Werkzeuge (hauptsächlich sind das "
-"Boot-Loader wie Syslinux, Grub und Yaboot und die Hilfswerkzeuge, wie "
-"Dosfstools, Genisoimage, Squashfs-tools und andere) nicht B<exakt> zu dem "
-"passen, was zur Erstellungszeit in der Ziel-Distribution vorhanden ist. "
-"Schalten Sie diese Option niemals aus, außer wenn Sie B<ganz> sicher "
-"sind, was Sie tun und Sie I<die Konsequenzen> B<vollständig> I<verstanden "
-"haben>."
-
-# type: IP
-#: lh_config.en.1:261
-#, no-wrap
-msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
-msgstr "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
-
-# 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 ""
-"definiert, welcher Dateisystemtyp für das Wurzeldateisystem-Image benutzt "
-"werden soll. Wenn Sie »plain« benutzen, dann wird kein Dateisystem-Image "
-"erstellt und der Inhalt des Wurzeldateisystems wird als flache Dateien in "
-"das Programm-Image-Dateisystem kopiert. Abhängig davon, welches "
-"Programmdateisystem Sie ausgewählt haben, könnte es unmöglich sein, ein "
-"einfaches Wurzeldateisystem zu erstellen, z.B. »FAT16«/»FAT32« und "
-"»plain« funktioniert nicht, weil Linux nicht auf ihnen läuft."
-
-# type: IP
-#: lh_config.en.1:263
-#, no-wrap
-msgid "B<--clean>"
-msgstr "B<--clean>"
-
-# type: Plain text
-#: lh_config.en.1:265
-msgid ""
-"minimizes config directory by automatically removing unused and thus empty "
-"subdirectories."
-msgstr ""
-"minimiert das Konfigurationsverzeichnis durch automatisches Entfernen von "
-"unbenutzten und damit leeren Unterverzeichnissen."
-
-# type: IP
-#: lh_config.en.1:265
-#, no-wrap
-msgid "-c|B<--conffile> I<FILE>"
-msgstr "-c|B<--conffile> I<DATEI>"
-
-# 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 ""
-"benutzt eine vom Benutzer angegebene alternative Konfigurationsdatei "
-"zusätzlich zu der normalerweise benutzten im Konfigurationsverzeichnis."
-
-# type: IP
-#: lh_config.en.1:267
-#, no-wrap
-msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
-msgstr "B<--debconf-frontend> dialog|editor|noninteractive|readline"
-
-# 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 ""
-"definiert, welchen Wert die Debconf-Oberfläche innerhalb der Chroot setzen "
-"soll. Beachten Sie dass während der Erstellung Fragen gestellt werden, "
-"wenn Sie es nicht auf die Vorgabe »noninteractive« setzen."
-
-# type: IP
-#: lh_config.en.1:269
-#, no-wrap
-msgid "B<--debconf-nowarnings> enabled|disabled"
-msgstr "B<--debconf-nowarnings> enabled|disabled"
-
-# 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 ""
-"definiert, ob Warnungen von Debconf angezeigt werden sollen oder nicht. "
-"Warnungen von Debconf sind üblicherweise sehr selten und als Vorgabe werden "
-"sie gegebenenfalls übersprungen, um den ganzen Erstellungsprozess "
-"nicht-interaktiv zu halten."
-
-# type: IP
-#: lh_config.en.1:271
-#, no-wrap
-msgid "B<--debconf-priority> low|medium|high|critical"
-msgstr "B<--debconf-priority> low|medium|high|critical"
-
-# 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 ""
-"definiert, welcher Wert der Debconf-Priorität innerhalb von der Chroot "
-"gesetzt werden sollte. Als Vorgabe ist es auf »critical« gesetzt, was "
-"bedeutet, dass meistens keine Fragen angezeigt werden. Beachten Sie, dass "
-"dies nur dann Auswirkungen hat, wenn Sie eine Debconf-Oberfläche "
-"benutzen, die sich von »noninteractive« unterscheidet."
-
-# type: IP
-#: lh_config.en.1:273
-#, no-wrap
-msgid "B<--debian-installer> enabled|cdrom|netinst|netboot|businesscard|live|disabled"
-msgstr ""
-"B<--debian-installer> enabled|cdrom|netinst|netboot|businesscard|live|"
-"disabled"
-
-# 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 ""
-"definiert, welcher Typ des Debian-Installationsprogramms gegebenenfalls "
-"in dem resultierenden Programm-Image enthalten sein soll. Als Vorgabe ist "
-"kein Installer enthalten. Alle verfügbaren Varianten mit Ausnahme von "
-"»live« benutzen die gleichen Konfigurationen, wie sie auch auf dem von "
-"Debian-cd erstellten Installationsmedien verwendet wird. Wenn »live« "
-"ausgewählt ist, ist den Udeb »live-installer« enthalten, so dass sich das "
-"Debian-Installationsprogramm anders als üblich verhält und anstatt das "
-"Debian-System aus Paketen vom Medium oder dem Netzwerk zu installieren "
-"das Live-System auf die Platte installiert."
-
-# type: IP
-#: lh_config.en.1:275
-#, no-wrap
-msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
-msgstr "B<--debian-installer-distribution> daily|I<CODENAME>"
-
-# 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 ""
-"definiert die Distribution, aus der die Debian-Installer-Dateien entnommen "
-"werden sollen. Normalerweise sollte dies auf die gleiche Distribution wie "
-"das Live-System gesetzt sein. Jedoch möchte manchmal jemand ein neueres "
-"oder sogar täglich erstelltes Installationsprogramm benutzen."
-
-# type: IP
-#: lh_config.en.1:277
-#, no-wrap
-msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
-msgstr "B<--debian-installer-preseedfile> I<DATEI>|I<URL>"
-
-# 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 ""
-"setzt den Dateiname oder URL für eine optionale benutzte und enthaltene "
-"Voreinstellungsdatei für das Debian-Installationsprogramm."
-
-# type: IP
-#: lh_config.en.1:279
-#, no-wrap
-msgid "-d|B<--distribution> I<CODENAME>"
-msgstr "-d|B<--distribution> I<CODENAME>"
-
-# type: Plain text
-#: lh_config.en.1:281
-msgid "defines the distribution of the resulting live system."
-msgstr "definiert die Distribution des resultierenden Live-Systems."
-
-# type: IP
-#: lh_config.en.1:281
-#, no-wrap
-msgid "--B<dump>"
-msgstr "--B<dump>"
-
-# 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 ""
-"bereitet einen Bericht der derzeit gegebenen Live-System-Konfiguration und "
-"die Version des benutzten Live-Helpers vor. Dies ist für das Einsenden "
-"von Fehlerberichten nützlich, da wir so alle von uns benötigten "
-"Informationen erhalten, um einen Fehler zu lokalisieren und zu "
-"reproduzieren."
-
-# type: IP
-#: lh_config.en.1:283
-#, no-wrap
-msgid "-e|B<--encryption> disabled|aes128|aes192|aes256"
-msgstr "-e|B<--encryption> disabled|aes128|aes192|aes256"
-
-# 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 ""
-"definiert, ob das Wurzeldateisystem verschlüsselt werden soll oder nicht. "
-"Standardmäßig ist es ausgeschaltet."
-
-# type: IP
-#: lh_config.en.1:285
-#, no-wrap
-msgid "B<--fdisk> fdisk|fdisk.dist"
-msgstr "B<--fdisk> fdisk|fdisk.dist"
-
-# 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 ""
-"setzt den Dateinamen des fdisk-Images des Host-Systems, das benutzt werden "
-"soll. Dies wird automatisch ermittelt und benötigt allgemein keine "
-"Anpassung."
-
-# type: IP
-#: lh_config.en.1:287
-#, no-wrap
-msgid "B<--genisoimage> genisomage|mkisofs"
-msgstr "B<--genisoimage> genisomage|mkisofs"
-
-# 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 ""
-"setzt den Dateinamen des Genisoimage-Images des Host-Systems, das benutzt "
-"werden soll. Dies wird automatisch ermittelt und benötigt allgemein "
-"keine Anpassung."
-
-# type: IP
-#: lh_config.en.1:289
-#, no-wrap
-msgid "B<--grub-splash> I<FILE>"
-msgstr "B<--grub-splash> I<DATEI>"
-
-# 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 ""
-"definiert den Namen einer optionalen Startbildschirmgrafik, die in den "
-"Grub-Boot-Loader eingefügt wird."
-
-# type: IP
-#: lh_config.en.1:291
-#, no-wrap
-msgid "B<--hooks> I<FILE>"
-msgstr "B<--hooks> I<DATEI>"
-
-# 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 ""
-"definiert, welche in »/usr/share/live-helper/examples/hooks« verfügbaren "
-"Hooks aktiviert werden sollen."
-
-# type: IP
-#: lh_config.en.1:293
-#, no-wrap
-msgid "B<--hostname> I<NAME>"
-msgstr "B<--hostname> I<NAME>"
-
-# type: Plain text
-#: lh_config.en.1:295
-msgid "sets the hostname of the live system."
-msgstr "setzt den Hostnamen des Live-Systems."
-
-# type: IP
-#: lh_config.en.1:295
-#, no-wrap
-msgid "B<--ignore-system-defaults>"
-msgstr "B<--ignore-system-defaults>"
-
-# 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 ""
-"Standardmäßig liest Lh_config-Systemvorgaben in "
-"»/etc/default/live-helper«, wenn ein neues "
-"Live-Systemkonfigurationsverzeichnis generiert wird. Das ist nützlich, "
-"wenn Sie globale Einstellungen setzen möchten, so wie Spiegelserver und "
-"das nicht dauernd tun möchten."
-
-# type: IP
-#: lh_config.en.1:297
-#, no-wrap
-msgid "B<--includes> I<PATH>"
-msgstr "B<--includes> I<PFAD>"
-
-# 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 ""
-"setzt den Pfad zu den Einfügungen den Live-Helper benutzen wird, z.B "
-"zusätzliche minimale Dokumentation, die Sie auf allen Live-Systemen nutzen "
-"möchten. Standardmäßig ist dies auf »/usr/share/live-helper/includes/« "
-"gesetzt."
-
-# type: IP
-#: lh_config.en.1:299
-#, no-wrap
-msgid "B<--initramfs> auto|live-initramfs|casper"
-msgstr "B<--initramfs> auto|live-initramfs|casper"
-
-# 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 ""
-"setzt den Namen des Paketes, das die live-systemspezifische "
-"Initramfs-Anpassung enthält. Standardmäßig wird »auto« benutzt, was "
-"bedeutet, dass der Wert während der Erstellungszeit des Images anstatt zu "
-"Konfigurationszeit bei Erstellung eines Etch-Systems auf »casper« und bei "
-"allen anderen Systemen auf »live-initramfs« übersetzt wird."
-
-# type: IP
-#: lh_config.en.1:301
-#, no-wrap
-msgid "B<--interactive> shell"
-msgstr "B<--interactive> shell"
-
-# 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 ""
-"definiert, ob nach der Chroot-Stufe und vor dem Anfang der Programmstufe "
-"eine interaktive Shell-Anmeldung im Chroot hervorgebracht werden soll, um "
-"Ihnen manuelle Anpassungen zu erlauben. Sobald Sie die Shell ohne "
-"Abmeldung oder Beenden verlassen, geht die Erstellung wie gewöhnlich "
-"weiter. Beachten Sie, dass dies für nichts anderes als zum Testen "
-"benutzt werden soll. Änderungen, die in allen Erstellungen des Live-Systems "
-"vorhanden sein sollen, sollen durch Hooks gemacht werden. Alles andere "
-"zerstört die Eleganz dazu in der Lage zu sein, den Erstellungsprozess "
-"komplett zu automatisieren und nicht-interaktiv zu machen. Standardmäßig "
-"ist dies natürlich ausgeschaltet."
-
-# type: IP
-#: lh_config.en.1:303
-#, no-wrap
-msgid "B<--iso-application> I<NAME>"
-msgstr "B<--iso-application> I<NAME>"
-
-# 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 ""
-"setzt das Feld »APPLICATION« im Kopf eines resultierenden CD/DVD-Images "
-"und setzt es als Vorgabe auf »Debian-Live« im Debian-Modus und auf "
-"»Emdebian-Live« im Emdebian-Modus."
-
-# type: IP
-#: lh_config.en.1:305
-#, no-wrap
-msgid "B<--iso-preparer> I<NAME>"
-msgstr "B<--iso-preparer> I<NAME>"
-
-# 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 ""
-"setzt das Feld »PREPARER« im Kopf eines resultierenden CD/DVD-Images. "
-"Standardmäßig ist dies auf »Live-Helper« I<VERSION>; "
-"http://packages.qa.debian.org/live-helper« gesetzt, wobei VERSION auf die "
-"Version von Live-Helper expandiert wird, die zur Erstellung des Images "
-"benutzt wurde."
-
-# type: IP
-#: lh_config.en.1:307
-#, no-wrap
-msgid "B<--iso-publisher> I<NAME>"
-msgstr "B<--iso-publisher> I<NAME>"
-
-# 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 at lists.debian.org'. Remember to change this to the "
-"appropriate values at latest when you distributing custom and unofficial "
-"images."
-msgstr ""
-"setzt das Feld »PUBLISHED« im Kopf eines resultierenden CD/DVD-Images. "
-"Standardmäßig ist dies auf »Debian Live project; "
-"http://debian-live.alioth.debian.org/; debian-live at lists.debian.org« gesetzt. "
-"Vergessen Sie nicht, dies spätestes auf angemessene Werte zu ändern, wenn Sie "
-"benutzerdefinierte und inoffizielle Images verteilen."
-
-# type: IP
-#: lh_config.en.1:309
-#, no-wrap
-msgid "B<--iso-volume> I<NAME>"
-msgstr "B<--iso-volume> I<NAME>"
-
-# 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 ""
-"setzt das Feld »VOLUME« im Kopf eines resultierenden CD/DVD-Images und "
-"gibt im Debian-Modus »Debian-Live (I<DATUM>)« und im Emdebian-Modus "
-"»Emdebian-Live (I<DATUM>)« vor, wobei DATUM auf das aktuelle Datum und "
-"die Generierungszeit gesetzt wird."
-
-# type: IP
-#: lh_config.en.1:311
-#, no-wrap
-msgid "B<--jffs2-eraseblock> I<SIZE>"
-msgstr "B<--jffs2-eraseblock> I<GRÖßE>"
-
-# type: IP
-#: lh_config.en.1:313
-#, no-wrap
-msgid "[B<--keyring-packages> I<PACKAGE|\"PACKAGES>"
-msgstr "[B<--keyring-packages> I<PAKET|\"PAKETE>"
-
-# 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 ""
-"setzt das Schlüsselbundpaket oder zusätzliche Schlüsselbundpakete. "
-"Standardmäßig ist dies auf »debian-archive-keyring« gesetzt."
-
-# type: IP
-#: lh_config.en.1:315
-#, no-wrap
-msgid "-l|B<--language> I<LANGUAGE>"
-msgstr "-l|B<--language> I<SPRACHE>"
-
-# 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 ""
-"setzt die Sprache eines Live-Systems durch Installieren von "
-"l10n-bezogenen Paketen und schaltet das Generieren der korrekten Locales "
-"durch automatisches Setzen der richtigen Boot-Parameter ein."
-
-# type: IP
-#: lh_config.en.1:317
-#, no-wrap
-msgid "-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS>"
-msgstr "-k|B<--linux-flavours> I<VARIANTE>|I<\"VARIANTEN>"
-
-# 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 ""
-"setzt die zu installierenden Kernel-Varianten. Beachten Sie, dass im "
-"Falle der Angabe mehrerer Kernelvarianten der erste als Standardkernel "
-"konfiguriert und gebootet wird."
-
-# type: IP
-#: lh_config.en.1:319
-#, no-wrap
-msgid "B<--linux-packages> I<\"PACKAGES>"
-msgstr "B<--linux-packages> I<\"PAKETE>"
-
-# 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 ""
-"setzt den internen Namen des Kernelpaketenamensschemas. Wenn Sie "
-"Debian-Kernelpakete benutzen, werden Sie es nicht anpassen müssen. Wenn "
-"Sie sich entscheiden, benutzerdefinierte Kernelpakete zu benutzen, die "
-"nicht dem Debian-Namensschema folgen, vergessen Sie nicht, diese Option "
-"nur auf den Anfangsabschnitt dieser Pakete zu setzen (für Debian ist das "
-"»linux-image-2.6«), so dass I<ANFANGSABSCHNITT>-I<VARIANTE> in einem "
-"gültigen Paketnamen resultiert (für Debian z.B. »linux-image-2.6-486«). "
-"Vorzugsweise benutzen Sie gegebenenfalls den Meta-Paketnamen für den "
-"Anfangsabschnitt, so dass Ihre Konfiguration ABI-unabhängig ist. "
-"Vergessen Sie außerdem nicht, dass Sie Anfangsabschnitte in die "
-"Programm-Modulpakete für Unionfs oder Aufs und Squashfs einbeziehen "
-"müssen, wenn Sie diese aus Kernel-fremden Quellen erstellen möchten."
-
-# type: IP
-#: lh_config.en.1:321
-#, no-wrap
-msgid "B<--losetup> losetup|losetup.orig"
-msgstr "B<--losetup> losetup|losetup.orig"
-
-# 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 ""
-"setzt den Dateinamen der Losetup-Binärdatei vom Host-System der benutzt "
-"werden sollte. Dieser ist automatisch ermittelt und bedarf normalerweise "
-"keiner Anpassung."
-
-# type: IP
-#: lh_config.en.1:323
-#, no-wrap
-msgid "B<--memtest> memtest86+|memtest86|none"
-msgstr "B<--memtest> memtest86+|memtest86|none"
-
-# 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 ""
-"definiert, ob Memtest, Memtest86+ oder gar kein Speichertester als zweite "
-"Boot-Loader-Konfiguration enthalten sein soll. Dies ist nur auf AMD64 und "
-"i386 verfügbar und als Vorgabe auf »memtest86+« eingestellt."
-
-# type: IP
-#: lh_config.en.1:325
-#, no-wrap
-msgid "-m|B<--mirror-bootstrap> I<URL>"
-msgstr "-m|B<--mirror-bootstrap> I<URL>"
-
-# 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 ""
-"setzt den Ort des Debian-Paketspiegels, der zur Boot-Einrichtung benutzt "
-"werden soll."
-
-# type: IP
-#: lh_config.en.1:327
-#, no-wrap
-msgid "B<--mirror-binary> I<URL>"
-msgstr "B<--mirror-binary> I<URL>"
-
-# 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 ""
-"setzt den Ort des Debian-Paketspiegels, der am Ende im finalen Image "
-"konfiguriert sein soll und der derjenige sein wird, den der Benutzer "
-"sehen und benutzen wird. Das muss nicht notwendigerweise der gleiche "
-"sein, der zum Erstellen des Images benutzt wird, wenn Sie z.B. einen "
-"lokalen Spiegel benutzen, aber einen offiziellen Spiegel im Image haben "
-"möchten. Standardmäßig wird der gleiche der für --mirror-chroot benutzt "
-"wird hier benutzt, es sei denn, ein anderer wird angegeben."
-
-# type: IP
-#: lh_config.en.1:329
-#, no-wrap
-msgid "B<--mirror-binary-security> I<URL>"
-msgstr "B<--mirror-binary-security> I<URL>"
-
-# 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 ""
-"setzt den Ort des Debian-Sicherheitspaketspiegels, der am Ende im finalen "
-"Image konfiguriert sein soll. Standardmäßig wird der gleiche der für "
-"--mirror-chroot-security benutzt wird hier benutzt, es sein denn, ein "
-"anderer wird angegeben."
-
-# type: IP
-#: lh_config.en.1:331
-#, no-wrap
-msgid "B<--mirror-chroot> I<URL>"
-msgstr "B<--mirror-chroot> I<URL>"
-
-# 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 ""
-"setzt den Ort des Debian-Paketspiegels, der benutzt wird, um Pakete "
-"abzuholen, um ein Live-System zu erstellen. Standardmäßig zeigt dies auf "
-"http://ftp.us.debian.org/debian/ was keine gute Vorgabe sein könnte, wenn "
-"Sie außerhalb der USA leben."
-
-# type: IP
-#: lh_config.en.1:333
-#, no-wrap
-msgid "B<--mirror-chroot-security> I<URL>"
-msgstr "B<--mirror-chroot-security> I<URL>"
-
-# 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 ""
-"setzt den Ort des Debian-Sicherheitspaketspiegels, der benutzt wird, um "
-"Pakete abzuholen, um ein Live-System zu erstellen. Standardmäßig zeigt "
-"dies auf http://ftp.us.debian.org/debian/."
-
-# type: IP
-#: lh_config.en.1:335
-#, no-wrap
-msgid "B<--mode> debian|emdebian"
-msgstr "B<--mode> debian|emdebian"
-
-# 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 ""
-"definiert einen globalen Modus, um projektbezogene Vorgaben zu laden. "
-"Standardmäßig ist dies auf »debian« gesetzt."
-
-# type: IP
-#: lh_config.en.1:337
-#, no-wrap
-msgid "B<--net-root-filesystem> nfs|cfs"
-msgstr "B<--net-root-filesystem> nfs|cfs"
-
-# 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 ""
-"definiert das Dateisystem, das in der Boot-Loader-Konfiguration für Ihr "
-"Netz-Boot-Image konfiguriert wird. Vorgabe ist »nfs«."
-
-# type: IP
-#: lh_config.en.1:339
-#, no-wrap
-msgid "B<--net-root-mountoptions> I<OPTIONS>"
-msgstr "B<--net-root-mountoptions> I<OPTIONEN>"
-
-# 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 ""
-"setzt zusätzliche Optionen, um das Wurzeldateisystem in Netz-Boot-Images "
-"einzuhängen und ist standardmäßig leer."
-
-# type: IP
-#: lh_config.en.1:341
-#, no-wrap
-msgid "B<--net-root-path> I<PATH>"
-msgstr "B<--net-root-path> I<PFAD>"
-
-# 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 ""
-"setzt den Pfad, der in der Boot-Loader-Konfiguration für Ihr "
-"Netz-Boot-Image konfiguriert wird. Vorgabe ist im Debian-Modus "
-"»/srv/debian-live« und »/srv/emebian-live« im Emdebian-Modus ist."
-
-# type: IP
-#: lh_config.en.1:343
-#, no-wrap
-msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
-msgstr "B<--net-root-server> I<IP>|I<HOSTNAME>"
-
-# 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 ""
-"setzt die IP oder den Hostnamen, der in der Boot-Loader-Konfiguration für "
-"das Wurzeldateisystem Ihres Netz-Boot-Images gesetzt wird. Vorgabe ist "
-"192.168.1.1."
-
-# type: IP
-#: lh_config.en.1:345
-#, no-wrap
-msgid "B<--net-cow-filesystem> nfs|cfs"
-msgstr "B<--net-cow-filesystem> nfs|cfs"
-
-# type: Plain text
-#: lh_config.en.1:347
-msgid ""
-"defines the filesystem type for the copy-on-write layer and defaults to nfs."
-msgstr ""
-"definiert den Dateisystemtyp für die Copy-on-write-Schicht. Vorgabe ist "
-"»nfs«."
-
-# type: IP
-#: lh_config.en.1:347
-#, no-wrap
-msgid "B<--net-cow-mountoptions> I<OPTIONS>"
-msgstr "B<--net-cow-mountoptions> I<OPTIONEN>"
-
-# 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 ""
-"setzt zusätzliche Optionen, um die Copy-on-write-Schicht in "
-"Netz-Boot-Images einzuhängen und ist standardmäßig leer."
-
-# type: IP
-#: lh_config.en.1:349
-#, no-wrap
-msgid "B<--net-cow-path> I<PATH>"
-msgstr "B<--net-cow-path> I<PFAD>"
-
-# 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 ""
-"definiert den Pfad zum Dateisystem, das durch den Client beschreibbar "
-"ist. Überall, wo I<client_mac_address> im Pfad angegeben ist, ersetzt "
-"Live-initramfs die MAC-Adresse des Clients, getrennt durch Bindestriche."
-
-# type: Plain text
-#: lh_config.en.1:354
-msgid "Example:"
-msgstr "Beispiel:"
-
-# type: Plain text
-#: lh_config.en.1:356
-msgid "/export/hosts/client_mac_address"
-msgstr "/export/hosts/client_mac_address"
-
-# type: Plain text
-#: lh_config.en.1:358
-msgid "/export/hosts/00-16-D3-33-92-E8"
-msgstr "/export/hosts/00-16-D3-33-92-E8"
-
-# type: IP
-#: lh_config.en.1:358
-#, no-wrap
-msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
-msgstr "B<--net-cow-server> I<IP>|I<HOSTNAME>"
-
-# 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 ""
-"setzt die IP oder den Hostnamen, der in der Boot-Loader-Konfiguration für "
-"das Copy-on-write-Dateisystem Ihres Netz-Boot-Images konfiguriert wird "
-"und ist standardmäßig leer."
-
-# type: IP
-#: lh_config.en.1:360
-#, no-wrap
-msgid "B<--net-tarball> bzip2|gzip|tar|none"
-msgstr "B<--net-tarball> bzip2|gzip|tar|none"
-
-# 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 ""
-"definiert das Format des Netz-Boot-Images. Die Auswahl von »tar« liefert "
-"einen nicht komprimierten Tarball, »bzip2« und »gzip« einen bzip2- bzw. "
-"gzip-gepackten Tarball. Die Auswahl von »none« führt zu gar keinem "
-"Tarball, das einfache Programmverzeichnis wird in diesem Fall als Ausgabe "
-"angesehen. Vorgabe ist »gzip«."
-
-# type: IP
-#: lh_config.en.1:362
-#, no-wrap
-msgid "-p|B<--packages-lists> I<FILE>"
-msgstr "-p|B<--packages-lists> I<DATEI>"
-
-# 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 ""
-"definiert, welche in »/usr/share/live-helper/lists« verfügbaren Listen "
-"benutzt werden sollen. Als Vorgabe ist dies auf »standard« gesetzt. "
-"Beachten Sie, dass Sie lokale Paketlisten aufführen müssen, falls Sie diese "
-"haben. Sie in »config/chroot_local-packageslists« einzufügen reicht nicht "
-"aus."
-
-# type: IP
-#: lh_config.en.1:364
-#, no-wrap
-msgid "B<--packages> I<PACKAGE>|I<\"PACKAGES\">"
-msgstr "B<--packages> I<PAKET>|I<\"PAKETE\">"
-
-# 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 ""
-"definiert ein oder mehrere Pakete, die im Live-System installiert werden. "
-"Dies ist eine schneller und geeigneter Platz, um wenige Pakete beim "
-"Erstellen des Images hinzuzufügen (begrenzt durch die maximale Länge der "
-"Shell). Pakete, die permanent installiert sein sollen, sollen in eine "
-"lokale Paketliste eingetragen werden."
-
-# type: IP
-#: lh_config.en.1:366
-#, no-wrap
-msgid "B<--root-command> sudo"
-msgstr "B<--root-command> sudo"
-
-# 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 ""
-"steuert, ob Live-Helper intern Sudo benutzen soll, um das Live-Image zu "
-"erstellen. Beachten Sie, dass das nicht gut getestet ist und wenn Sie sich "
-"auf Sudo verlassen, sollten Sie den individuellen Live-Helper-Befehl selbst "
-"mit Sudo aufrufen."
-
-# type: IP
-#: lh_config.en.1:368
-#, no-wrap
-msgid "B<--use-fakeroot> enabled|disabled"
-msgstr "B<--use-fakeroot> enabled|disabled"
-
-# type: IP
-#: lh_config.en.1:370
-#, no-wrap
-msgid "B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">"
-msgstr "B<--archive-areas> I<KATEGORIE>|I<\"KATEGORIEN\">"
-
-# 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 ""
-"definiert, welche Paket-Kategorien eines Debian-Paketarchives benutzt "
-"werden sollen, um Debian-Paketspiegel zu konfigurieren. Standardmäßig ist "
-"dies auf »main« gesetzt. Vergessen Sie nicht, die Lizenzen von jedem "
-"Paket zu prüfen, um seine Weiterverteilbarkeit in Ihrem Rechtsraum zu "
-"respektieren, wenn Sie mit diesem Mechanismus »contrib« oder »non-free« "
-"einschalten."
-
-# type: IP
-#: lh_config.en.1:372
-#, no-wrap
-msgid "B<--security> enabled|disabled"
-msgstr "B<--security> enabled|disabled"
-
-# 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 ""
-"definiert, ob die in den Sicherheitsspiegeloptionen angegebenen "
-"Sicherheitspaketdepots benutzt werden sollen oder nicht."
-
-# type: IP
-#: lh_config.en.1:374
-#, no-wrap
-msgid "B<--source> enabled|disabled"
-msgstr "B<--source> enabled|disabled"
-
-# 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 ""
-"definiert, ob ein entsprechendes Quell-Image zum Programm-Image erstellt "
-"werden soll. Standardmäßig ist dies ausgeschaltet, weil die meisten Leute "
-"dies nicht benötigen und recht viele Quellpakete heruntergeladen werden "
-"müssten. Wenn Sie jedoch beginnen Ihr Live-Image zu verteilen, sollten Sie "
-"sicherstellen, dass Sie auch ein zugehöriges Quell-Image erstellen."
-
-# type: IP
-#: lh_config.en.1:376
-#, no-wrap
-msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
-msgstr "-s|B<--source-images> iso|net|tar|usb-hdd"
-
-# type: Plain text
-#: lh_config.en.1:378
-msgid "defines the image type for the source image. Default is tar."
-msgstr "definiert den Image-Typ für das Quell-Image. Vorgabe ist »tar«."
-
-# type: IP
-#: lh_config.en.1:378
-#, no-wrap
-msgid "B<--symlinks> enabled|disabled"
-msgstr "B<--symlinks> enabled|disabled"
-
-# 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 ""
-"definiert, ob der symbolische Verweis-Hack ein- oder ausgeschaltet sein "
-"soll. Der symbolische Verweis-Hack wandelt alle absoluten symbolischen "
-"Verweise in relative um. Standardmäßig ist dies ausgeschaltet und im "
-"Allgemeinen ist dafür kein Bedarf oder ein Vorteil, es einzuschalten. "
-"Wenn Sie in einer besonderen Situation sind, in der Sie es benötigen, "
-"werden Sie es wissen."
-
-# type: IP
-#: lh_config.en.1:380
-#, no-wrap
-msgid "B<--syslinux-splash> I<FILE>"
-msgstr "B<--syslinux-splash> I<DATEI>"
-
-# 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 ""
-"definiert die Datei der Syslinux-Begrüßungsgrafik, die anstatt der "
-"Vorgabe benutzt werden soll."
-
-# type: IP
-#: lh_config.en.1:382
-#, no-wrap
-msgid "B<--syslinux-timeout> I<SECONDS>"
-msgstr "B<--syslinux-timeout> I<SEKUNDEN>"
-
-# 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 ""
-"definiert die Zeitüberschreitung, die der Syslinux-Boot-Loader an der "
-"Eingabeaufforderung warten soll, bevor er den Standard-Kernel bootet. "
-"Vorgabe ist 0, was bedeutet, dass er ewig wartet."
-
-# type: IP
-#: lh_config.en.1:384
-#, no-wrap
-msgid "B<--syslinux-menu> enabled|disabled"
-msgstr "B<--syslinux-menu> enabled|disabled"
-
-# type: Plain text
-#: lh_config.en.1:386
-msgid ""
-"defines if syslinux should be make use of the vgamenu capabilities or not."
-msgstr ""
-"definiert, ob Syslinux von den Möglichkeiten von Vgamenu Gebrauch machen "
-"soll oder nicht."
-
-# type: IP
-#: lh_config.en.1:386
-#, no-wrap
-msgid "B<--sysvinit> enabled|disabled"
-msgstr "B<--sysvinit> enabled|disabled"
-
-# 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 ""
-"definiert, ob der Sysvinit-Hack ein- oder ausgeschaltet sein soll. Der "
-"Sysvinit-Hack schaltet das Starten aller nicht essentiellen Dienste beim "
-"hochbooten aus, um die gesamte Boot-Zeit zu verkürzen. Standardmäßig ist "
-"dies ausgeschaltet und normalerweise wollen Sie es nicht einschalten."
-
-# type: IP
-#: lh_config.en.1:388
-#, no-wrap
-msgid "B<--tasksel> aptitude|tasksel"
-msgstr "B<--tasksel> aptitude|tasksel"
-
-# 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 ""
-"wählt aus, welches Programm benutzt wird, um Programmgruppen zu "
-"installieren. Standardmäßig ist dies auf »tasksel« gesetzt."
-
-# type: IP
-#: lh_config.en.1:390
-#, no-wrap
-msgid "B<--tasks> I<TASK>"
-msgstr "B<--tasks> I<PROGRAMMGRUPPE>"
-
-# 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 ""
-"definiert eine oder mehrerer Paket-Programmgruppen, die im Live-System "
-"installiert werden. Dies ist ein schneller und geeigneter Weg, um beim "
-"Erstellen des Images eine vernünftige Vorauswahl von Paketen zu erhalten, "
-"die für die meisten Anwender geeignet ist, aber es resultiert in ziemlich "
-"großen Images. Wenn Sie eine granularere Paketauswahl haben wollen, "
-"sollten Sie stattdessen lokale Paketlisten benutzen."
-
-# type: IP
-#: lh_config.en.1:392
-#, no-wrap
-msgid "B<--templates> I<PATH>"
-msgstr "B<--templates> I<PFAD>"
-
-# 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 ""
-"setzt den Pfad zu den Schablonen, die Live-Helper benutzen wird, z.B für "
-"Boot-Loader. Standardmäßig ist er auf »/usr/share/live-helper/templates/« "
-"gesetzt."
-
-# type: IP
-#: lh_config.en.1:394
-#, no-wrap
-msgid "B<--union-filesystem> aufs|unionfs"
-msgstr "B<--union-filesystem> aufs|unionfs"
-
-# 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 ""
-"definiert, ob UnionFS oder Aufs als stapelbares einheitliches Dateisystem "
-"benutzt wird. Wenn Etch-Images erstellt werden, ist die Vorgabe »unionfs« "
-"ansonsten »aufs«."
-
-# type: IP
-#: lh_config.en.1:396
-#, no-wrap
-msgid "B<--virtual-root-filesystem> ext3"
-msgstr "B<--virtual-root-filesystem> ext3"
-
-# type: Plain text
-#: lh_config.en.1:398
-msgid ""
-"defines what filesystem to format the root filesystem when building virtual-"
-"hdd images."
-msgstr ""
-"definiert, mit welchem Dateisystem das Wurzeldateisystems formatiert wird, "
-"wenn virtuelle HDD-Images erstellt werden."
-
-# type: IP
-#: lh_config.en.1:398
-#, no-wrap
-msgid "B<--virtual-root-size> MB"
-msgstr "B<--virtual-root-size> MB"
-
-# 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 ""
-"definiert, welche Größe das virtuelle HDD-Image haben soll. Beachten Sie, "
-"dass Sie keine 10GB Platz auf Ihrer Festplatte benötigen, obwohl die "
-"Vorgabe auf 10000 (=10 GB) gesetzt ist, da die Dateien als sehr kompakt "
-"speicherbar erzeugt werden."
-
-# type: IP
-#: lh_config.en.1:400
-#, no-wrap
-msgid "B<--exposed-root> enabled|disabled"
-msgstr "B<--exposed-root> enabled|disabled"
-
-# type: IP
-#: lh_config.en.1:402
-#, no-wrap
-msgid "B<--username> I<NAME>"
-msgstr "B<--username> I<NAME>"
-
-# type: Plain text
-#: lh_config.en.1:404
-msgid "sets the name of the account of the default user in the live system."
-msgstr "setzt den Namen des Standardbenutzerkontos im Live-System."
-
-# type: IP
-#: lh_config.en.1:404
-#, no-wrap
-msgid "B<--win32-loader enabled|disabled>"
-msgstr "B<--win32-loader enabled|disabled>"
-
-# type: Plain text
-#: lh_config.en.1:406
-msgid "defines if win32-loader should be included in the binary image or not."
-msgstr ""
-"definiert, ob der Win32-Loader im Programm-Image enthalten sein soll oder "
-"nicht."
-
-# type: SH
-#: lh_config.en.1:407
-#, no-wrap
-msgid "ENVIRONMENT"
-msgstr "UMGEBUNG"
-
-# 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 ""
-"Alle Befehlszeilenschalter können außerdem über die entsprechende "
-"Umgebungsvariable angegeben werden. Umgebungsvariablen haben die Form "
-"LH_FOO, was bedeutet, dass z.B »apt-ftp-proxy« zu »LH_APT_FTP_PROXY« "
-"wird. Dies sollte jedoch generell nicht benutzt werden."
-
-# type: SH
-#: lh_config.en.1:410
-#, no-wrap
-msgid "FILES"
-msgstr "DATEIEN"
-
-# type: Plain text
-#: lh_config.en.1:412
-msgid "I</etc/default/live-helper>"
-msgstr "I</etc/default/live-helper>"
-
-# 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 ""
-"Eine optionale globale Konfigurationsdatei für Lh_config-Variablen. Es "
-"ist nützlich, wenige systemweite Vorgaben anzugeben, wie "
-"LH_MIRROR_BOOTSTRAP. Diese Funktion kann durch Angabe von der Option "
-"B<--ignore-system-defaults> ausgeschaltet werden."
diff --git a/manpages/old/de/live-helper.7.po b/manpages/old/de/live-helper.7.po
deleted file mode 100644
index b726aad..0000000
--- a/manpages/old/de/live-helper.7.po
+++ /dev/null
@@ -1,1402 +0,0 @@
-# German translation for live-helper package
-# Copyright (C) 2007 Daniel Baumann <daniel at debian.org>.
-# This file is distributed under the same license as the
-# live-helper package.
-# Chris Leick <c.leick at vollbio.de>, 2009.
-# file: live-helper.de.1.po
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: live-helper 1.0.5\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2009-07-07 22:05+0100\n"
-"Last-Translator: Chris Leick <c.leick at vollbio.de>\n"
-"Language-Team: German <debian-l10n-german at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-
-# type: TH
-#: lh_binary.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 "Live-Helper"
-
-# 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 "NAME"
-
-# 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 "ÜBERSICHT"
-
-# 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 "BESCHREIBUNG"
-
-# 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 "OPTIONEN"
-
-# 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 "SIEHE AUCH"
-
-# 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 "HOMEPAGE"
-
-# 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 ""
-"Weitere Informationen über Live-Helper und das Debian-Live-Projekt können "
-"auf der Homepage E<lt>I<http://debian-live.alioth.debian.org/>E<gt> und "
-"im Handbuch unter E<lt>I<http://live.debian.net/manual/>E<gt> gefunden "
-"werden."
-
-# 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 "FEHLER"
-
-# 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 at lists.debian.org>E<gt>."
-msgstr ""
-"Berichten Sie Fehler, indem Sie einen Fehlerbericht im Live-Helper-Paket "
-"an die Debian-Fehlerdatenbank unter E<lt>I<http://bugs.debian.org/>E<gt> "
-"einreichen oder schreiben Sie eine englischsprachige E-Mail an die "
-"Mailingliste E<lt>I<debian-live at lists.debian.org>E<gt>."
-
-# 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 "AUTOR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"Live-Helper wurde von Daniel Baumann E<lt>I<daniel at debian.org>E<gt> für "
-"das Debian-Projekt geschrieben."
-
-# type: TH
-#: live-helper.en.7:1
-#, no-wrap
-msgid "LIVE-HELPER"
-msgstr "LIVE-HELPER"
-
-# type: TH
-#: live-helper.en.7:1
-#, no-wrap
-msgid "2009-01-23"
-msgstr "2009-01-23"
-
-# type: TH
-#: live-helper.en.7:1
-#, no-wrap
-msgid "1.0.2"
-msgstr "1.0.2"
-
-# type: Plain text
-#: live-helper.en.7:5
-msgid "live-helper - the Debian Live tool suite"
-msgstr "Live-Helper - die Debian-Live-Werkzeugsammlung"
-
-# 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 ""
-"B<lh >I<BEFEHL> [B<-h|--help>] [B<-u|--usage>] [B<-v|--version>] [B<--"
-"breakpoints>] [B<--conffile>] [B<--debug>] [B<--force>] [B<--quiet>] [B<--"
-"verbose>]"
-
-# type: Plain text
-#: live-helper.en.7:10
-msgid "or"
-msgstr "oder"
-
-# 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 ""
-"B<lh_>I<BEFEHL> [B<-h|--help>] [B<-u|--usage>] [B<-v|--version>] [B<--"
-"breakpoints>] [B<--conffile>] [B<--debug>] [B<--force>] [B<--quiet>] [B<--"
-"verbose>]"
-
-# 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 ""
-"Live-Helper ist ein Satz von Skripten zur Erstellung von "
-"Debian-Live-System-Images. Die Idee hinter Live-Helper ist ein Gerüst, "
-"das ein Konfigurationsverzeichnis benutzt, um alle Gesichtspunkte der "
-"Erstellung eines Live-Images komplett zu automatisieren und anzupassen."
-
-# type: Plain text
-#: live-helper.en.7:17
-msgid "The I<COMMAND> is a name of a live-helper command (see below)."
-msgstr "Der I<BEFEHL> ist ein Name eines Live-Helper-Befehls (siehe unten)."
-
-# 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 ""
-"Weitere Dokumentation, wie Live-Helper benutzt wird, ist in den "
-"individuellen Handbuchseiten für jedes Hilfsprogramm und im Handbuch auf "
-"E<lt>I<http://live.debian.net/manual/>E<gt> verfügbar."
-
-# type: SS
-#: live-helper.en.7:21
-#, no-wrap
-msgid "Shared live-helper options"
-msgstr ""
-"Optionen für alle Live-Helper-Skripte"
-
-# type: Plain text
-#: live-helper.en.7:23
-msgid ""
-"The following command line options are supported by all live-helper programs."
-msgstr ""
-"Die folgenden Befehlszeilenoptionen werden von allen "
-"Live-Helper-Programmen unterstützt."
-
-# type: IP
-#: live-helper.en.7:23
-#, no-wrap
-msgid "B<-h, --help>"
-msgstr "B<-h, --help>"
-
-# type: Plain text
-#: live-helper.en.7:25
-msgid "display help and exit."
-msgstr "Hilfe anzeigen und beenden."
-
-# type: IP
-#: live-helper.en.7:25
-#, no-wrap
-msgid "B<-u, --usage>"
-msgstr "B<-u, --usage>"
-
-# type: Plain text
-#: live-helper.en.7:27
-msgid "show usage and exit."
-msgstr "Aufruf anzeigen und beenden."
-
-# type: IP
-#: live-helper.en.7:27
-#, no-wrap
-msgid "B<-v, --version>"
-msgstr "B<-v, --version>"
-
-# type: Plain text
-#: live-helper.en.7:29
-msgid "output version information and exit."
-msgstr "Versionsinformationen ausgeben und beenden."
-
-# type: SS
-#: live-helper.en.7:29
-#, no-wrap
-msgid "Common live-helper options"
-msgstr "Übliche Live-Helper-Optionen"
-
-# 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 ""
-"Die folgenden Befehlszeilenoptionen werden von den meisten "
-"Live-Helper-Programmen unterstützt. Lesen Sie die Handbuchseite jedes "
-"Programms, um eine vollständige Erklärung zu erhalten, was jede Option "
-"tut."
-
-# type: IP
-#: live-helper.en.7:31
-#, no-wrap
-msgid "B<--breakpoints>"
-msgstr "B<--breakpoints>"
-
-# type: Plain text
-#: live-helper.en.7:33
-msgid "run with breakpoints."
-msgstr "mit Haltepunkten ausführen."
-
-# type: IP
-#: live-helper.en.7:33
-#, no-wrap
-msgid "B<--conffile>"
-msgstr "B<--conffile>"
-
-# type: Plain text
-#: live-helper.en.7:35
-msgid "use custom configuration file."
-msgstr "benutzerangepasste Konfigurationsdatei benutzen."
-
-# type: IP
-#: live-helper.en.7:35
-#, no-wrap
-msgid "B<--debug>"
-msgstr "B<--debug>"
-
-# type: Plain text
-#: live-helper.en.7:37
-msgid "show debug information."
-msgstr "Informationen zur Fehlersuche anzeigen."
-
-# type: IP
-#: live-helper.en.7:37
-#, no-wrap
-msgid "B<--force>"
-msgstr "B<--force>"
-
-# type: Plain text
-#: live-helper.en.7:39
-msgid "force helper execution, even if stage file exists."
-msgstr ""
-"Hilfsprogrammausführung erzwingen, unabhängig von der Existenz der Datei "
-"dieser Stufe."
-
-# type: IP
-#: live-helper.en.7:39
-#, no-wrap
-msgid "B<--quiet>"
-msgstr "B<--quiet>"
-
-# type: Plain text
-#: live-helper.en.7:41
-msgid "be quiet."
-msgstr "still sein."
-
-# type: IP
-#: live-helper.en.7:41
-#, no-wrap
-msgid "B<--verbose>"
-msgstr "B<--verbose>"
-
-# type: Plain text
-#: live-helper.en.7:43
-msgid "be verbose."
-msgstr "gesprächig sein."
-
-# 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 ""
-"Wenn ein Programmname mit »lh« beginnt und das Programm nicht auf der "
-"Liste unten steht, dann ist es nicht Teil des Live-Helper-Paketes, sollte "
-"aber trotzdem wie die anderen auf dieser Seite beschriebenen Programme "
-"funktionieren."
-
-# type: SH
-#: live-helper.en.7:46
-#, no-wrap
-msgid "LIVE-HELPER COMMANDS"
-msgstr "LIVE-HELPER-BEFEHLE"
-
-# type: Plain text
-#: live-helper.en.7:48
-msgid ""
-"We divide live-helper into high level (\"porcelain\") commands and low level "
-"(\"plumbing\") commands."
-msgstr ""
-"Wir unterteilen Live-Helper in Befehle hoher Stufe »Porzellan« "
-"(»porcelain«) und niedriger Stufe »Klempnerei« (»plumbing«)."
-
-# 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 ""
-"Hier ist eine vollständige Liste von allen verfügbaren "
-"Live-Helper-Befehlen. Lesen Sie deren Handbuchseiten, um zusätzliche "
-"Dokumentation zu erhalten."
-
-# type: SH
-#: live-helper.en.7:52
-#, no-wrap
-msgid "HIGH-LEVEL COMMANDS (PORCELAIN)"
-msgstr "BEFEHLE HOHER STUFE (PORZELLAN)"
-
-# type: Plain text
-#: live-helper.en.7:54
-msgid ""
-"We separate the porcelain commands into the main commands and some ancillary "
-"user utilities."
-msgstr ""
-"Wir trennen die Porzellanbefehle in Hauptbefehle und einige ergänzende "
-"Benutzerdienstprogramme."
-
-# type: SS
-#: live-helper.en.7:54
-#, no-wrap
-msgid "Main porcelain commands"
-msgstr "Hauptporzellanbefehle"
-
-# type: IP
-#: live-helper.en.7:55
-#, no-wrap
-msgid "B<lh_config>(1)"
-msgstr "B<lh_config>(1)"
-
-# type: Plain text
-#: live-helper.en.7:57
-msgid "create configuration for live-helper"
-msgstr "Konfiguration für Live-Helper erstellen"
-
-# type: IP
-#: live-helper.en.7:57
-#, no-wrap
-msgid "B<lh_bootstrap>(1)"
-msgstr "B<lh_bootstrap>(1)"
-
-# type: Plain text
-#: live-helper.en.7:59
-msgid "create the first stage by bootstrapping a basic debian system"
-msgstr ""
-"die erste Stufe durch Boot-Einrichtung eines Debian-Basissystems "
-"erstellen"
-
-# type: IP
-#: live-helper.en.7:59
-#, no-wrap
-msgid "B<lh_chroot>(1)"
-msgstr "B<lh_chroot>(1)"
-
-# type: Plain text
-#: live-helper.en.7:61
-msgid "create the second stage by customizing the chroot"
-msgstr "die zweite Stufe durch Anpassen der Chroot erstellen"
-
-# type: IP
-#: live-helper.en.7:61
-#, no-wrap
-msgid "B<lh_binary>(1)"
-msgstr "B<lh_binary>(1)"
-
-# type: Plain text
-#: live-helper.en.7:63
-msgid "create the third stage by generating a binary image"
-msgstr "die dritte Stufe durch Generieren des Programm-Images erstellen"
-
-# type: IP
-#: live-helper.en.7:63
-#, no-wrap
-msgid "B<lh_source>(1)"
-msgstr "B<lh_source>(1)"
-
-# type: Plain text
-#: live-helper.en.7:65
-msgid "create the optional fourth stage by generating a source image"
-msgstr ""
-"die optionale vierte Stufe durch Generieren eines Quell-Images "
-"erstellen"
-
-# type: IP
-#: live-helper.en.7:65
-#, no-wrap
-msgid "B<lh_clean>(1)"
-msgstr "B<lh_clean>(1)"
-
-# type: Plain text
-#: live-helper.en.7:67
-msgid "clean up system build directories"
-msgstr "die Systemerstellungsverzeichnisse aufräumen"
-
-# type: SS
-#: live-helper.en.7:67
-#, no-wrap
-msgid "Ancillary Commands"
-msgstr "Ergänzende Befehle"
-
-# type: IP
-#: live-helper.en.7:68
-#, no-wrap
-msgid "B<lh>(1)"
-msgstr "B<lh>(1)"
-
-# type: Plain text
-#: live-helper.en.7:70
-msgid "generic live-helper wrapper"
-msgstr "typischer Live-Helper-Adapter"
-
-# type: IP
-#: live-helper.en.7:70
-#, no-wrap
-msgid "B<lh_build>(1)"
-msgstr "B<lh_build>(1)"
-
-# type: Plain text
-#: live-helper.en.7:72
-msgid "alias for all stages"
-msgstr "Alias für alle Stufen"
-
-# type: IP
-#: live-helper.en.7:72
-#, no-wrap
-msgid "B<lh_local>(1)"
-msgstr "B<lh_local>(1)"
-
-# type: Plain text
-#: live-helper.en.7:74
-msgid "helper for using a local live-helper"
-msgstr "Hilfsprogramm zum Benutzen eines lokalen Live-Helpers"
-
-# type: IP
-#: live-helper.en.7:74
-#, no-wrap
-msgid "B<lh_testroot>(1)"
-msgstr "B<lh_testroot>(1)"
-
-# type: Plain text
-#: live-helper.en.7:76
-msgid "ensure that a system is built as root"
-msgstr "sicherstellen, dass ein System als root erstellt wird"
-
-# type: SH
-#: live-helper.en.7:77
-#, no-wrap
-msgid "LOW-LEVEL COMMANDS (PLUMBING)"
-msgstr "BEFEHLE NIEDRIGER STUFE (KLEMPNEREI)"
-
-# 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 ""
-"Die eigentliche Arbeit von Live-Helper ist in Befehl niedriger Stufe, "
-"Klempnerei (plumbing) genannt, implementiert. Sie sind nicht dazu "
-"gedacht, von Endanwendern benutzt zu werden. Sie sollten mit den "
-"Porzellan-Befehlen arbeiten, um sicherzustellen, dass alle verschiedenen "
-"Klempnereibefehle in der richtigen Reihenfolge ausgeführt werden. Wenn "
-"Sie jedoch beabsichtigen, Live-Helper-Befehle in Ihren eigenen Skripten "
-"wiederzubenutzen, könnten die Klempnereien für Sie von Interesse sein."
-
-# 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 ""
-"Beachten Sie, dass die Schnittstelle (Satz von Optionen und Semantiken) "
-"zu diesen Befehlen niedriger Stufe viel stabiler als die "
-"Porzellanstufenbefehle geplant sind. Die Schnittstelle zu "
-"Porzellanbefehlen andererseits unterliegen Änderungen, um die "
-"Endanwendererfahrung zu verbessern."
-
-# type: SS
-#: live-helper.en.7:81
-#, no-wrap
-msgid "Bootstrap commands"
-msgstr "Boot-Einrichtungsbefehle"
-
-# type: IP
-#: live-helper.en.7:82
-#, no-wrap
-msgid "B<lh_bootstrap_cache>(1)"
-msgstr "B<lh_bootstrap_cache>(1)"
-
-# type: Plain text
-#: live-helper.en.7:84
-msgid "cache bootstrap stage"
-msgstr "Boot-Einrichtungsstufe zwischenspeichern"
-
-# type: IP
-#: live-helper.en.7:84
-#, no-wrap
-msgid "B<lh_bootstrap_cdebootstrap>(1)"
-msgstr "B<lh_bootstrap_cdebootstrap>(1)"
-
-# type: Plain text
-#: live-helper.en.7:86
-msgid "bootstrap a Debian system with cdebootstrap(1)"
-msgstr "Boot-Einrichtung eines Debian-Systems mit cdebootstrap(1)"
-
-# type: IP
-#: live-helper.en.7:86
-#, no-wrap
-msgid "B<lh_bootstrap_copy>(1)"
-msgstr "B<lh_bootstrap_copy>(1)"
-
-# type: Plain text
-#: live-helper.en.7:88
-msgid "bootstrap by copying the host system"
-msgstr "Boot-Einrichtung durch Kopieren des Host-Systems"
-
-# type: IP
-#: live-helper.en.7:88
-#, no-wrap
-msgid "B<lh_bootstrap_debootstrap>(1)"
-msgstr "B<lh_bootstrap_debootstrap>(1)"
-
-# type: Plain text
-#: live-helper.en.7:90
-msgid "bootstrap a Debian system with debootstrap(8)"
-msgstr "Boot-Einrichtung eines Debian-Systems mit debootstrap(8)"
-
-# type: SS
-#: live-helper.en.7:90
-#, no-wrap
-msgid "Chroot commands"
-msgstr "Chroot-Befehle"
-
-# type: IP
-#: live-helper.en.7:91
-#, no-wrap
-msgid "B<lh_chroot_apt>(1)"
-msgstr "B<lh_chroot_apt>(1)"
-
-# type: Plain text
-#: live-helper.en.7:93
-msgid "manage /etc/apt/apt.conf"
-msgstr "/etc/apt/apt.conf verwalten"
-
-# type: IP
-#: live-helper.en.7:93
-#, no-wrap
-msgid "B<lh_chroot_cache>(1)"
-msgstr "B<lh_chroot_cache>(1)"
-
-# type: Plain text
-#: live-helper.en.7:95
-msgid "cache chroot stage"
-msgstr "Chroot-Stufe zwischenspeichern"
-
-# type: IP
-#: live-helper.en.7:95
-#, no-wrap
-msgid "B<lh_chroot_debianchroot>(1)"
-msgstr "B<lh_chroot_debianchroot>(1)"
-
-# type: Plain text
-#: live-helper.en.7:97
-msgid "manage /etc/debian_chroot"
-msgstr "/etc/debian_chroot verwalten"
-
-# type: IP
-#: live-helper.en.7:97
-#, no-wrap
-msgid "B<lh_chroot_devpts>(1)"
-msgstr "B<lh_chroot_devpts>(1)"
-
-# type: Plain text
-#: live-helper.en.7:99
-msgid "mount /dev/pts"
-msgstr "/dev/pts einhängen"
-
-# type: IP
-#: live-helper.en.7:99
-#, no-wrap
-msgid "B<lh_chroot_dpkg>(1)"
-msgstr "B<lh_chroot_dpkg>(1)"
-
-# type: Plain text
-#: live-helper.en.7:101
-msgid "manage /sbin/dpkg"
-msgstr "/sbin/dpkg verwalten"
-
-# type: IP
-#: live-helper.en.7:101
-#, no-wrap
-msgid "B<lh_chroot_hacks>(1)"
-msgstr "B<lh_chroot_hacks>(1)"
-
-# type: Plain text
-#: live-helper.en.7:103
-msgid "execute hacks in chroot"
-msgstr "Hacks in Chroot ausführen"
-
-# type: IP
-#: live-helper.en.7:103
-#, no-wrap
-msgid "B<lh_chroot_hooks>(1)"
-msgstr "B<lh_chroot_hooks>(1)"
-
-# type: Plain text
-#: live-helper.en.7:105
-msgid "execute hooks in chroot"
-msgstr "Hooks in Chroot ausführen"
-
-# type: IP
-#: live-helper.en.7:105
-#, no-wrap
-msgid "B<lh_chroot_hostname>(1)"
-msgstr "B<lh_chroot_hostname>(1)"
-
-# type: Plain text
-#: live-helper.en.7:107
-msgid "manage /bin/hostname"
-msgstr "/bin/hostname verwalten"
-
-# type: IP
-#: live-helper.en.7:107
-#, no-wrap
-msgid "B<lh_chroot_hosts>(1)"
-msgstr "B<lh_chroot_hosts>(1)"
-
-# type: Plain text
-#: live-helper.en.7:109
-msgid "manage /etc/hosts"
-msgstr "/etc/hosts verwalten"
-
-# type: IP
-#: live-helper.en.7:109
-#, no-wrap
-msgid "B<lh_chroot_install-packages>(1)"
-msgstr "B<lh_chroot_install-packages>(1)"
-
-# type: Plain text
-#: live-helper.en.7:111
-msgid "install queued packages into chroot"
-msgstr "vorgemerkte Pakete in Chroot installieren"
-
-# type: IP
-#: live-helper.en.7:111
-#, no-wrap
-msgid "B<lh_chroot_interactive>(1)"
-msgstr "B<lh_chroot_interactive>(1)"
-
-# type: Plain text
-#: live-helper.en.7:113
-msgid "make build interactive"
-msgstr "Erstellung interaktiv machen"
-
-# type: IP
-#: live-helper.en.7:113
-#, no-wrap
-msgid "B<lh_chroot_linux-image>(1)"
-msgstr "B<lh_chroot_linux-image>(1)"
-
-# type: Plain text
-#: live-helper.en.7:115
-msgid "manage /etc/kernel-img.conf"
-msgstr "/etc/kernel-img.conf verwalten"
-
-# type: IP
-#: live-helper.en.7:115
-#, no-wrap
-msgid "B<lh_chroot_local-hooks>(1)"
-msgstr "B<lh_chroot_local-hooks>(1)"
-
-# type: Plain text
-#: live-helper.en.7:117
-msgid "execute local hooks in chroot"
-msgstr "lokale Hooks in Chroot ausführen"
-
-# type: IP
-#: live-helper.en.7:117
-#, no-wrap
-msgid "B<lh_chroot_local-includes>(1)"
-msgstr "B<lh_chroot_local-includes>(1)"
-
-# type: Plain text
-#: live-helper.en.7:119
-msgid "copy local files into chroot"
-msgstr "lokale Dateien in Chroot kopieren"
-
-# type: IP
-#: live-helper.en.7:119
-#, no-wrap
-msgid "B<lh_chroot_localization>(1)"
-msgstr "B<lh_chroot_localization>(1)"
-
-# type: Plain text
-#: live-helper.en.7:121
-msgid "install localization packages into chroot"
-msgstr "Lokalisierungspakete in Chroot installieren"
-
-# type: IP
-#: live-helper.en.7:121
-#, no-wrap
-msgid "B<lh_chroot_local-packages>(1)"
-msgstr "B<lh_chroot_local-packages>(1)"
-
-# type: Plain text
-#: live-helper.en.7:123
-msgid "queue install of local packages into chroot"
-msgstr "Installation von lokalen Paketen in Chroot einreihen"
-
-# type: IP
-#: live-helper.en.7:123
-#, no-wrap
-msgid "B<lh_chroot_local-patches>(1)"
-msgstr "B<lh_chroot_local-patches>(1)"
-
-# type: Plain text
-#: live-helper.en.7:125
-msgid "apply local patches against chroot"
-msgstr "lokale Patches auf Chroot anwenden"
-
-# type: IP
-#: live-helper.en.7:125
-#, no-wrap
-msgid "B<lh_chroot_local-preseed>(1)"
-msgstr "B<lh_chroot_local-preseed>(1)"
-
-# type: Plain text
-#: live-helper.en.7:127
-msgid "use debconf local preseeding file"
-msgstr "lokale Debconf-Voreinstellungsdatei benutzen"
-
-# type: IP
-#: live-helper.en.7:127
-#, no-wrap
-msgid "B<lh_chroot_packages>(1)"
-msgstr "B<lh_chroot_packages>(1)"
-
-# type: Plain text
-#: live-helper.en.7:129
-msgid "queue install of packages into chroot"
-msgstr "Installation von Paketen in Chroot einreihen"
-
-# type: IP
-#: live-helper.en.7:129
-#, no-wrap
-msgid "B<lh_chroot_packageslists>(1)"
-msgstr "B<lh_chroot_packageslists>(1)"
-
-# type: Plain text
-#: live-helper.en.7:131
-msgid "queue install of packages lists into chroot"
-msgstr "Installation von Paketlisten in Chroot einreihen"
-
-# type: IP
-#: live-helper.en.7:131
-#, no-wrap
-msgid "B<lh_chroot_preseed>(1)"
-msgstr "B<lh_chroot_preseed>(1)"
-
-# type: Plain text
-#: live-helper.en.7:133
-msgid "use debconf preseeding file"
-msgstr "Debconf-Voreinstellungsdatei benutzen"
-
-# type: IP
-#: live-helper.en.7:133
-#, no-wrap
-msgid "B<lh_chroot_proc>(1)"
-msgstr "B<lh_chroot_proc>(1)"
-
-# type: Plain text
-#: live-helper.en.7:135
-msgid "mount /proc"
-msgstr "/proc einhängen"
-
-# type: IP
-#: live-helper.en.7:135
-#, no-wrap
-msgid "B<lh_chroot_resolv>(1)"
-msgstr "B<lh_chroot_resolv>(1)"
-
-# type: Plain text
-#: live-helper.en.7:137
-msgid "manage /etc/resolv.conf"
-msgstr "/etc/resolv.conf verwalten"
-
-# type: IP
-#: live-helper.en.7:137
-#, no-wrap
-msgid "B<lh_chroot_selinuxfs>(1)"
-msgstr "B<lh_chroot_selinuxfs>(1)"
-
-# type: Plain text
-#: live-helper.en.7:139
-msgid "mount /selinux"
-msgstr "/selinux einhängen"
-
-# type: IP
-#: live-helper.en.7:139
-#, no-wrap
-msgid "B<lh_chroot_sources>(1)"
-msgstr "B<lh_chroot_sources>(1)"
-
-# type: Plain text
-#: live-helper.en.7:141
-msgid "manage /etc/apt/sources.list"
-msgstr "/etc/apt/sources.list verwalten"
-
-# type: IP
-#: live-helper.en.7:141
-#, no-wrap
-msgid "B<lh_chroot_symlinks>(1)"
-msgstr "B<lh_chroot_symlinks>(1)"
-
-# type: Plain text
-#: live-helper.en.7:143
-msgid "convert symlinks"
-msgstr "symbolische Verweise konvertieren"
-
-# type: IP
-#: live-helper.en.7:143
-#, no-wrap
-msgid "B<lh_chroot_sysfs>(1)"
-msgstr "B<lh_chroot_sysfs>(1)"
-
-# type: Plain text
-#: live-helper.en.7:145
-msgid "mount /sys"
-msgstr "/sys einhängen"
-
-# type: IP
-#: live-helper.en.7:145
-#, no-wrap
-msgid "B<lh_chroot_sysvinit>(1)"
-msgstr "B<lh_chroot_sysvinit>(1)"
-
-# type: Plain text
-#: live-helper.en.7:147
-msgid "configure sysvinit"
-msgstr "Sysvinit konfigurieren"
-
-# type: IP
-#: live-helper.en.7:147
-#, no-wrap
-msgid "B<lh_chroot_sysv-rc>(1)"
-msgstr "B<lh_chroot_sysv-rc>(1)"
-
-# type: Plain text
-#: live-helper.en.7:149
-msgid "manage /usr/sbin/policy-rc.d"
-msgstr "/usr/sbin/policy-rc.d verwalten"
-
-# type: IP
-#: live-helper.en.7:149
-#, no-wrap
-msgid "B<lh_chroot_tasks>(1)"
-msgstr "B<lh_chroot_tasks>(1)"
-
-# type: Plain text
-#: live-helper.en.7:151
-msgid "install tasks into chroot"
-msgstr "Programmgruppen in Chroot installieren"
-
-# type: SS
-#: live-helper.en.7:151
-#, no-wrap
-msgid "Binary commands"
-msgstr "Programmbefehle"
-
-# type: IP
-#: live-helper.en.7:152
-#, no-wrap
-msgid "B<lh_binary_chroot>(1)"
-msgstr "B<lh_binary_chroot>(1)"
-
-# type: Plain text
-#: live-helper.en.7:154
-msgid "copy chroot into chroot"
-msgstr "chroot in Chroot kopieren"
-
-# type: IP
-#: live-helper.en.7:154
-#, no-wrap
-msgid "B<lh_binary_debian-installer>(1)"
-msgstr "B<lh_binary_debian-installer>(1)"
-
-# type: Plain text
-#: live-helper.en.7:156
-msgid "install debian-installer into binary"
-msgstr "Debian-Installationsprogramm in Image installieren"
-
-# type: IP
-#: live-helper.en.7:156
-#, no-wrap
-msgid "B<lh_binary_disk>(1)"
-msgstr "B<lh_binary_disk>(1)"
-
-# type: Plain text
-#: live-helper.en.7:158
-msgid "install disk information into binary"
-msgstr "Platteninformationen in Image installieren"
-
-# type: IP
-#: live-helper.en.7:158
-#, no-wrap
-msgid "B<lh_binary_encryption>(1)"
-msgstr "B<lh_binary_encryption>(1)"
-
-# type: Plain text
-#: live-helper.en.7:160
-msgid "encrypts rootfs"
-msgstr "Rootfs verschlüsseln"
-
-# type: IP
-#: live-helper.en.7:160
-#, no-wrap
-msgid "B<lh_binary_grub>(1)"
-msgstr "B<lh_binary_grub>(1)"
-
-# type: Plain text
-#: live-helper.en.7:162
-msgid "installs grub into binary"
-msgstr "Grub in Image installieren"
-
-# type: IP
-#: live-helper.en.7:162
-#, no-wrap
-msgid "B<lh_binary_includes>(1)"
-msgstr "B<lh_binary_includes>(1)"
-
-# type: Plain text
-#: live-helper.en.7:164 live-helper.en.7:172
-msgid "copy files into binary"
-msgstr "Dateien in Image kopieren"
-
-# type: IP
-#: live-helper.en.7:164
-#, no-wrap
-msgid "B<lh_binary_iso>(1)"
-msgstr "B<lh_binary_iso>(1)"
-
-# type: Plain text
-#: live-helper.en.7:166
-msgid "build iso binary image"
-msgstr "Programm-ISO-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:166
-#, no-wrap
-msgid "B<lh_binary_linux-image>(1)"
-msgstr "B<lh_binary_linux-image>(1)"
-
-# type: Plain text
-#: live-helper.en.7:168
-msgid "install linux-image into binary"
-msgstr "Linux-Image in Image installieren"
-
-# type: IP
-#: live-helper.en.7:168
-#, no-wrap
-msgid "B<lh_binary_local-hooks>(1)"
-msgstr "B<lh_binary_local-hooks>(1)"
-
-# type: Plain text
-#: live-helper.en.7:170
-msgid "execute local hooks in binary"
-msgstr "lokale Hooks in Image ausführen"
-
-# type: IP
-#: live-helper.en.7:170
-#, no-wrap
-msgid "B<lh_binary_local-includes>(1)"
-msgstr "B<lh_binary_local-includes>(1)"
-
-# type: IP
-#: live-helper.en.7:172
-#, no-wrap
-msgid "B<lh_binary_local-packageslists>(1)"
-msgstr "B<lh_binary_local-packageslists>(1)"
-
-# type: Plain text
-#: live-helper.en.7:174
-msgid "install local packages lists into binary"
-msgstr "lokale Paketlisten in Image installieren"
-
-# type: IP
-#: live-helper.en.7:174
-#, no-wrap
-msgid "B<lh_binary_manifest>(1)"
-msgstr "B<lh_binary_manifest>(1)"
-
-# type: Plain text
-#: live-helper.en.7:176
-msgid "create manifest"
-msgstr "Manifest erstellen"
-
-# type: IP
-#: live-helper.en.7:176
-#, no-wrap
-msgid "B<lh_binary_md5sum>(1)"
-msgstr "B<lh_binary_md5sum>(1)"
-
-# type: Plain text
-#: live-helper.en.7:178
-msgid "create binary md5sums"
-msgstr "Programm-Md5sums erstellen"
-
-# type: IP
-#: live-helper.en.7:178
-#, no-wrap
-msgid "B<lh_binary_memtest>(1)"
-msgstr "B<lh_binary_memtest>(1)"
-
-# type: Plain text
-#: live-helper.en.7:180
-msgid "installs a memtest into binary"
-msgstr "einen Speichertest in Image installieren"
-
-# type: IP
-#: live-helper.en.7:180
-#, no-wrap
-msgid "B<lh_binary_net>(1)"
-msgstr "B<lh_binary_net>(1)"
-
-# type: Plain text
-#: live-helper.en.7:182
-msgid "build netboot binary image"
-msgstr "Netzwerk-Boot-Programm-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:182
-#, no-wrap
-msgid "B<lh_binary_rootfs>(1)"
-msgstr "B<lh_binary_rootfs>(1)"
-
-# type: Plain text
-#: live-helper.en.7:184
-msgid "build rootfs image"
-msgstr "Rootfs-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:184
-#, no-wrap
-msgid "B<lh_binary_silo>(1)"
-msgstr "B<lh_binary_silo>(1)"
-
-# type: Plain text
-#: live-helper.en.7:186
-msgid "installs silo into binary"
-msgstr "Silo in Image installieren"
-
-# type: IP
-#: live-helper.en.7:186
-#, no-wrap
-msgid "B<lh_binary_syslinux>(1)"
-msgstr "B<lh_binary_syslinux>(1)"
-
-# type: Plain text
-#: live-helper.en.7:188
-msgid "installs syslinux into binary"
-msgstr "Syslinux in Image installieren"
-
-# type: IP
-#: live-helper.en.7:188
-#, no-wrap
-msgid "B<lh_binary_tar>(1)"
-msgstr "B<lh_binary_tar>(1)"
-
-# type: Plain text
-#: live-helper.en.7:190
-msgid "build harddisk binary image"
-msgstr "Festplatten-Programm-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:190
-#, no-wrap
-msgid "B<lh_binary_usb-hdd>(1)"
-msgstr "B<lh_binary_usb-hdd>(1)"
-
-# type: Plain text
-#: live-helper.en.7:192
-msgid "build binary usb-hdd image"
-msgstr "USB-HDD-Programm-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:192
-#, no-wrap
-msgid "B<lh_binary_virtual-hdd>(1)"
-msgstr "B<lh_binary_virtual-hdd>(1)"
-
-# type: Plain text
-#: live-helper.en.7:194
-msgid "build binary virtual-hdd image"
-msgstr "virtuelles HDD-Programm-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:194
-#, no-wrap
-msgid "B<lh_binary_win32-loader>(1)"
-msgstr "B<lh_binary_win32-loader>(1)"
-
-# type: Plain text
-#: live-helper.en.7:196
-msgid "installs win32-loader into binary"
-msgstr "Win32-Lader in Image installieren"
-
-# type: IP
-#: live-helper.en.7:196
-#, no-wrap
-msgid "B<lh_binary_yaboot>(1)"
-msgstr "B<lh_binary_yaboot>(1)"
-
-# type: Plain text
-#: live-helper.en.7:198
-msgid "installs yaboot into binary"
-msgstr "Yaboot in Image installieren"
-
-# type: SS
-#: live-helper.en.7:198
-#, no-wrap
-msgid "Source commands"
-msgstr "Quellbefehle"
-
-# type: IP
-#: live-helper.en.7:199
-#, no-wrap
-msgid "B<lh_source_debian>(1)"
-msgstr "B<lh_source_debian>(1)"
-
-# type: Plain text
-#: live-helper.en.7:201
-msgid "download sources"
-msgstr "Quellen herunterladen"
-
-# type: IP
-#: live-helper.en.7:201
-#, no-wrap
-msgid "B<lh_source_debian-live>(1)"
-msgstr "B<lh_source_debian-live>(1)"
-
-# type: Plain text
-#: live-helper.en.7:203
-msgid "copy debian-live config into source"
-msgstr "Debian-Livekonfiguration in Quelle kopieren"
-
-# type: IP
-#: live-helper.en.7:203
-#, no-wrap
-msgid "B<lh_source_disk>(1)"
-msgstr "B<lh_source_disk>(1)"
-
-# type: Plain text
-#: live-helper.en.7:205
-msgid "install disk information into source"
-msgstr "Platteninformationen in Quelle installieren"
-
-# type: IP
-#: live-helper.en.7:205
-#, no-wrap
-msgid "B<lh_source_iso>(1)"
-msgstr "B<lh_source_iso>(1)"
-
-# type: Plain text
-#: live-helper.en.7:207
-msgid "build iso source image"
-msgstr "ISO-Quellen-Image erstellen"
-
-# type: IP
-#: live-helper.en.7:207
-#, no-wrap
-msgid "B<lh_source_md5sum>(1)"
-msgstr "B<lh_source_md5sum>(1)"
-
-# type: Plain text
-#: live-helper.en.7:209
-msgid "create source md5sum"
-msgstr "Quellen-Md5sum erzeugen"
-
-# type: IP
-#: live-helper.en.7:209
-#, no-wrap
-msgid "B<lh_source_net>(1)"
-msgstr "B<lh_source_net>(1)"
-
-# type: Plain text
-#: live-helper.en.7:211
-msgid "build source net image"
-msgstr "Quellennetz-Image erzeugen"
-
-# type: IP
-#: live-helper.en.7:211
-#, no-wrap
-msgid "B<lh_source_tar>(1)"
-msgstr "B<lh_source_tar>(1)"
-
-# type: Plain text
-#: live-helper.en.7:213
-msgid "build source tarball"
-msgstr "Quellen-Tarball erzeugen"
-
-# type: IP
-#: live-helper.en.7:213
-#, no-wrap
-msgid "B<lh_source_usb-hdd>(1)"
-msgstr "B<lh_source_usb-hdd>(1)"
-
-# type: Plain text
-#: live-helper.en.7:215
-msgid "build source usb-hdd image"
-msgstr "Quellen-USB-HDD-Image erzeugen"
-
-# type: IP
-#: live-helper.en.7:215
-#, no-wrap
-msgid "B<lh_source_virtual-hdd>(1)"
-msgstr "B<lh_source_virtual-hdd>(1)"
-
-# type: Plain text
-#: live-helper.en.7:217
-msgid "build source virtual-hdd image"
-msgstr "virtuelles Quellen-HDD-Image erzeugen"
-
-# type: SH
-#: live-helper.en.7:218
-#, no-wrap
-msgid "CONFIG FILES"
-msgstr "KONFIGURATIONSDATEIEN"
-
-# 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 ""
-"Viele Live-Helper-Befehle machen Gebrauch von Dateien im "
-"I<config/>-Verzeichnis, um zu kontrollieren, was sie tun. Neben der "
-"allgemeinen I<config/common>, die bei allen Live-Helper-Befehlen "
-"benutzt wird, können einige zusätzliche Dateien benutzt werden, um das "
-"Verhalten von bestimmten Live-Helper-Befehlen zu konfigurieren. Diese "
-"Dateien heißen typischerweise config/Stufe oder config/stage_helper "
-"(wobei »Stufe« natürlich durch den Namen der Stufe, auf den es sich "
-"bezieht, und »helper« durch den Namen des Hilfsprogramms ersetzt wird)."
-
-# 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 ""
-"Zum Beispiel benutzt lh_bootstrap_debootstrap Dateien mit Namen "
-"config/bootstrap und config/bootstrap_debootstrap, um die Optionen zu "
-"lesen, die es benutzen wird. Lesen Sie die Handbuchseiten der "
-"individuellen Befehle, um Details über Namen und Formate der benutzten "
-"Dateien zu erhalten. Generell enthalten diese Dateien Variablen mit "
-"zugewiesenen Werten mit jeweils einer Variablen pro Zeile. Einige "
-"Programme in Live-Helper benutzen Wertepaare oder geringfügig "
-"kompliziertere Variablenzuweisungen."
-
-# 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 ""
-"Beachten Sie, dass Live-Helper keine Umgebungsvariablen berücksichtigt, "
-"die im Kontext der Shell, in der es läuft, vorhanden sind. Wenn Variablen "
-"aus den Konfigurationsdateien gelesen werden können, überschreiben diese "
-"die Umgebungsvariablen und wenn Kommandozeilenoptionen benutzt werden, "
-"überschreiben diese die Werte aus den Konfigurationsdateien. Wenn für "
-"eine gegebene Variable kein Wert gefunden wird und dieser daher nicht "
-"gesetzt ist, setzt Live-Helper sie automatisch auf den Vorgabewert."
-
-# 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 ""
-"In einigen seltenen Fällen könnten Sie unterschiedliche Versionen dieser "
-"Dateien für unterschiedliche Architekturen oder Distributionen haben "
-"wollen. Wenn Dateien mit Namen config/stage.arch oder "
-"config/stage_helper.arch existieren, wobei »arch« das gleiche ist, wie "
-"bei »dpkg --print-architecture« und »dist« das gleiche ist, wie der "
-"Code-Name der Zieldistribution, dann werden sie bevorzugt benutzt vor "
-"anderen allgemeineren Dateien."
-
-# 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 ""
-"Alle Konfigurationsdateien sind Shellskripte, die von einem "
-"Live-Helper-Programm eingelesen werden. Das bedeutet, dass sie der "
-"normalen Shell-Syntax folgen. Sie können also Kommentare in diese Dateien "
-"einfügen. Zeilen, die mit »#« beginnen, werden ignoriert."
-
-# type: Plain text
-#: live-helper.en.7:231
-msgid "I<live-initramfs>(7)"
-msgstr "I<live-initramfs>(7)"
diff --git a/manpages/old/fr/lh.1.po b/manpages/old/fr/lh.1.po
deleted file mode 100644
index a5d6249..0000000
--- a/manpages/old/fr/lh.1.po
+++ /dev/null
@@ -1,192 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh> COMMAND [COMMAND_OPTIONS]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh.en.1:10
-#, fuzzy
-msgid "B<lh> [I<live-helper\\ options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "Ce programme fait partie de live-helper."
diff --git a/manpages/old/fr/lh_binary.1.po b/manpages/old/fr/lh_binary.1.po
deleted file mode 100644
index 218fcc1..0000000
--- a/manpages/old/fr/lh_binary.1.po
+++ /dev/null
@@ -1,641 +0,0 @@
-# translation of lh_binary.en.1.po to Français
-# SOME DESCRIPTIVE TITLE
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Frederic Lehobey <Frederic at Lehobey.net>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: lh_binary.en.1\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2008-08-07 17:26+0200\n"
-"Last-Translator: Frederic Lehobey <Frederic at Lehobey.net>\n"
-"Language-Team: Français <debian-l10n-french at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary.en.1:1
-#, no-wrap
-msgid "LH_BINARY"
-msgstr "LH_BINARY"
-
-# 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 "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary.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/old/fr/lh_binary.ryption.en.1.po b/manpages/old/fr/lh_binary.ryption.en.1.po
deleted file mode 100644
index fd5e692..0000000
--- a/manpages/old/fr/lh_binary.ryption.en.1.po
+++ /dev/null
@@ -1,656 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_encryption.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_ENCRYPTION"
-msgstr "LH_BINARY"
-
-# type: Plain text
-#: lh_binary_encryption.en.1:5
-#, fuzzy
-msgid "lh_binary_encryption - encrypt rootfs"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_encryption.en.1:8
-#, fuzzy
-msgid "B<lh_binary_encryption> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_encryption.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_encryption is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It encrypts rootfs."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_checksums.1.po b/manpages/old/fr/lh_binary_checksums.1.po
deleted file mode 100644
index 7a24906..0000000
--- a/manpages/old/fr/lh_binary_checksums.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_md5sum.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_MD5SUM"
-msgstr "LH_BINARY"
-
-# type: Plain text
-#: lh_binary_md5sum.en.1:5
-msgid "lh_binary_md5sum - create binary md5sums"
-msgstr ""
-
-# type: Plain text
-#: lh_binary_md5sum.en.1:8
-#, fuzzy
-msgid "B<lh_binary_md5sum> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_md5sum.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It creates binary md5sums."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_md5sum.en.1:14
-msgid ""
-"lh_binary_md5sum has no specific options but understands all generic live-"
-"helper options. See I<live-helper>(7) for a complete list of all generic "
-"live-helper options."
-msgstr ""
diff --git a/manpages/old/fr/lh_binary_chroot.1.po b/manpages/old/fr/lh_binary_chroot.1.po
deleted file mode 100644
index 284b079..0000000
--- a/manpages/old/fr/lh_binary_chroot.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_CHROOT"
-msgstr "LH_BINARY"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: 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 "SYNOPSIS"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:8
-#, fuzzy
-msgid "B<lh_binary_chroot> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_chroot is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It downloads sources."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: 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 "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
diff --git a/manpages/old/fr/lh_binary_debian-installer.1.po b/manpages/old/fr/lh_binary_debian-installer.1.po
deleted file mode 100644
index e6f67de..0000000
--- a/manpages/old/fr/lh_binary_debian-installer.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_debian-installer> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_debian-installer.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_disk.1.po b/manpages/old/fr/lh_binary_disk.1.po
deleted file mode 100644
index 827f775..0000000
--- a/manpages/old/fr/lh_binary_disk.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_disk.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_DISK"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_disk> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_disk.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_grub.1.po b/manpages/old/fr/lh_binary_grub.1.po
deleted file mode 100644
index 9ff6142..0000000
--- a/manpages/old/fr/lh_binary_grub.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_grub.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_GRUB"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_grub> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_grub.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_grub is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It installs grub into binary."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_includes.1.po b/manpages/old/fr/lh_binary_includes.1.po
deleted file mode 100644
index 3fbe4f1..0000000
--- a/manpages/old/fr/lh_binary_includes.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_includes.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_INCLUDES"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_includes> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_includes.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_includes is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It copies files into binary."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_iso.1.po b/manpages/old/fr/lh_binary_iso.1.po
deleted file mode 100644
index 93b79ea..0000000
--- a/manpages/old/fr/lh_binary_iso.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_iso.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_ISO"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_iso> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_iso.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_iso is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It builds iso binary images."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_linux-image.1.po b/manpages/old/fr/lh_binary_linux-image.1.po
deleted file mode 100644
index 942bcdc..0000000
--- a/manpages/old/fr/lh_binary_linux-image.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_linux-image.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_LINUX-IMAGE"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_linux-image> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_linux-image.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_local-hooks.1.po b/manpages/old/fr/lh_binary_local-hooks.1.po
deleted file mode 100644
index 035a762..0000000
--- a/manpages/old/fr/lh_binary_local-hooks.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_local-hooks.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_LOCAL-HOOKS"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_local-hooks> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_local-hooks.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_local-includes.1.po b/manpages/old/fr/lh_binary_local-includes.1.po
deleted file mode 100644
index 1c7ec5c..0000000
--- a/manpages/old/fr/lh_binary_local-includes.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_local-includes> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_local-includes.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_local-packageslists.1.po b/manpages/old/fr/lh_binary_local-packageslists.1.po
deleted file mode 100644
index 3b522f8..0000000
--- a/manpages/old/fr/lh_binary_local-packageslists.1.po
+++ /dev/null
@@ -1,657 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_local-packageslists> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_local-packageslists.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_manifest.1.po b/manpages/old/fr/lh_binary_manifest.1.po
deleted file mode 100644
index 34818d4..0000000
--- a/manpages/old/fr/lh_binary_manifest.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_manifest.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_MANIFEST"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_manifest> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_manifest.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_manifest is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It creats the manifest."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_memtest.1.po b/manpages/old/fr/lh_binary_memtest.1.po
deleted file mode 100644
index ad85737..0000000
--- a/manpages/old/fr/lh_binary_memtest.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_memtest.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_MEMTEST"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_memtest> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_memtest.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_net.1.po b/manpages/old/fr/lh_binary_net.1.po
deleted file mode 100644
index b5ece58..0000000
--- a/manpages/old/fr/lh_binary_net.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_net.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_NET"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_net> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_net.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_net is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It builds netboot binary image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_rootfs.1.po b/manpages/old/fr/lh_binary_rootfs.1.po
deleted file mode 100644
index af35b90..0000000
--- a/manpages/old/fr/lh_binary_rootfs.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_rootfs.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_ROOTFS"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_rootfs> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_rootfs.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_rootfs is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It builds rootfs image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_silo.1.po b/manpages/old/fr/lh_binary_silo.1.po
deleted file mode 100644
index 7c8292e..0000000
--- a/manpages/old/fr/lh_binary_silo.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_silo.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_SILO"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_silo> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_silo.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_silo is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It installs silo into binary."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_syslinux.1.po b/manpages/old/fr/lh_binary_syslinux.1.po
deleted file mode 100644
index e66451c..0000000
--- a/manpages/old/fr/lh_binary_syslinux.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_syslinux.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_SYSLINUX"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_syslinux> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_syslinux.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_syslinux is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It installs syslinux into binary."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_tar.1.po b/manpages/old/fr/lh_binary_tar.1.po
deleted file mode 100644
index fd85705..0000000
--- a/manpages/old/fr/lh_binary_tar.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_tar.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_TAR"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_tar> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_tar.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_tar is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It builds harddisk binary image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_usb.1.po b/manpages/old/fr/lh_binary_usb.1.po
deleted file mode 100644
index 0868666..0000000
--- a/manpages/old/fr/lh_binary_usb.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_usb-hdd.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_USB-HDD"
-msgstr "LH_BINARY"
-
-# type: Plain text
-#: lh_binary_usb-hdd.en.1:5
-msgid "lh_binary_usb-hdd - build binary usb-hdd image"
-msgstr ""
-
-# type: Plain text
-#: lh_binary_usb-hdd.en.1:8
-#, fuzzy
-msgid "B<lh_binary_usb-hdd> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_usb-hdd.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It builds binary usb-hdd image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_usb-hdd.en.1:14
-msgid ""
-"lh_binary_usb-hdd has no specific options but understands all generic live-"
-"helper options. See I<live-helper>(7) for a complete list of all generic "
-"live-helper options."
-msgstr ""
diff --git a/manpages/old/fr/lh_binary_virtual-hdd.1.po b/manpages/old/fr/lh_binary_virtual-hdd.1.po
deleted file mode 100644
index 53dfdbd..0000000
--- a/manpages/old/fr/lh_binary_virtual-hdd.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_virtual-hdd.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_VIRTUAL-HDD"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_virtual-hdd> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_virtual-hdd.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_win32-loader.1.po b/manpages/old/fr/lh_binary_win32-loader.1.po
deleted file mode 100644
index bea5157..0000000
--- a/manpages/old/fr/lh_binary_win32-loader.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_win32-loader> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_win32-loader.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_binary_yaboot.1.po b/manpages/old/fr/lh_binary_yaboot.1.po
deleted file mode 100644
index 5c3965d..0000000
--- a/manpages/old/fr/lh_binary_yaboot.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17
-#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17
-#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17
-#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17
-#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17
-#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17
-#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17
-#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17
-#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17
-#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17
-#, fuzzy
-msgid "I<lh_binary>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_binary_yaboot.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BINARY_YABOOT"
-msgstr "LH_BINARY"
-
-# 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
-#, fuzzy
-msgid "B<lh_binary_yaboot> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_binary_yaboot.en.1:11
-#, fuzzy
-msgid ""
-"lh_binary_yaboot is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It installs yaboot into binary."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_binary_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/old/fr/lh_bootstrap.1.po b/manpages/old/fr/lh_bootstrap.1.po
deleted file mode 100644
index f6bae5d..0000000
--- a/manpages/old/fr/lh_bootstrap.1.po
+++ /dev/null
@@ -1,193 +0,0 @@
-# translation of lh_bootstrap.en.1.po to Français
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-#
-# Automatically generated, 2008.
-# Frederic Lehobey <Frederic at Lehobey.net>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: lh_bootstrap.en.1\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 21:21+0200\n"
-"Last-Translator: Frederic Lehobey <Frederic at Lehobey.net>\n"
-"Language-Team: Français <debian-l10n-french at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: KBabel 1.11.4\n"
-
-# 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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_bootstrap.en.1:1
-#, no-wrap
-msgid "LH_BOOTSTRAP"
-msgstr "LH_BOOTSTRAP"
-
-# 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 "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_bootstrap.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_bootstrap_cache.1.po b/manpages/old/fr/lh_bootstrap_cache.1.po
deleted file mode 100644
index eb252fd..0000000
--- a/manpages/old/fr/lh_bootstrap_cache.1.po
+++ /dev/null
@@ -1,646 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_bootstrap_cache.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_BOOTSTRAP_CACHE"
-msgstr "LH_BOOTSTRAP"
-
-# 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
-#, fuzzy
-msgid "B<lh_bootstrap_cache> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_bootstrap_cache.en.1:11
-#, fuzzy
-msgid ""
-"lh_bootstrap_cache is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It caches the bootstrap stage."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_bootstrap_cdebootstrap.1.po b/manpages/old/fr/lh_bootstrap_cdebootstrap.1.po
deleted file mode 100644
index 428a1d4..0000000
--- a/manpages/old/fr/lh_bootstrap_cdebootstrap.1.po
+++ /dev/null
@@ -1,653 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy, no-wrap
-msgid "LH_BOOTSTRAP_CDEBOOTSTRAP"
-msgstr "LH_BOOTSTRAP"
-
-# 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
-#, fuzzy
-msgid "B<lh_bootstrap_cdebootstrap> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_bootstrap_cdebootstrap.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_bootstrap_copy.1.po b/manpages/old/fr/lh_bootstrap_copy.1.po
deleted file mode 100644
index 2fc5116..0000000
--- a/manpages/old/fr/lh_bootstrap_copy.1.po
+++ /dev/null
@@ -1,655 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1: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 "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy, no-wrap
-msgid "LH_BOOTSTRAP_COPY"
-msgstr "LH_BOOTSTRAP"
-
-# 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
-#, fuzzy
-msgid "B<lh_bootstrap_copy> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_bootstrap_copy.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_bootstrap_debootstrap.1.po b/manpages/old/fr/lh_bootstrap_debootstrap.1.po
deleted file mode 100644
index 612a358..0000000
--- a/manpages/old/fr/lh_bootstrap_debootstrap.1.po
+++ /dev/null
@@ -1,653 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy, no-wrap
-msgid "LH_BOOTSTRAP_DEBOOTSTRAP"
-msgstr "LH_BOOTSTRAP"
-
-# 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
-#, fuzzy
-msgid "B<lh_bootstrap_debootstrap> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_bootstrap_debootstrap.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_build.1.po b/manpages/old/fr/lh_build.1.po
deleted file mode 100644
index 8f6f661..0000000
--- a/manpages/old/fr/lh_build.1.po
+++ /dev/null
@@ -1,640 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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 "B<lh_binary> [I<options pour live-helper>]"
-
-# type: TH
-#: lh_build.en.1:1
-#, no-wrap
-msgid "LH_BUILD"
-msgstr ""
-
-# type: Plain text
-#: lh_build.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot.1.po b/manpages/old/fr/lh_chroot.1.po
deleted file mode 100644
index fdf3276..0000000
--- a/manpages/old/fr/lh_chroot.1.po
+++ /dev/null
@@ -1,190 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_apt.1.po b/manpages/old/fr/lh_chroot_apt.1.po
deleted file mode 100644
index 3171159..0000000
--- a/manpages/old/fr/lh_chroot_apt.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_apt> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_apt.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_cache.1.po b/manpages/old/fr/lh_chroot_cache.1.po
deleted file mode 100644
index 66479b9..0000000
--- a/manpages/old/fr/lh_chroot_cache.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_cache> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_cache.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_cache is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It caches the chroot stage."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_debianchroot.1.po b/manpages/old/fr/lh_chroot_debianchroot.1.po
deleted file mode 100644
index b241261..0000000
--- a/manpages/old/fr/lh_chroot_debianchroot.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_debianchroot> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_debianchroot.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_debianchroot is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It manages /etc/debian_chroot."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_devpts.1.po b/manpages/old/fr/lh_chroot_devpts.1.po
deleted file mode 100644
index e76c6d4..0000000
--- a/manpages/old/fr/lh_chroot_devpts.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_devpts> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_devpts.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_devpts is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It mounts /dev/pts."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_dpkg.1.po b/manpages/old/fr/lh_chroot_dpkg.1.po
deleted file mode 100644
index 5c42d4d..0000000
--- a/manpages/old/fr/lh_chroot_dpkg.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_dpkg> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_dpkg.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_dpkg is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It manages /sbin/dpkg."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_hacks.1.po b/manpages/old/fr/lh_chroot_hacks.1.po
deleted file mode 100644
index 845b89c..0000000
--- a/manpages/old/fr/lh_chroot_hacks.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_hacks> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_hacks.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_hacks is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It executes hacks in chroot."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_hooks.1.po b/manpages/old/fr/lh_chroot_hooks.1.po
deleted file mode 100644
index 1a3b892..0000000
--- a/manpages/old/fr/lh_chroot_hooks.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_hooks> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_hooks.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_hooks is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It executes hooks in chroot."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_hostname.1.po b/manpages/old/fr/lh_chroot_hostname.1.po
deleted file mode 100644
index 36b8fc2..0000000
--- a/manpages/old/fr/lh_chroot_hostname.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_hostname> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_hostname.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_hostname is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It manages /bin/hostname."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_hosts.1.po b/manpages/old/fr/lh_chroot_hosts.1.po
deleted file mode 100644
index c61cbb8..0000000
--- a/manpages/old/fr/lh_chroot_hosts.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_hosts> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_hosts.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_hosts is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It manages /etc/hosts."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_install-packages.1.po b/manpages/old/fr/lh_chroot_install-packages.1.po
deleted file mode 100644
index d0e9c12..0000000
--- a/manpages/old/fr/lh_chroot_install-packages.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_install-packages> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_install-packages.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_interactive.1.po b/manpages/old/fr/lh_chroot_interactive.1.po
deleted file mode 100644
index 1154422..0000000
--- a/manpages/old/fr/lh_chroot_interactive.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_interactive> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_interactive.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_interactive is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It makes build interactive."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_linux-image.1.po b/manpages/old/fr/lh_chroot_linux-image.1.po
deleted file mode 100644
index 23a322f..0000000
--- a/manpages/old/fr/lh_chroot_linux-image.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_copy> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_linux-image.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_local-hooks.1.po b/manpages/old/fr/lh_chroot_local-hooks.1.po
deleted file mode 100644
index 64311dc..0000000
--- a/manpages/old/fr/lh_chroot_local-hooks.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_local-hooks> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_local-hooks.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_local-includes.1.po b/manpages/old/fr/lh_chroot_local-includes.1.po
deleted file mode 100644
index 301542d..0000000
--- a/manpages/old/fr/lh_chroot_local-includes.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_local-includes> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_local-includes.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_local-packages.1.po b/manpages/old/fr/lh_chroot_local-packages.1.po
deleted file mode 100644
index aa38ee4..0000000
--- a/manpages/old/fr/lh_chroot_local-packages.1.po
+++ /dev/null
@@ -1,670 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_local-packages> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_local-packages.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_local-patches.1.po b/manpages/old/fr/lh_chroot_local-patches.1.po
deleted file mode 100644
index a80960b..0000000
--- a/manpages/old/fr/lh_chroot_local-patches.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_local-patches> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_local-patches.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_local-preseed.1.po b/manpages/old/fr/lh_chroot_local-preseed.1.po
deleted file mode 100644
index c2ea75a..0000000
--- a/manpages/old/fr/lh_chroot_local-preseed.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_local-preseed> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_local-preseed.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_localization.1.po b/manpages/old/fr/lh_chroot_localization.1.po
deleted file mode 100644
index 6372975..0000000
--- a/manpages/old/fr/lh_chroot_localization.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_localization> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_localization.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_packages.1.po b/manpages/old/fr/lh_chroot_packages.1.po
deleted file mode 100644
index ff243ed..0000000
--- a/manpages/old/fr/lh_chroot_packages.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_packages> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_packages.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_packageslists.1.po b/manpages/old/fr/lh_chroot_packageslists.1.po
deleted file mode 100644
index a1ef45f..0000000
--- a/manpages/old/fr/lh_chroot_packageslists.1.po
+++ /dev/null
@@ -1,670 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_packageslists> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_packageslists.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_preseed.1.po b/manpages/old/fr/lh_chroot_preseed.1.po
deleted file mode 100644
index e3473d9..0000000
--- a/manpages/old/fr/lh_chroot_preseed.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_preseed> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_preseed.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_preseed is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It uses debconf preseeding files."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_proc.1.po b/manpages/old/fr/lh_chroot_proc.1.po
deleted file mode 100644
index 9063184..0000000
--- a/manpages/old/fr/lh_chroot_proc.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_proc> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_proc.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_proc is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It mounts /proc."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_resolv.1.po b/manpages/old/fr/lh_chroot_resolv.1.po
deleted file mode 100644
index 2c5432b..0000000
--- a/manpages/old/fr/lh_chroot_resolv.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_resolv> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_resolv.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_resolv is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It manages /etc/resolv.conf."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_selinuxfs.1.po b/manpages/old/fr/lh_chroot_selinuxfs.1.po
deleted file mode 100644
index d8df48e..0000000
--- a/manpages/old/fr/lh_chroot_selinuxfs.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_selinuxfs> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_selinuxfs.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_selinuxfs is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It mounts /selinux."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_sources.1.po b/manpages/old/fr/lh_chroot_sources.1.po
deleted file mode 100644
index 04213c0..0000000
--- a/manpages/old/fr/lh_chroot_sources.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_sources> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_sources.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_symlinks.1.po b/manpages/old/fr/lh_chroot_symlinks.1.po
deleted file mode 100644
index ce5aad3..0000000
--- a/manpages/old/fr/lh_chroot_symlinks.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_symlinks> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_symlinks.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_symlinks is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It converts symlinks."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_sysfs.1.po b/manpages/old/fr/lh_chroot_sysfs.1.po
deleted file mode 100644
index 50cd853..0000000
--- a/manpages/old/fr/lh_chroot_sysfs.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_sysfs> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_sysfs.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_sysfs is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It mounts /sys."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_sysv-rc.1.po b/manpages/old/fr/lh_chroot_sysv-rc.1.po
deleted file mode 100644
index fbe80cf..0000000
--- a/manpages/old/fr/lh_chroot_sysv-rc.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_sysvrc> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_sysv-rc.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_sysvinit.1.po b/manpages/old/fr/lh_chroot_sysvinit.1.po
deleted file mode 100644
index 9592a03..0000000
--- a/manpages/old/fr/lh_chroot_sysvinit.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_sysvinit> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_sysvinit.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_sysvinit is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It configures sysvinit."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_chroot_tasks.1.po b/manpages/old/fr/lh_chroot_tasks.1.po
deleted file mode 100644
index 9e2a400..0000000
--- a/manpages/old/fr/lh_chroot_tasks.1.po
+++ /dev/null
@@ -1,669 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_chroot_tasks> [I<live-helper options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_chroot_tasks.en.1:11
-#, fuzzy
-msgid ""
-"lh_chroot_tasks is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It installs tasks into chroot."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_clean.1.po b/manpages/old/fr/lh_clean.1.po
deleted file mode 100644
index 998f4e1..0000000
--- a/manpages/old/fr/lh_clean.1.po
+++ /dev/null
@@ -1,286 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_clean> [I<live-helper\\ options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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/old/fr/lh_config.1.po b/manpages/old/fr/lh_config.1.po
deleted file mode 100644
index 0f87f9b..0000000
--- a/manpages/old/fr/lh_config.1.po
+++ /dev/null
@@ -1,2065 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_config> [I<live-helper\\ options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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 at 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
-#, fuzzy
-msgid "I</etc/default/live-helper>"
-msgstr "I<live-helper>(7)"
-
-# 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/old/fr/lh_local.1.po b/manpages/old/fr/lh_local.1.po
deleted file mode 100644
index d04a8ae..0000000
--- a/manpages/old/fr/lh_local.1.po
+++ /dev/null
@@ -1,641 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_local.en.1:1
-#, no-wrap
-msgid "LH_LOCAL"
-msgstr ""
-
-# type: Plain text
-#: lh_local.en.1:5
-#, fuzzy
-msgid "lh_local - helper for using a local live-helper"
-msgstr "Ce programme fait partie de live-helper."
-
-# type: Plain text
-#: lh_local.en.1:8
-#, fuzzy
-msgid "B<lh_local> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_local.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_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/old/fr/lh_source.1.po b/manpages/old/fr/lh_source.1.po
deleted file mode 100644
index 2dc96ae..0000000
--- a/manpages/old/fr/lh_source.1.po
+++ /dev/null
@@ -1,191 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_source> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source.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/old/fr/lh_source_checksums.1.po b/manpages/old/fr/lh_source_checksums.1.po
deleted file mode 100644
index be9a87e..0000000
--- a/manpages/old/fr/lh_source_checksums.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_md5sum> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_md5sum.en.1:11
-#, fuzzy
-msgid ""
-"lh_source_md5sum is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It creates source md5sum."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_md5sum.en.1:14
-msgid ""
-"lh_source_md5sum sources has no specific options but understands all generic "
-"live-helper options. See I<live-helper>(7) for a complete list of all "
-"generic live-helper options."
-msgstr ""
diff --git a/manpages/old/fr/lh_source_debian-live.1.po b/manpages/old/fr/lh_source_debian-live.1.po
deleted file mode 100644
index c42461b..0000000
--- a/manpages/old/fr/lh_source_debian-live.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_debian-live> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_debian-live.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_source_debian.1.po b/manpages/old/fr/lh_source_debian.1.po
deleted file mode 100644
index 2120f9d..0000000
--- a/manpages/old/fr/lh_source_debian.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# 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
-#, fuzzy
-msgid "B<lh_source_debian> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_debian.en.1:11
-#, fuzzy
-msgid ""
-"lh_source_debian is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It downloads sources."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_source_disk.1.po b/manpages/old/fr/lh_source_disk.1.po
deleted file mode 100644
index aba820c..0000000
--- a/manpages/old/fr/lh_source_disk.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_disk> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_disk.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_source_iso.1.po b/manpages/old/fr/lh_source_iso.1.po
deleted file mode 100644
index 8d429fd..0000000
--- a/manpages/old/fr/lh_source_iso.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_iso> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_iso.en.1:11
-#, fuzzy
-msgid ""
-"lh_source_iso is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It builds iso source image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_source_net.1.po b/manpages/old/fr/lh_source_net.1.po
deleted file mode 100644
index a6c46c5..0000000
--- a/manpages/old/fr/lh_source_net.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_net> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_net.en.1:11
-#, fuzzy
-msgid ""
-"lh_source_net is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It builds source net image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_source_tar.1.po b/manpages/old/fr/lh_source_tar.1.po
deleted file mode 100644
index ffa5569..0000000
--- a/manpages/old/fr/lh_source_tar.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_tar> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_tar.en.1:11
-#, fuzzy
-msgid ""
-"lh_source_tar is a low-level command (plumbing) of live-helper, the Debian "
-"Live tool suite. It builds source tarball."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_source_usb.1.po b/manpages/old/fr/lh_source_usb.1.po
deleted file mode 100644
index 7e50606..0000000
--- a/manpages/old/fr/lh_source_usb.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_usb-hdd> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_usb-hdd.en.1:11
-#, fuzzy
-msgid ""
-"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the "
-"Debian Live tool suite. It builds source usb-hdd image."
-msgstr ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_usb-hdd.en.1:14
-msgid ""
-"lh_source_usb-hdd has no specific options but understands all generic live-"
-"helper options. See I<live-helper>(7) for a complete list of all generic "
-"live-helper options."
-msgstr ""
diff --git a/manpages/old/fr/lh_source_virtual-hdd.1.po b/manpages/old/fr/lh_source_virtual-hdd.1.po
deleted file mode 100644
index d07e75c..0000000
--- a/manpages/old/fr/lh_source_virtual-hdd.1.po
+++ /dev/null
@@ -1,648 +0,0 @@
-# French translations for PACKAGE package
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the PACKAGE package.
-# Automatically generated, 2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-03-01 12:49+0100\n"
-"PO-Revision-Date: 2009-03-01 12:49+0100\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# type: TH
-#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1
-#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1
-#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1
-#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1
-#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1
-#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1
-#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1
-#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1
-#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1
-#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1
-#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1
-#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1
-#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1
-#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1
-#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1
-#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1
-#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1
-#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1
-#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1
-#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1
-#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1
-#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1
-#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1
-#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1
-#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1
-#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1
-#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1
-#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1
-#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1
-#: lh_testroot.en.1:1 live-helper.en.7:1
-#, no-wrap
-msgid "live-helper"
-msgstr "live-helper"
-
-# type: SH
-#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3
-#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3
-#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3
-#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3
-#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3
-#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3
-#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3
-#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3
-#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3
-#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3
-#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3
-#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3
-#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3
-#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3
-#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3
-#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3
-#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3
-#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3
-#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3
-#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3
-#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3
-#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3
-#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3
-#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3
-#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3
-#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3
-#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3
-#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3
-#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3
-#: lh_testroot.en.1:3 live-helper.en.7:3
-#, no-wrap
-msgid "NAME"
-msgstr "NOM"
-
-# type: SH
-#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6
-#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6
-#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6
-#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6
-#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6
-#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6
-#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6
-#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6
-#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6
-#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6
-#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6
-#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6
-#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6
-#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6
-#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6
-#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6
-#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6
-#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6
-#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6
-#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6
-#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6
-#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6
-#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6
-#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6
-#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6
-#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6
-#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6
-#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6
-#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6
-#: lh_testroot.en.1:6 live-helper.en.7:6
-#, no-wrap
-msgid "SYNOPSIS"
-msgstr "SYNOPSIS"
-
-# type: SH
-#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9
-#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9
-#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9
-#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9
-#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9
-#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9
-#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9
-#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9
-#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9
-#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9
-#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9
-#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9
-#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9
-#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9
-#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9
-#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9
-#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9
-#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9
-#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9
-#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9
-#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9
-#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9
-#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9
-#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9
-#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11
-#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9
-#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9
-#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9
-#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9
-#: lh_testroot.en.1:9 live-helper.en.7:13
-#, no-wrap
-msgid "DESCRIPTION"
-msgstr "DESCRIPTION"
-
-# type: SH
-#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12
-#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12
-#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12
-#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12
-#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12
-#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12
-#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12
-#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12
-#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12
-#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12
-#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12
-#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12
-#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12
-#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12
-#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12
-#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12
-#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12
-#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12
-#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12
-#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12
-#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12
-#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12
-#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12
-#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12
-#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12
-#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12
-#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14
-#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12
-#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12
-#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12
-#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14
-#: live-helper.en.7:20
-#, no-wrap
-msgid "OPTIONS"
-msgstr ""
-
-# type: SH
-#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15
-#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15
-#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15
-#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15
-#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15
-#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15
-#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15
-#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15
-#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15
-#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15
-#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15
-#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15
-#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15
-#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15
-#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15
-#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15
-#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15
-#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15
-#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15
-#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15
-#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15
-#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15
-#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15
-#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15
-#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15
-#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15
-#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17
-#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15
-#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15
-#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15
-#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17
-#: live-helper.en.7:229
-#, no-wrap
-msgid "SEE ALSO"
-msgstr "VOIR AUSSI"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19
-#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19
-#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19
-#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19
-#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19
-#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19
-#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19
-#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19
-#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19
-#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19
-#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21
-#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21
-#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19
-#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19
-#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17
-#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19
-#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19
-#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19
-#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19
-#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19
-#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19
-#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19
-#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19
-#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19
-#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19
-#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19
-#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19
-#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19
-#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19
-#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19
-#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19
-msgid "I<live-helper>(7)"
-msgstr "I<live-helper>(7)"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21
-#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21
-#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21
-#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21
-#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21
-#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21
-#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21
-#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21
-#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21
-#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21
-#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23
-#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23
-#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21
-#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21
-#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19
-#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21
-#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21
-#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21
-#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21
-#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21
-#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21
-#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21
-#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21
-#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21
-#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21
-#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21
-#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419
-#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21
-#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21
-#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21
-#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# type: SH
-#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22
-#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22
-#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22
-#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22
-#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22
-#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22
-#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22
-#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22
-#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22
-#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22
-#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24
-#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24
-#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22
-#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22
-#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20
-#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22
-#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22
-#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22
-#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22
-#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22
-#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22
-#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22
-#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22
-#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22
-#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22
-#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22
-#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22
-#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22
-#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22
-#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22
-#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22
-#: live-helper.en.7:232
-#, no-wrap
-msgid "HOMEPAGE"
-msgstr "HÉBERGEMENT"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24
-#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24
-#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24
-#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24
-#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24
-#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24
-#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24
-#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24
-#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24
-#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24
-#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26
-#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26
-#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24
-#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24
-#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22
-#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24
-#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24
-#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24
-#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24
-#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24
-#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24
-#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24
-#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24
-#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24
-#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24
-#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24
-#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24
-#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24
-#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24
-#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24
-#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24
-#: live-helper.en.7:234
-#, fuzzy
-msgid ""
-"More information about live-helper and the Debian Live project can be found "
-"in the homepage at 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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# type: SH
-#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25
-#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25
-#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25
-#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25
-#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25
-#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25
-#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25
-#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25
-#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25
-#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25
-#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27
-#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27
-#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25
-#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25
-#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23
-#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25
-#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25
-#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25
-#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25
-#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25
-#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25
-#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25
-#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25
-#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25
-#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25
-#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25
-#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25
-#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25
-#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25
-#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25
-#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25
-#: live-helper.en.7:235
-#, no-wrap
-msgid "BUGS"
-msgstr "ANOMALIES"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27
-#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27
-#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27
-#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27
-#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27
-#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27
-#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27
-#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27
-#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27
-#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27
-#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29
-#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29
-#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27
-#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27
-#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25
-#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27
-#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27
-#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27
-#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27
-#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27
-#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27
-#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27
-#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27
-#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27
-#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27
-#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27
-#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27
-#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27
-#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27
-#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27
-#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27
-#: live-helper.en.7:237
-msgid ""
-"Report bugs by submitting a bugreport for the live-helper package in the "
-"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write "
-"a mail to the mailinglist at E<lt>I<debian-live at 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 "AUTEUR"
-
-# type: Plain text
-#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29
-#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29
-#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29
-#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29
-#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29
-#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29
-#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29
-#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29
-#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29
-#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29
-#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31
-#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31
-#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29
-#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29
-#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27
-#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29
-#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29
-#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29
-#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29
-#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29
-#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29
-#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29
-#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29
-#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29
-#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29
-#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29
-#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29
-#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29
-#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29
-#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29
-#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29
-#: live-helper.en.7:239
-msgid ""
-"live-helper was written by Daniel Baumann E<lt>I<daniel at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: Plain text
-#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17
-#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17
-#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17
-#: lh_source_virtual-hdd.en.1:17
-msgid "I<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
-#, fuzzy
-msgid "B<lh_source_virtual-hdd> [I<live-helper options>]"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: lh_source_virtual-hdd.en.1:11
-#, fuzzy
-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 ""
-"lh_binary est un méta-assistant. Il appelle tous les programmes nécessaires "
-"à live-helper dans le bon ordre pour effectuer l'étape de construction du "
-"binaire."
-
-# type: Plain text
-#: lh_source_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/old/fr/lh_testroot.1.po b/manpages/old/fr/lh_testroot.1.po
deleted file mode 100644
index 5235d8c..0000000
--- a/manpages/old/fr/lh_testroot.1.po
+++ /dev/null
@@ -1,194 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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
-#, fuzzy, no-wrap
-msgid "2009-02-14"
-msgstr "2007-11-26"
-
-# 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
-#, fuzzy, no-wrap
-msgid "1.0.4"
-msgstr "1.0~a38"
-
-# 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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "I<live-helper>(7)"
-
-# 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
-#, fuzzy
-msgid "This program is a part of live-helper."
-msgstr "Ce programme fait partie de live-helper."
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: lh_testroot.en.1:1
-#, fuzzy, no-wrap
-msgid "LH_TESTROOT"
-msgstr "LH_BOOTSTRAP"
-
-# 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
-#, fuzzy
-msgid "B<lh_testroot> [I<live-helper\\ options>]"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# 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/old/fr/live-helper.7.po b/manpages/old/fr/live-helper.7.po
deleted file mode 100644
index 6e20dcd..0000000
--- a/manpages/old/fr/live-helper.7.po
+++ /dev/null
@@ -1,1314 +0,0 @@
-# French translations for Debconf package
-# Copyright (C) 2008 Free Software Foundation, Inc.
-# This file is distributed under the same license as the Debconf package.
-# Automatically generated, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Debconf 8\n"
-"POT-Creation-Date: 2009-03-01 12:42+0100\n"
-"PO-Revision-Date: 2008-08-07 22:08+0300\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-# type: TH
-#: lh_binary.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 "live-helper"
-
-# 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 "NOM"
-
-# 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 "SYNOPSIS"
-
-# 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 "DESCRIPTION"
-
-# 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 "VOIR AUSSI"
-
-# 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 "HÉBERGEMENT"
-
-# 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
-#, fuzzy
-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 ""
-"Plus d'informations sur le projet Debian Live peut être trouvée sur "
-"E<lt>I<http://debian-live.alioth.debian.org/>E<gt> et E<lt>I<http://wiki."
-"debian.org/DebianLive/>E<gt>."
-
-# 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 "ANOMALIES"
-
-# 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 at 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 "AUTEUR"
-
-# 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 at debian.org>E<gt> for "
-"the Debian project."
-msgstr ""
-"live-helper a été écrit par Daniel Baumann E<lt>I<daniel at debian.org>E<gt> "
-"pour le projet Debian."
-
-# type: TH
-#: live-helper.en.7:1
-#, no-wrap
-msgid "LIVE-HELPER"
-msgstr ""
-
-# type: TH
-#: live-helper.en.7:1
-#, fuzzy, no-wrap
-msgid "2009-01-23"
-msgstr "2007-11-26"
-
-# type: TH
-#: live-helper.en.7:1
-#, fuzzy, no-wrap
-msgid "1.0.2"
-msgstr "1.0~a38"
-
-# 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: Plain text
-#: live-helper.en.7:21
-#, fuzzy, no-wrap
-msgid "Shared live-helper options"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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: Plain text
-#: live-helper.en.7:29
-#, fuzzy, no-wrap
-msgid "Common live-helper options"
-msgstr "B<lh_bootstrap> [I<options pour live-helper>]"
-
-# 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
-#, fuzzy
-msgid "helper for using a local live-helper"
-msgstr "Ce programme fait partie de live-helper."
-
-# 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: Plain text
-#: live-helper.en.7:158
-#, fuzzy, no-wrap
-msgid "B<lh_binary_encryption>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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: Plain text
-#: live-helper.en.7:192
-#, fuzzy, no-wrap
-msgid "B<lh_binary_virtual-hdd>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# type: Plain text
-#: live-helper.en.7:194
-msgid "build binary virtual-hdd image"
-msgstr ""
-
-# type: Plain text
-#: live-helper.en.7:194
-#, fuzzy, no-wrap
-msgid "B<lh_binary_win32-loader>(1)"
-msgstr "B<lh_binary> [I<options pour live-helper>]"
-
-# 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
-#, fuzzy
-msgid "I<live-initramfs>(7)"
-msgstr "I<live-helper>(7)"
diff --git a/manpages/po/de/lh.1.po b/manpages/po/de/lh.1.po
index fef1c6b..952168d 100644
--- a/manpages/po/de/lh.1.po
+++ b/manpages/po/de/lh.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary.1.po b/manpages/po/de/lh_binary.1.po
index 889fd69..d988655 100644
--- a/manpages/po/de/lh_binary.1.po
+++ b/manpages/po/de/lh_binary.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_checksums.1.po b/manpages/po/de/lh_binary_checksums.1.po
index b28c829..0508808 100644
--- a/manpages/po/de/lh_binary_checksums.1.po
+++ b/manpages/po/de/lh_binary_checksums.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_chroot.1.po b/manpages/po/de/lh_binary_chroot.1.po
index 9860fbd..69806ff 100644
--- a/manpages/po/de/lh_binary_chroot.1.po
+++ b/manpages/po/de/lh_binary_chroot.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_debian-installer.1.po b/manpages/po/de/lh_binary_debian-installer.1.po
index f5e4f55..ca96276 100644
--- a/manpages/po/de/lh_binary_debian-installer.1.po
+++ b/manpages/po/de/lh_binary_debian-installer.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_disk.1.po b/manpages/po/de/lh_binary_disk.1.po
index 7e85fe8..e026f53 100644
--- a/manpages/po/de/lh_binary_disk.1.po
+++ b/manpages/po/de/lh_binary_disk.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_encryption.1.po b/manpages/po/de/lh_binary_encryption.1.po
index 383af9f..f59982d 100644
--- a/manpages/po/de/lh_binary_encryption.1.po
+++ b/manpages/po/de/lh_binary_encryption.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_grub.1.po b/manpages/po/de/lh_binary_grub.1.po
index c868c79..27ec930 100644
--- a/manpages/po/de/lh_binary_grub.1.po
+++ b/manpages/po/de/lh_binary_grub.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_grub2.1.po b/manpages/po/de/lh_binary_grub2.1.po
index d044135..270179c 100644
--- a/manpages/po/de/lh_binary_grub2.1.po
+++ b/manpages/po/de/lh_binary_grub2.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_includes.1.po b/manpages/po/de/lh_binary_includes.1.po
index 3cebe7d..ad42cdc 100644
--- a/manpages/po/de/lh_binary_includes.1.po
+++ b/manpages/po/de/lh_binary_includes.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_iso.1.po b/manpages/po/de/lh_binary_iso.1.po
index ef40b5d..af5e703 100644
--- a/manpages/po/de/lh_binary_iso.1.po
+++ b/manpages/po/de/lh_binary_iso.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_linux-image.1.po b/manpages/po/de/lh_binary_linux-image.1.po
index 2115791..b1a7256 100644
--- a/manpages/po/de/lh_binary_linux-image.1.po
+++ b/manpages/po/de/lh_binary_linux-image.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_local-hooks.1.po b/manpages/po/de/lh_binary_local-hooks.1.po
index 80e3292..7703f34 100644
--- a/manpages/po/de/lh_binary_local-hooks.1.po
+++ b/manpages/po/de/lh_binary_local-hooks.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_local-includes.1.po b/manpages/po/de/lh_binary_local-includes.1.po
index 68f509f..615ee4c 100644
--- a/manpages/po/de/lh_binary_local-includes.1.po
+++ b/manpages/po/de/lh_binary_local-includes.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_local-packageslists.1.po b/manpages/po/de/lh_binary_local-packageslists.1.po
index efe1e06..9a335dc 100644
--- a/manpages/po/de/lh_binary_local-packageslists.1.po
+++ b/manpages/po/de/lh_binary_local-packageslists.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_manifest.1.po b/manpages/po/de/lh_binary_manifest.1.po
index 227dc45..24a10aa 100644
--- a/manpages/po/de/lh_binary_manifest.1.po
+++ b/manpages/po/de/lh_binary_manifest.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_memtest.1.po b/manpages/po/de/lh_binary_memtest.1.po
index 4967a33..ab4af5c 100644
--- a/manpages/po/de/lh_binary_memtest.1.po
+++ b/manpages/po/de/lh_binary_memtest.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_net.1.po b/manpages/po/de/lh_binary_net.1.po
index 602d2ec..6aad911 100644
--- a/manpages/po/de/lh_binary_net.1.po
+++ b/manpages/po/de/lh_binary_net.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_rootfs.1.po b/manpages/po/de/lh_binary_rootfs.1.po
index 3cea4f1..eefdd3c 100644
--- a/manpages/po/de/lh_binary_rootfs.1.po
+++ b/manpages/po/de/lh_binary_rootfs.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_silo.1.po b/manpages/po/de/lh_binary_silo.1.po
index 189d615..2657e38 100644
--- a/manpages/po/de/lh_binary_silo.1.po
+++ b/manpages/po/de/lh_binary_silo.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_syslinux.1.po b/manpages/po/de/lh_binary_syslinux.1.po
index 4cc5fbe..96c96a1 100644
--- a/manpages/po/de/lh_binary_syslinux.1.po
+++ b/manpages/po/de/lh_binary_syslinux.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_tar.1.po b/manpages/po/de/lh_binary_tar.1.po
index db32309..7990456 100644
--- a/manpages/po/de/lh_binary_tar.1.po
+++ b/manpages/po/de/lh_binary_tar.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_usb.1.po b/manpages/po/de/lh_binary_usb.1.po
index a26539f..2f04b0a 100644
--- a/manpages/po/de/lh_binary_usb.1.po
+++ b/manpages/po/de/lh_binary_usb.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_virtual-hdd.1.po b/manpages/po/de/lh_binary_virtual-hdd.1.po
index dc1c711..74a7413 100644
--- a/manpages/po/de/lh_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lh_binary_virtual-hdd.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_win32-loader.1.po b/manpages/po/de/lh_binary_win32-loader.1.po
index 34a9c9e..fd516cf 100644
--- a/manpages/po/de/lh_binary_win32-loader.1.po
+++ b/manpages/po/de/lh_binary_win32-loader.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_binary_yaboot.1.po b/manpages/po/de/lh_binary_yaboot.1.po
index cc6c226..6b4877d 100644
--- a/manpages/po/de/lh_binary_yaboot.1.po
+++ b/manpages/po/de/lh_binary_yaboot.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_bootstrap.1.po b/manpages/po/de/lh_bootstrap.1.po
index dac1ce0..05f9527 100644
--- a/manpages/po/de/lh_bootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_bootstrap_cache.1.po b/manpages/po/de/lh_bootstrap_cache.1.po
index 341da17..0594974 100644
--- a/manpages/po/de/lh_bootstrap_cache.1.po
+++ b/manpages/po/de/lh_bootstrap_cache.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_bootstrap_cdebootstrap.1.po b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
index 7f99f9f..b57b94e 100644
--- a/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_bootstrap_copy.1.po b/manpages/po/de/lh_bootstrap_copy.1.po
index dff6fd3..b9934b3 100644
--- a/manpages/po/de/lh_bootstrap_copy.1.po
+++ b/manpages/po/de/lh_bootstrap_copy.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_bootstrap_debootstrap.1.po b/manpages/po/de/lh_bootstrap_debootstrap.1.po
index 670bde4..28187c3 100644
--- a/manpages/po/de/lh_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lh_bootstrap_debootstrap.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_build.1.po b/manpages/po/de/lh_build.1.po
index c1e0700..f91e576 100644
--- a/manpages/po/de/lh_build.1.po
+++ b/manpages/po/de/lh_build.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 10:39+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot.1.po b/manpages/po/de/lh_chroot.1.po
index 06d8b31..0ed972b 100644
--- a/manpages/po/de/lh_chroot.1.po
+++ b/manpages/po/de/lh_chroot.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_apt.1.po b/manpages/po/de/lh_chroot_apt.1.po
index 20e7cd5..b1419f5 100644
--- a/manpages/po/de/lh_chroot_apt.1.po
+++ b/manpages/po/de/lh_chroot_apt.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_cache.1.po b/manpages/po/de/lh_chroot_cache.1.po
index 7fbdb84..17dacc3 100644
--- a/manpages/po/de/lh_chroot_cache.1.po
+++ b/manpages/po/de/lh_chroot_cache.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_debianchroot.1.po b/manpages/po/de/lh_chroot_debianchroot.1.po
index d9c33ca..3c06d9a 100644
--- a/manpages/po/de/lh_chroot_debianchroot.1.po
+++ b/manpages/po/de/lh_chroot_debianchroot.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_devpts.1.po b/manpages/po/de/lh_chroot_devpts.1.po
index db7f174..3b0bbad 100644
--- a/manpages/po/de/lh_chroot_devpts.1.po
+++ b/manpages/po/de/lh_chroot_devpts.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_dpkg.1.po b/manpages/po/de/lh_chroot_dpkg.1.po
index c64b6d2..df1dac5 100644
--- a/manpages/po/de/lh_chroot_dpkg.1.po
+++ b/manpages/po/de/lh_chroot_dpkg.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_hacks.1.po b/manpages/po/de/lh_chroot_hacks.1.po
index c61bdbc..ed79644 100644
--- a/manpages/po/de/lh_chroot_hacks.1.po
+++ b/manpages/po/de/lh_chroot_hacks.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_hooks.1.po b/manpages/po/de/lh_chroot_hooks.1.po
index 0212fe9..f798790 100644
--- a/manpages/po/de/lh_chroot_hooks.1.po
+++ b/manpages/po/de/lh_chroot_hooks.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_hostname.1.po b/manpages/po/de/lh_chroot_hostname.1.po
index 588a8f2..9b79e1d 100644
--- a/manpages/po/de/lh_chroot_hostname.1.po
+++ b/manpages/po/de/lh_chroot_hostname.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_hosts.1.po b/manpages/po/de/lh_chroot_hosts.1.po
index 284ce3b..ece0f6b 100644
--- a/manpages/po/de/lh_chroot_hosts.1.po
+++ b/manpages/po/de/lh_chroot_hosts.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_install-packages.1.po b/manpages/po/de/lh_chroot_install-packages.1.po
index 154ac81..3614c4c 100644
--- a/manpages/po/de/lh_chroot_install-packages.1.po
+++ b/manpages/po/de/lh_chroot_install-packages.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_interactive.1.po b/manpages/po/de/lh_chroot_interactive.1.po
index d34ddc8..852f0cb 100644
--- a/manpages/po/de/lh_chroot_interactive.1.po
+++ b/manpages/po/de/lh_chroot_interactive.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_linux-image.1.po b/manpages/po/de/lh_chroot_linux-image.1.po
index 861d4fd..0430075 100644
--- a/manpages/po/de/lh_chroot_linux-image.1.po
+++ b/manpages/po/de/lh_chroot_linux-image.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_local-hooks.1.po b/manpages/po/de/lh_chroot_local-hooks.1.po
index fbae273..494e1e9 100644
--- a/manpages/po/de/lh_chroot_local-hooks.1.po
+++ b/manpages/po/de/lh_chroot_local-hooks.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_local-includes.1.po b/manpages/po/de/lh_chroot_local-includes.1.po
index 68cdd85..aa59c1f 100644
--- a/manpages/po/de/lh_chroot_local-includes.1.po
+++ b/manpages/po/de/lh_chroot_local-includes.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_local-packages.1.po b/manpages/po/de/lh_chroot_local-packages.1.po
index 9082494..cc2fa8d 100644
--- a/manpages/po/de/lh_chroot_local-packages.1.po
+++ b/manpages/po/de/lh_chroot_local-packages.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_local-packageslists.1.po b/manpages/po/de/lh_chroot_local-packageslists.1.po
index 37c9587..86cd147 100644
--- a/manpages/po/de/lh_chroot_local-packageslists.1.po
+++ b/manpages/po/de/lh_chroot_local-packageslists.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_local-patches.1.po b/manpages/po/de/lh_chroot_local-patches.1.po
index 248cd4f..a9284b2 100644
--- a/manpages/po/de/lh_chroot_local-patches.1.po
+++ b/manpages/po/de/lh_chroot_local-patches.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_local-preseed.1.po b/manpages/po/de/lh_chroot_local-preseed.1.po
index ef8f013..61ce80b 100644
--- a/manpages/po/de/lh_chroot_local-preseed.1.po
+++ b/manpages/po/de/lh_chroot_local-preseed.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_localization.1.po b/manpages/po/de/lh_chroot_localization.1.po
index 12db315..f5599bf 100644
--- a/manpages/po/de/lh_chroot_localization.1.po
+++ b/manpages/po/de/lh_chroot_localization.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_packages.1.po b/manpages/po/de/lh_chroot_packages.1.po
index ecc1f71..3c89cac 100644
--- a/manpages/po/de/lh_chroot_packages.1.po
+++ b/manpages/po/de/lh_chroot_packages.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_packageslists.1.po b/manpages/po/de/lh_chroot_packageslists.1.po
index 5c23b71..1612dcd 100644
--- a/manpages/po/de/lh_chroot_packageslists.1.po
+++ b/manpages/po/de/lh_chroot_packageslists.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_preseed.1.po b/manpages/po/de/lh_chroot_preseed.1.po
index 196afbb..5a54a00 100644
--- a/manpages/po/de/lh_chroot_preseed.1.po
+++ b/manpages/po/de/lh_chroot_preseed.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_proc.1.po b/manpages/po/de/lh_chroot_proc.1.po
index 6e4f82b..53e4094 100644
--- a/manpages/po/de/lh_chroot_proc.1.po
+++ b/manpages/po/de/lh_chroot_proc.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_resolv.1.po b/manpages/po/de/lh_chroot_resolv.1.po
index 8f3f59b..cdca534 100644
--- a/manpages/po/de/lh_chroot_resolv.1.po
+++ b/manpages/po/de/lh_chroot_resolv.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_selinuxfs.1.po b/manpages/po/de/lh_chroot_selinuxfs.1.po
index 92cdf52..f9ab9a1 100644
--- a/manpages/po/de/lh_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lh_chroot_selinuxfs.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_sources.1.po b/manpages/po/de/lh_chroot_sources.1.po
index ccd4f66..f064e36 100644
--- a/manpages/po/de/lh_chroot_sources.1.po
+++ b/manpages/po/de/lh_chroot_sources.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_symlinks.1.po b/manpages/po/de/lh_chroot_symlinks.1.po
index 9e3e4ac..bbb8a93 100644
--- a/manpages/po/de/lh_chroot_symlinks.1.po
+++ b/manpages/po/de/lh_chroot_symlinks.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_sysfs.1.po b/manpages/po/de/lh_chroot_sysfs.1.po
index e16619f..29e90e0 100644
--- a/manpages/po/de/lh_chroot_sysfs.1.po
+++ b/manpages/po/de/lh_chroot_sysfs.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_sysv-rc.1.po b/manpages/po/de/lh_chroot_sysv-rc.1.po
index 67ba9a8..bdd8720 100644
--- a/manpages/po/de/lh_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lh_chroot_sysv-rc.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_sysvinit.1.po b/manpages/po/de/lh_chroot_sysvinit.1.po
index ffd5e9b..3423f2e 100644
--- a/manpages/po/de/lh_chroot_sysvinit.1.po
+++ b/manpages/po/de/lh_chroot_sysvinit.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_tasks.1.po b/manpages/po/de/lh_chroot_tasks.1.po
index 24cc06f..d8e119f 100644
--- a/manpages/po/de/lh_chroot_tasks.1.po
+++ b/manpages/po/de/lh_chroot_tasks.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_chroot_upstart.1.po b/manpages/po/de/lh_chroot_upstart.1.po
index f5fe5e2..416227b 100644
--- a/manpages/po/de/lh_chroot_upstart.1.po
+++ b/manpages/po/de/lh_chroot_upstart.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_clean.1.po b/manpages/po/de/lh_clean.1.po
index 8a15fa8..c0c4b55 100644
--- a/manpages/po/de/lh_clean.1.po
+++ b/manpages/po/de/lh_clean.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_config.1.po b/manpages/po/de/lh_config.1.po
index 26c9888..3424243 100644
--- a/manpages/po/de/lh_config.1.po
+++ b/manpages/po/de/lh_config.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -1863,9 +1863,9 @@ 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."
+"defines which hooks available in /usr/share/live/build/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
@@ -1905,7 +1905,7 @@ msgstr ""
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/."
+"By default, this is set to /usr/share/live/build/includes/."
msgstr ""
#. type: IP
@@ -2355,8 +2355,8 @@ 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 "
+"defines which lists available in /usr/share/live/build/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)."
@@ -2387,7 +2387,7 @@ msgstr ""
#: en/lh_config.1:383
msgid ""
"enables one of available third-party repository configurations in /usr/share/"
-"live-helper/repositories."
+"live/build/repositories."
msgstr ""
#. type: IP
@@ -2582,7 +2582,7 @@ msgstr ""
#: 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/."
+"bootloaders. By default, this is set to /usr/share/live/build/templates/."
msgstr ""
#. type: IP
diff --git a/manpages/po/de/lh_local.1.po b/manpages/po/de/lh_local.1.po
index 112c35d..169c4b1 100644
--- a/manpages/po/de/lh_local.1.po
+++ b/manpages/po/de/lh_local.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 12:13+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source.1.po b/manpages/po/de/lh_source.1.po
index d0ef988..7266938 100644
--- a/manpages/po/de/lh_source.1.po
+++ b/manpages/po/de/lh_source.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_checksums.1.po b/manpages/po/de/lh_source_checksums.1.po
index 9eddc08..b2b2da8 100644
--- a/manpages/po/de/lh_source_checksums.1.po
+++ b/manpages/po/de/lh_source_checksums.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_debian-live.1.po b/manpages/po/de/lh_source_debian-live.1.po
index 882bf85..30f6459 100644
--- a/manpages/po/de/lh_source_debian-live.1.po
+++ b/manpages/po/de/lh_source_debian-live.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_debian.1.po b/manpages/po/de/lh_source_debian.1.po
index 659164a..c567531 100644
--- a/manpages/po/de/lh_source_debian.1.po
+++ b/manpages/po/de/lh_source_debian.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_disk.1.po b/manpages/po/de/lh_source_disk.1.po
index b51bacd..b1e1e43 100644
--- a/manpages/po/de/lh_source_disk.1.po
+++ b/manpages/po/de/lh_source_disk.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_iso.1.po b/manpages/po/de/lh_source_iso.1.po
index a6c7ff4..9ce7f3f 100644
--- a/manpages/po/de/lh_source_iso.1.po
+++ b/manpages/po/de/lh_source_iso.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_net.1.po b/manpages/po/de/lh_source_net.1.po
index d3960c8..7864324 100644
--- a/manpages/po/de/lh_source_net.1.po
+++ b/manpages/po/de/lh_source_net.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_tar.1.po b/manpages/po/de/lh_source_tar.1.po
index 6b083bc..4e1ae9a 100644
--- a/manpages/po/de/lh_source_tar.1.po
+++ b/manpages/po/de/lh_source_tar.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_usb.1.po b/manpages/po/de/lh_source_usb.1.po
index 1b8940d..9ff38a4 100644
--- a/manpages/po/de/lh_source_usb.1.po
+++ b/manpages/po/de/lh_source_usb.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_source_virtual-hdd.1.po b/manpages/po/de/lh_source_virtual-hdd.1.po
index 26a84f4..d353739 100644
--- a/manpages/po/de/lh_source_virtual-hdd.1.po
+++ b/manpages/po/de/lh_source_virtual-hdd.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-09 11:47+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/lh_testroot.1.po b/manpages/po/de/lh_testroot.1.po
index 2e68aa5..8a0e0bf 100644
--- a/manpages/po/de/lh_testroot.1.po
+++ b/manpages/po/de/lh_testroot.1.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/po/de/live-helper.7.po b/manpages/po/de/live-helper.7.po
index 139dccf..f722cbe 100644
--- a/manpages/po/de/live-helper.7.po
+++ b/manpages/po/de/live-helper.7.po
@@ -4,8 +4,8 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: live-helper 2.0~a22\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"Project-Id-Version: live-helper 2.0~a23\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: 2010-05-08 23:50+0300\n"
"Last-Translator: Daniel Baumann <daniel at debian.org>\n"
"Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr "LIVE-HELPER"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
-msgstr "10.08.2010"
+msgid "2010-08-14"
+msgstr "14.08.2010"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
@@ -117,8 +117,8 @@ msgstr "10.08.2010"
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
-msgstr "2.0~a22"
+msgid "2.0~a23"
+msgstr "2.0~a23"
#. type: TH
#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1
diff --git a/manpages/pot/lh.1.pot b/manpages/pot/lh.1.pot
index afac2bc..0f3006c 100644
--- a/manpages/pot/lh.1.pot
+++ b/manpages/pot/lh.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary.1.pot b/manpages/pot/lh_binary.1.pot
index 1f5ea7c..dda8c74 100644
--- a/manpages/pot/lh_binary.1.pot
+++ b/manpages/pot/lh_binary.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_checksums.1.pot b/manpages/pot/lh_binary_checksums.1.pot
index cc336d8..9a8d4b2 100644
--- a/manpages/pot/lh_binary_checksums.1.pot
+++ b/manpages/pot/lh_binary_checksums.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_chroot.1.pot b/manpages/pot/lh_binary_chroot.1.pot
index 321c48e..e1d59aa 100644
--- a/manpages/pot/lh_binary_chroot.1.pot
+++ b/manpages/pot/lh_binary_chroot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_debian-installer.1.pot b/manpages/pot/lh_binary_debian-installer.1.pot
index d9d1a8e..ec7ea46 100644
--- a/manpages/pot/lh_binary_debian-installer.1.pot
+++ b/manpages/pot/lh_binary_debian-installer.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_disk.1.pot b/manpages/pot/lh_binary_disk.1.pot
index 93516cb..c35ca39 100644
--- a/manpages/pot/lh_binary_disk.1.pot
+++ b/manpages/pot/lh_binary_disk.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_encryption.1.pot b/manpages/pot/lh_binary_encryption.1.pot
index f0c9beb..5cbf23c 100644
--- a/manpages/pot/lh_binary_encryption.1.pot
+++ b/manpages/pot/lh_binary_encryption.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_grub.1.pot b/manpages/pot/lh_binary_grub.1.pot
index 4bf0a33..2062aa1 100644
--- a/manpages/pot/lh_binary_grub.1.pot
+++ b/manpages/pot/lh_binary_grub.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_grub2.1.pot b/manpages/pot/lh_binary_grub2.1.pot
index 72d6e74..bcdd117 100644
--- a/manpages/pot/lh_binary_grub2.1.pot
+++ b/manpages/pot/lh_binary_grub2.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_includes.1.pot b/manpages/pot/lh_binary_includes.1.pot
index 070638d..f5bf9c1 100644
--- a/manpages/pot/lh_binary_includes.1.pot
+++ b/manpages/pot/lh_binary_includes.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_iso.1.pot b/manpages/pot/lh_binary_iso.1.pot
index 1ef1ffd..694bb01 100644
--- a/manpages/pot/lh_binary_iso.1.pot
+++ b/manpages/pot/lh_binary_iso.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_linux-image.1.pot b/manpages/pot/lh_binary_linux-image.1.pot
index a69800b..efb45ef 100644
--- a/manpages/pot/lh_binary_linux-image.1.pot
+++ b/manpages/pot/lh_binary_linux-image.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_local-hooks.1.pot b/manpages/pot/lh_binary_local-hooks.1.pot
index 8016559..976e207 100644
--- a/manpages/pot/lh_binary_local-hooks.1.pot
+++ b/manpages/pot/lh_binary_local-hooks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_local-includes.1.pot b/manpages/pot/lh_binary_local-includes.1.pot
index 7096212..5ac57f6 100644
--- a/manpages/pot/lh_binary_local-includes.1.pot
+++ b/manpages/pot/lh_binary_local-includes.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_local-packageslists.1.pot b/manpages/pot/lh_binary_local-packageslists.1.pot
index 8b39f98..b5fbd9b 100644
--- a/manpages/pot/lh_binary_local-packageslists.1.pot
+++ b/manpages/pot/lh_binary_local-packageslists.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_manifest.1.pot b/manpages/pot/lh_binary_manifest.1.pot
index 52ec99f..d490165 100644
--- a/manpages/pot/lh_binary_manifest.1.pot
+++ b/manpages/pot/lh_binary_manifest.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_memtest.1.pot b/manpages/pot/lh_binary_memtest.1.pot
index 283cd64..4dcac2a 100644
--- a/manpages/pot/lh_binary_memtest.1.pot
+++ b/manpages/pot/lh_binary_memtest.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_net.1.pot b/manpages/pot/lh_binary_net.1.pot
index 727aa02..6b8c4a5 100644
--- a/manpages/pot/lh_binary_net.1.pot
+++ b/manpages/pot/lh_binary_net.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_rootfs.1.pot b/manpages/pot/lh_binary_rootfs.1.pot
index 1ad6d25..0d10103 100644
--- a/manpages/pot/lh_binary_rootfs.1.pot
+++ b/manpages/pot/lh_binary_rootfs.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_silo.1.pot b/manpages/pot/lh_binary_silo.1.pot
index 052e7c6..601ae47 100644
--- a/manpages/pot/lh_binary_silo.1.pot
+++ b/manpages/pot/lh_binary_silo.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_syslinux.1.pot b/manpages/pot/lh_binary_syslinux.1.pot
index 74aa9b6..04d7320 100644
--- a/manpages/pot/lh_binary_syslinux.1.pot
+++ b/manpages/pot/lh_binary_syslinux.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_tar.1.pot b/manpages/pot/lh_binary_tar.1.pot
index c426417..183a4c6 100644
--- a/manpages/pot/lh_binary_tar.1.pot
+++ b/manpages/pot/lh_binary_tar.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_usb.1.pot b/manpages/pot/lh_binary_usb.1.pot
index df80b94..25fa751 100644
--- a/manpages/pot/lh_binary_usb.1.pot
+++ b/manpages/pot/lh_binary_usb.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_virtual-hdd.1.pot b/manpages/pot/lh_binary_virtual-hdd.1.pot
index 303ddc0..36a286a 100644
--- a/manpages/pot/lh_binary_virtual-hdd.1.pot
+++ b/manpages/pot/lh_binary_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_win32-loader.1.pot b/manpages/pot/lh_binary_win32-loader.1.pot
index 3a7d221..e7dc9c8 100644
--- a/manpages/pot/lh_binary_win32-loader.1.pot
+++ b/manpages/pot/lh_binary_win32-loader.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_binary_yaboot.1.pot b/manpages/pot/lh_binary_yaboot.1.pot
index bd751e1..f528b6e 100644
--- a/manpages/pot/lh_binary_yaboot.1.pot
+++ b/manpages/pot/lh_binary_yaboot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap.1.pot b/manpages/pot/lh_bootstrap.1.pot
index c189023..9c2e160 100644
--- a/manpages/pot/lh_bootstrap.1.pot
+++ b/manpages/pot/lh_bootstrap.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_cache.1.pot b/manpages/pot/lh_bootstrap_cache.1.pot
index 8b60bb2..c433c04 100644
--- a/manpages/pot/lh_bootstrap_cache.1.pot
+++ b/manpages/pot/lh_bootstrap_cache.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_cdebootstrap.1.pot b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
index ad6b120..4774444 100644
--- a/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
+++ b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_copy.1.pot b/manpages/pot/lh_bootstrap_copy.1.pot
index c4235b2..7efff3f 100644
--- a/manpages/pot/lh_bootstrap_copy.1.pot
+++ b/manpages/pot/lh_bootstrap_copy.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_bootstrap_debootstrap.1.pot b/manpages/pot/lh_bootstrap_debootstrap.1.pot
index 754e03b..327805a 100644
--- a/manpages/pot/lh_bootstrap_debootstrap.1.pot
+++ b/manpages/pot/lh_bootstrap_debootstrap.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_build.1.pot b/manpages/pot/lh_build.1.pot
index 6313228..bc4e6f3 100644
--- a/manpages/pot/lh_build.1.pot
+++ b/manpages/pot/lh_build.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot.1.pot b/manpages/pot/lh_chroot.1.pot
index bbda671..105a2fe 100644
--- a/manpages/pot/lh_chroot.1.pot
+++ b/manpages/pot/lh_chroot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_apt.1.pot b/manpages/pot/lh_chroot_apt.1.pot
index e7dae62..feb239a 100644
--- a/manpages/pot/lh_chroot_apt.1.pot
+++ b/manpages/pot/lh_chroot_apt.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_cache.1.pot b/manpages/pot/lh_chroot_cache.1.pot
index 4ca47f4..58b5c90 100644
--- a/manpages/pot/lh_chroot_cache.1.pot
+++ b/manpages/pot/lh_chroot_cache.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_debianchroot.1.pot b/manpages/pot/lh_chroot_debianchroot.1.pot
index 5f30f61..873982b 100644
--- a/manpages/pot/lh_chroot_debianchroot.1.pot
+++ b/manpages/pot/lh_chroot_debianchroot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_devpts.1.pot b/manpages/pot/lh_chroot_devpts.1.pot
index da20aac..27a81b1 100644
--- a/manpages/pot/lh_chroot_devpts.1.pot
+++ b/manpages/pot/lh_chroot_devpts.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_dpkg.1.pot b/manpages/pot/lh_chroot_dpkg.1.pot
index cf99879..d1fab12 100644
--- a/manpages/pot/lh_chroot_dpkg.1.pot
+++ b/manpages/pot/lh_chroot_dpkg.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hacks.1.pot b/manpages/pot/lh_chroot_hacks.1.pot
index e905f02..ab1c746 100644
--- a/manpages/pot/lh_chroot_hacks.1.pot
+++ b/manpages/pot/lh_chroot_hacks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hooks.1.pot b/manpages/pot/lh_chroot_hooks.1.pot
index b0372ee..1f26de2 100644
--- a/manpages/pot/lh_chroot_hooks.1.pot
+++ b/manpages/pot/lh_chroot_hooks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hostname.1.pot b/manpages/pot/lh_chroot_hostname.1.pot
index 7f673d4..b9f4924 100644
--- a/manpages/pot/lh_chroot_hostname.1.pot
+++ b/manpages/pot/lh_chroot_hostname.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_hosts.1.pot b/manpages/pot/lh_chroot_hosts.1.pot
index d64a8d0..14cf15a 100644
--- a/manpages/pot/lh_chroot_hosts.1.pot
+++ b/manpages/pot/lh_chroot_hosts.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_install-packages.1.pot b/manpages/pot/lh_chroot_install-packages.1.pot
index 5f8c154..5e7ff9b 100644
--- a/manpages/pot/lh_chroot_install-packages.1.pot
+++ b/manpages/pot/lh_chroot_install-packages.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_interactive.1.pot b/manpages/pot/lh_chroot_interactive.1.pot
index 1ee7df4..645094c 100644
--- a/manpages/pot/lh_chroot_interactive.1.pot
+++ b/manpages/pot/lh_chroot_interactive.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_linux-image.1.pot b/manpages/pot/lh_chroot_linux-image.1.pot
index 56ec22d..af0362d 100644
--- a/manpages/pot/lh_chroot_linux-image.1.pot
+++ b/manpages/pot/lh_chroot_linux-image.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-hooks.1.pot b/manpages/pot/lh_chroot_local-hooks.1.pot
index ba5eb7e..594eeae 100644
--- a/manpages/pot/lh_chroot_local-hooks.1.pot
+++ b/manpages/pot/lh_chroot_local-hooks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-includes.1.pot b/manpages/pot/lh_chroot_local-includes.1.pot
index 79feab3..fe52520 100644
--- a/manpages/pot/lh_chroot_local-includes.1.pot
+++ b/manpages/pot/lh_chroot_local-includes.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-packages.1.pot b/manpages/pot/lh_chroot_local-packages.1.pot
index 1b44973..22a4cbf 100644
--- a/manpages/pot/lh_chroot_local-packages.1.pot
+++ b/manpages/pot/lh_chroot_local-packages.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-packageslists.1.pot b/manpages/pot/lh_chroot_local-packageslists.1.pot
index 15c9c58..442d49c 100644
--- a/manpages/pot/lh_chroot_local-packageslists.1.pot
+++ b/manpages/pot/lh_chroot_local-packageslists.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-patches.1.pot b/manpages/pot/lh_chroot_local-patches.1.pot
index 45f7396..400096b 100644
--- a/manpages/pot/lh_chroot_local-patches.1.pot
+++ b/manpages/pot/lh_chroot_local-patches.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_local-preseed.1.pot b/manpages/pot/lh_chroot_local-preseed.1.pot
index 05b8327..702033c 100644
--- a/manpages/pot/lh_chroot_local-preseed.1.pot
+++ b/manpages/pot/lh_chroot_local-preseed.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_localization.1.pot b/manpages/pot/lh_chroot_localization.1.pot
index 3c46b75..17e29ba 100644
--- a/manpages/pot/lh_chroot_localization.1.pot
+++ b/manpages/pot/lh_chroot_localization.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_packages.1.pot b/manpages/pot/lh_chroot_packages.1.pot
index b0d02ac..c0da26c 100644
--- a/manpages/pot/lh_chroot_packages.1.pot
+++ b/manpages/pot/lh_chroot_packages.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_packageslists.1.pot b/manpages/pot/lh_chroot_packageslists.1.pot
index f63c8f2..0cefdc9 100644
--- a/manpages/pot/lh_chroot_packageslists.1.pot
+++ b/manpages/pot/lh_chroot_packageslists.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_preseed.1.pot b/manpages/pot/lh_chroot_preseed.1.pot
index 2170e48..660db6a 100644
--- a/manpages/pot/lh_chroot_preseed.1.pot
+++ b/manpages/pot/lh_chroot_preseed.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_proc.1.pot b/manpages/pot/lh_chroot_proc.1.pot
index 5c85ec7..bc9a2a7 100644
--- a/manpages/pot/lh_chroot_proc.1.pot
+++ b/manpages/pot/lh_chroot_proc.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_resolv.1.pot b/manpages/pot/lh_chroot_resolv.1.pot
index 074f4c6..873f67e 100644
--- a/manpages/pot/lh_chroot_resolv.1.pot
+++ b/manpages/pot/lh_chroot_resolv.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_selinuxfs.1.pot b/manpages/pot/lh_chroot_selinuxfs.1.pot
index 02e3eff..816ac3f 100644
--- a/manpages/pot/lh_chroot_selinuxfs.1.pot
+++ b/manpages/pot/lh_chroot_selinuxfs.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sources.1.pot b/manpages/pot/lh_chroot_sources.1.pot
index ecd7261..55abf51 100644
--- a/manpages/pot/lh_chroot_sources.1.pot
+++ b/manpages/pot/lh_chroot_sources.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_symlinks.1.pot b/manpages/pot/lh_chroot_symlinks.1.pot
index f93fcc2..fdf26e3 100644
--- a/manpages/pot/lh_chroot_symlinks.1.pot
+++ b/manpages/pot/lh_chroot_symlinks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sysfs.1.pot b/manpages/pot/lh_chroot_sysfs.1.pot
index f601558..bc66d88 100644
--- a/manpages/pot/lh_chroot_sysfs.1.pot
+++ b/manpages/pot/lh_chroot_sysfs.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sysv-rc.1.pot b/manpages/pot/lh_chroot_sysv-rc.1.pot
index 7e463c6..2420894 100644
--- a/manpages/pot/lh_chroot_sysv-rc.1.pot
+++ b/manpages/pot/lh_chroot_sysv-rc.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_sysvinit.1.pot b/manpages/pot/lh_chroot_sysvinit.1.pot
index 77cf07c..f9bbedb 100644
--- a/manpages/pot/lh_chroot_sysvinit.1.pot
+++ b/manpages/pot/lh_chroot_sysvinit.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_tasks.1.pot b/manpages/pot/lh_chroot_tasks.1.pot
index f2503e7..49e31af 100644
--- a/manpages/pot/lh_chroot_tasks.1.pot
+++ b/manpages/pot/lh_chroot_tasks.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_chroot_upstart.1.pot b/manpages/pot/lh_chroot_upstart.1.pot
index 0d5b623..d094bbe 100644
--- a/manpages/pot/lh_chroot_upstart.1.pot
+++ b/manpages/pot/lh_chroot_upstart.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_clean.1.pot b/manpages/pot/lh_clean.1.pot
index 979fc9a..e4e3670 100644
--- a/manpages/pot/lh_clean.1.pot
+++ b/manpages/pot/lh_clean.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_config.1.pot b/manpages/pot/lh_config.1.pot
index ad8ff78..c0424ad 100644
--- a/manpages/pot/lh_config.1.pot
+++ b/manpages/pot/lh_config.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
@@ -1853,9 +1853,9 @@ 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."
+"defines which hooks available in /usr/share/live/build/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
@@ -1895,7 +1895,7 @@ msgstr ""
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/."
+"By default, this is set to /usr/share/live/build/includes/."
msgstr ""
#. type: IP
@@ -2345,8 +2345,8 @@ 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 "
+"defines which lists available in /usr/share/live/build/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)."
@@ -2377,7 +2377,7 @@ msgstr ""
#: en/lh_config.1:383
msgid ""
"enables one of available third-party repository configurations in /usr/share/"
-"live-helper/repositories."
+"live/build/repositories."
msgstr ""
#. type: IP
@@ -2572,7 +2572,7 @@ msgstr ""
#: 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/."
+"bootloaders. By default, this is set to /usr/share/live/build/templates/."
msgstr ""
#. type: IP
diff --git a/manpages/pot/lh_local.1.pot b/manpages/pot/lh_local.1.pot
index c6e3319..2060373 100644
--- a/manpages/pot/lh_local.1.pot
+++ b/manpages/pot/lh_local.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source.1.pot b/manpages/pot/lh_source.1.pot
index f42b946..a98392b 100644
--- a/manpages/pot/lh_source.1.pot
+++ b/manpages/pot/lh_source.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_checksums.1.pot b/manpages/pot/lh_source_checksums.1.pot
index d26ef77..fccb4ed 100644
--- a/manpages/pot/lh_source_checksums.1.pot
+++ b/manpages/pot/lh_source_checksums.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_debian-live.1.pot b/manpages/pot/lh_source_debian-live.1.pot
index 8b87910..10874a3 100644
--- a/manpages/pot/lh_source_debian-live.1.pot
+++ b/manpages/pot/lh_source_debian-live.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_debian.1.pot b/manpages/pot/lh_source_debian.1.pot
index dbaad8f..0d6a325 100644
--- a/manpages/pot/lh_source_debian.1.pot
+++ b/manpages/pot/lh_source_debian.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_disk.1.pot b/manpages/pot/lh_source_disk.1.pot
index 310ba58..5b4e764 100644
--- a/manpages/pot/lh_source_disk.1.pot
+++ b/manpages/pot/lh_source_disk.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_iso.1.pot b/manpages/pot/lh_source_iso.1.pot
index 9452c07..e044db8 100644
--- a/manpages/pot/lh_source_iso.1.pot
+++ b/manpages/pot/lh_source_iso.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_net.1.pot b/manpages/pot/lh_source_net.1.pot
index 73eb9ef..b0a6120 100644
--- a/manpages/pot/lh_source_net.1.pot
+++ b/manpages/pot/lh_source_net.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_tar.1.pot b/manpages/pot/lh_source_tar.1.pot
index 4cac658..21939c2 100644
--- a/manpages/pot/lh_source_tar.1.pot
+++ b/manpages/pot/lh_source_tar.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_usb.1.pot b/manpages/pot/lh_source_usb.1.pot
index 93963e4..f9d3a65 100644
--- a/manpages/pot/lh_source_usb.1.pot
+++ b/manpages/pot/lh_source_usb.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_source_virtual-hdd.1.pot b/manpages/pot/lh_source_virtual-hdd.1.pot
index 2c794c1..c126e9d 100644
--- a/manpages/pot/lh_source_virtual-hdd.1.pot
+++ b/manpages/pot/lh_source_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/lh_testroot.1.pot b/manpages/pot/lh_testroot.1.pot
index 3efffc5..3818e46 100644
--- a/manpages/pot/lh_testroot.1.pot
+++ b/manpages/pot/lh_testroot.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/manpages/pot/live-helper.7.pot b/manpages/pot/live-helper.7.pot
index ea5ffa8..96046e5 100644
--- a/manpages/pot/live-helper.7.pot
+++ b/manpages/pot/live-helper.7.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-helper VERSION\n"
-"POT-Creation-Date: 2010-08-10 04:21+0300\n"
+"POT-Creation-Date: 2010-08-14 20:49+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -82,7 +82,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2010-08-10"
+msgid "2010-08-14"
msgstr ""
#. type: TH
@@ -117,7 +117,7 @@ msgstr ""
#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1
#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1
#, no-wrap
-msgid "2.0~a22"
+msgid "2.0~a23"
msgstr ""
#. type: TH
diff --git a/scripts/build.sh b/scripts/build.sh
index 59d475f..4c156c5 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-LH_BASE="${LH_BASE:-/usr/share/live-helper}"
+LH_BASE="${LH_BASE:-/usr/share/live/build}"
# Source global functions
for FUNCTION in "${LH_BASE}"/functions/*.sh
diff --git a/scripts/build/binary b/scripts/build/binary
index 41199dc..33c2f5c 100755
--- a/scripts/build/binary
+++ b/scripts/build/binary
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build binary images')"
diff --git a/scripts/build/binary_checksums b/scripts/build/binary_checksums
index 8fec891..5ad6ad0 100755
--- a/scripts/build/binary_checksums
+++ b/scripts/build/binary_checksums
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'create binary checksums')"
diff --git a/scripts/build/binary_chroot b/scripts/build/binary_chroot
index 88f3773..1ed51e0 100755
--- a/scripts/build/binary_chroot
+++ b/scripts/build/binary_chroot
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'copy chroot into chroot')"
diff --git a/scripts/build/binary_debian-installer b/scripts/build/binary_debian-installer
index fa7b022..a02efde 100755
--- a/scripts/build/binary_debian-installer
+++ b/scripts/build/binary_debian-installer
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install debian-installer into binary')"
diff --git a/scripts/build/binary_disk b/scripts/build/binary_disk
index e262c20..4e28d9d 100755
--- a/scripts/build/binary_disk
+++ b/scripts/build/binary_disk
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install disk information into binary')"
@@ -82,6 +82,28 @@ then
> binary/.disk/archive_trace
fi
+case "${LH_INITRAMFS}" in
+ casper)
+ for INITRD in binary/casper/initrd.img*
+ do
+ mkdir uuid
+ cd uuid
+
+ zcat "../${INITRD}" | cpio --quiet -id conf/uuid.conf
+
+ if [ -e conf/uuid.conf ]
+ then
+ mv conf/uuid.conf "../binary/.disk/casper-uuid${INITRD#binary/casper/initrd.img}"
+ else
+ Echo_warning "Failed to find casper uuid.conf in '${INITRD}'"
+ fi
+
+ cd ..
+ rm -rf uuid
+ done
+ ;;
+esac
+
case "${LH_DEBIAN_INSTALLER}" in
cdrom)
echo "main" > binary/.disk/base_components
diff --git a/scripts/build/binary_encryption b/scripts/build/binary_encryption
index 8041986..2fd2c06 100755
--- a/scripts/build/binary_encryption
+++ b/scripts/build/binary_encryption
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'encrypts rootfs')"
diff --git a/scripts/build/binary_grub b/scripts/build/binary_grub
index e2f3a58..2c441ce 100755
--- a/scripts/build/binary_grub
+++ b/scripts/build/binary_grub
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'installs grub into binary')"
diff --git a/scripts/build/binary_grub2 b/scripts/build/binary_grub2
index c17730c..b623301 100755
--- a/scripts/build/binary_grub2
+++ b/scripts/build/binary_grub2
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'installs grub2 into binary')"
diff --git a/scripts/build/binary_includes b/scripts/build/binary_includes
index d9b82b5..e80980e 100755
--- a/scripts/build/binary_includes
+++ b/scripts/build/binary_includes
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'copy files into binary')"
diff --git a/scripts/build/binary_iso b/scripts/build/binary_iso
index 56de7eb..a8e4503 100755
--- a/scripts/build/binary_iso
+++ b/scripts/build/binary_iso
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build iso binary image')"
diff --git a/scripts/build/binary_linux-image b/scripts/build/binary_linux-image
index 1915e8f..5552d4d 100755
--- a/scripts/build/binary_linux-image
+++ b/scripts/build/binary_linux-image
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install linux-image into binary')"
diff --git a/scripts/build/binary_local-hooks b/scripts/build/binary_local-hooks
index 070c36f..68d86ba 100755
--- a/scripts/build/binary_local-hooks
+++ b/scripts/build/binary_local-hooks
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'execute local hooks in binary')"
diff --git a/scripts/build/binary_local-includes b/scripts/build/binary_local-includes
index e23ae89..aaf0eea 100755
--- a/scripts/build/binary_local-includes
+++ b/scripts/build/binary_local-includes
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'copy files into binary')"
diff --git a/scripts/build/binary_local-packageslists b/scripts/build/binary_local-packageslists
index e7c8a50..b77bfa6 100755
--- a/scripts/build/binary_local-packageslists
+++ b/scripts/build/binary_local-packageslists
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install local packages into binary')"
diff --git a/scripts/build/binary_manifest b/scripts/build/binary_manifest
index d3e0f8a..1174817 100755
--- a/scripts/build/binary_manifest
+++ b/scripts/build/binary_manifest
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'create manifest')"
diff --git a/scripts/build/binary_memtest b/scripts/build/binary_memtest
index c739c3a..a6a9ab7 100755
--- a/scripts/build/binary_memtest
+++ b/scripts/build/binary_memtest
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'installs a memtest into binary')"
diff --git a/scripts/build/binary_net b/scripts/build/binary_net
index 5646455..d401f9c 100755
--- a/scripts/build/binary_net
+++ b/scripts/build/binary_net
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build netboot binary image')"
diff --git a/scripts/build/binary_rootfs b/scripts/build/binary_rootfs
index 58284fd..a07563e 100755
--- a/scripts/build/binary_rootfs
+++ b/scripts/build/binary_rootfs
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build rootfs image')"
diff --git a/scripts/build/binary_silo b/scripts/build/binary_silo
index e527c7f..b76ef2a 100755
--- a/scripts/build/binary_silo
+++ b/scripts/build/binary_silo
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'installs silo into binary')"
diff --git a/scripts/build/binary_syslinux b/scripts/build/binary_syslinux
index e4293bb..698da62 100755
--- a/scripts/build/binary_syslinux
+++ b/scripts/build/binary_syslinux
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'installs syslinux into binary')"
diff --git a/scripts/build/binary_tar b/scripts/build/binary_tar
index df3f306..5d8106c 100755
--- a/scripts/build/binary_tar
+++ b/scripts/build/binary_tar
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build harddisk binary image')"
diff --git a/scripts/build/binary_usb b/scripts/build/binary_usb
index 13aa76c..19a6a7e 100755
--- a/scripts/build/binary_usb
+++ b/scripts/build/binary_usb
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build binary image')"
diff --git a/scripts/build/binary_virtual-hdd b/scripts/build/binary_virtual-hdd
index ac864b9..45238d9 100755
--- a/scripts/build/binary_virtual-hdd
+++ b/scripts/build/binary_virtual-hdd
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build binary image')"
diff --git a/scripts/build/binary_win32-loader b/scripts/build/binary_win32-loader
index 1edbc1a..82b8cdb 100755
--- a/scripts/build/binary_win32-loader
+++ b/scripts/build/binary_win32-loader
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'copy win32-loader into binary')"
diff --git a/scripts/build/binary_yaboot b/scripts/build/binary_yaboot
index cf84e2c..49bcc2d 100755
--- a/scripts/build/binary_yaboot
+++ b/scripts/build/binary_yaboot
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'installs yaboot into binary')"
diff --git a/scripts/build/bootstrap b/scripts/build/bootstrap
index 4c4c3b7..3e267e2 100755
--- a/scripts/build/bootstrap
+++ b/scripts/build/bootstrap
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'bootstrap a Debian system')"
diff --git a/scripts/build/bootstrap_cache b/scripts/build/bootstrap_cache
index 381276a..22e34aa 100755
--- a/scripts/build/bootstrap_cache
+++ b/scripts/build/bootstrap_cache
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'cache bootstrap stage')"
diff --git a/scripts/build/bootstrap_cdebootstrap b/scripts/build/bootstrap_cdebootstrap
index 7925ebd..bf879c4 100755
--- a/scripts/build/bootstrap_cdebootstrap
+++ b/scripts/build/bootstrap_cdebootstrap
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')"
diff --git a/scripts/build/bootstrap_copy b/scripts/build/bootstrap_copy
index d5e0cc5..3940d3f 100755
--- a/scripts/build/bootstrap_copy
+++ b/scripts/build/bootstrap_copy
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'bootstrap by copying the host system')"
diff --git a/scripts/build/bootstrap_debootstrap b/scripts/build/bootstrap_debootstrap
index 677817b..45d956f 100755
--- a/scripts/build/bootstrap_debootstrap
+++ b/scripts/build/bootstrap_debootstrap
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'bootstrap a Debian system with debootstrap(8)')"
diff --git a/scripts/build/build b/scripts/build/build
index dcd0cb2..c9abacc 100755
--- a/scripts/build/build
+++ b/scripts/build/build
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Automatically populating config tree
if [ -x auto/config ] && [ ! -e .stage/config ]
diff --git a/scripts/build/chroot b/scripts/build/chroot
index 96dbfe7..abb69c6 100755
--- a/scripts/build/chroot
+++ b/scripts/build/chroot
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'customize the Debian system')"
diff --git a/scripts/build/chroot_apt b/scripts/build/chroot_apt
index c95d649..9a97c37 100755
--- a/scripts/build/chroot_apt
+++ b/scripts/build/chroot_apt
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')"
diff --git a/scripts/build/chroot_cache b/scripts/build/chroot_cache
index 49cc590..a815105 100755
--- a/scripts/build/chroot_cache
+++ b/scripts/build/chroot_cache
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'cache chroot stage')"
diff --git a/scripts/build/chroot_debianchroot b/scripts/build/chroot_debianchroot
index ae37953..df87e2a 100755
--- a/scripts/build/chroot_debianchroot
+++ b/scripts/build/chroot_debianchroot
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/debian_chroot')"
diff --git a/scripts/build/chroot_devpts b/scripts/build/chroot_devpts
index d738d5c..778c959 100755
--- a/scripts/build/chroot_devpts
+++ b/scripts/build/chroot_devpts
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'mount /dev/pts')"
diff --git a/scripts/build/chroot_dpkg b/scripts/build/chroot_dpkg
index 69f87a4..7b01c65 100755
--- a/scripts/build/chroot_dpkg
+++ b/scripts/build/chroot_dpkg
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /sbin/dpkg')"
diff --git a/scripts/build/chroot_dpkg_tmpfs b/scripts/build/chroot_dpkg_tmpfs
index 8d7e264..965a699 100755
--- a/scripts/build/chroot_dpkg_tmpfs
+++ b/scripts/build/chroot_dpkg_tmpfs
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /var/lib/dpkg')"
diff --git a/scripts/build/chroot_hacks b/scripts/build/chroot_hacks
index 5a3f9ae..e07bea9 100755
--- a/scripts/build/chroot_hacks
+++ b/scripts/build/chroot_hacks
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'execute hacks in chroot')"
diff --git a/scripts/build/chroot_hooks b/scripts/build/chroot_hooks
index f5864d8..f5bce98 100755
--- a/scripts/build/chroot_hooks
+++ b/scripts/build/chroot_hooks
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'execute hooks in chroot')"
@@ -42,10 +42,10 @@ HOOKS="$(echo ${LH_HOOKS} ${LH_PACKAGES_LISTS} ${LH_TASKS} | sed -e 's| |\n|g' |
for HOOK in ${HOOKS}
do
- if [ -f ${LH_BASE:-/usr/share/live-helper}/hooks/"${HOOK}" ]
+ if [ -f ${LH_BASE:-/usr/share/live/build}/hooks/"${HOOK}" ]
then
# Copying hook
- cp ${LH_BASE:-/usr/share/live-helper}/hooks/"${HOOK}" chroot/root
+ cp ${LH_BASE:-/usr/share/live/build}/hooks/"${HOOK}" chroot/root
# Making hook executable
if [ ! -x chroot/root/"${HOOK}" ]
diff --git a/scripts/build/chroot_hostname b/scripts/build/chroot_hostname
index 6046f65..11a3200 100755
--- a/scripts/build/chroot_hostname
+++ b/scripts/build/chroot_hostname
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /bin/hostname')"
diff --git a/scripts/build/chroot_hosts b/scripts/build/chroot_hosts
index ce418dd..451c3aa 100755
--- a/scripts/build/chroot_hosts
+++ b/scripts/build/chroot_hosts
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/hosts')"
diff --git a/scripts/build/chroot_install-packages b/scripts/build/chroot_install-packages
index 3b491ad..6a6fb1e 100755
--- a/scripts/build/chroot_install-packages
+++ b/scripts/build/chroot_install-packages
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install queued packages into chroot')"
diff --git a/scripts/build/chroot_interactive b/scripts/build/chroot_interactive
index 360557e..df41749 100755
--- a/scripts/build/chroot_interactive
+++ b/scripts/build/chroot_interactive
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'make build interactive')"
diff --git a/scripts/build/chroot_linux-image b/scripts/build/chroot_linux-image
index 5f19775..22183ea 100755
--- a/scripts/build/chroot_linux-image
+++ b/scripts/build/chroot_linux-image
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/kernel-img.conf')"
diff --git a/scripts/build/chroot_local-hooks b/scripts/build/chroot_local-hooks
index 1cca5e4..ebaff31 100755
--- a/scripts/build/chroot_local-hooks
+++ b/scripts/build/chroot_local-hooks
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'execute local hooks in chroot')"
diff --git a/scripts/build/chroot_local-includes b/scripts/build/chroot_local-includes
index 5a4052f..d032c94 100755
--- a/scripts/build/chroot_local-includes
+++ b/scripts/build/chroot_local-includes
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'copy local files into chroot')"
diff --git a/scripts/build/chroot_local-packages b/scripts/build/chroot_local-packages
index a9d39bd..192626f 100755
--- a/scripts/build/chroot_local-packages
+++ b/scripts/build/chroot_local-packages
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'queue install of local packages into chroot')"
diff --git a/scripts/build/chroot_local-packageslists b/scripts/build/chroot_local-packageslists
index cee46e6..faffea2 100755
--- a/scripts/build/chroot_local-packageslists
+++ b/scripts/build/chroot_local-packageslists
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'queue install of local packages lists into chroot')"
diff --git a/scripts/build/chroot_local-patches b/scripts/build/chroot_local-patches
index 6c5e8b4..9dccda6 100755
--- a/scripts/build/chroot_local-patches
+++ b/scripts/build/chroot_local-patches
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'apply local patches against chroot')"
diff --git a/scripts/build/chroot_local-preseed b/scripts/build/chroot_local-preseed
index 82eaa17..86884ce 100755
--- a/scripts/build/chroot_local-preseed
+++ b/scripts/build/chroot_local-preseed
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'execute local preseed in chroot')"
diff --git a/scripts/build/chroot_localization b/scripts/build/chroot_localization
index eebfd6d..8c14b76 100755
--- a/scripts/build/chroot_localization
+++ b/scripts/build/chroot_localization
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install localization packages into chroot')"
diff --git a/scripts/build/chroot_packages b/scripts/build/chroot_packages
index b612cf9..61683b6 100755
--- a/scripts/build/chroot_packages
+++ b/scripts/build/chroot_packages
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'queue install of packages into chroot')"
diff --git a/scripts/build/chroot_packageslists b/scripts/build/chroot_packageslists
index 00699d7..e69f446 100755
--- a/scripts/build/chroot_packageslists
+++ b/scripts/build/chroot_packageslists
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'queue install of packages lists into chroot')"
diff --git a/scripts/build/chroot_preseed b/scripts/build/chroot_preseed
index 4ec7b2f..49be452 100755
--- a/scripts/build/chroot_preseed
+++ b/scripts/build/chroot_preseed
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'execute preseed in chroot')"
@@ -40,7 +40,7 @@ Create_lockfile .lock
# Processing preseeds
for PRESEED in ${LH_PACKAGES_LISTS} ${LH_TASKS}
do
- if [ -f ${LH_BASE:-/usr/share/live-helper}/preseed/"${PRESEED}" ]
+ if [ -f ${LH_BASE:-/usr/share/live/build}/preseed/"${PRESEED}" ]
then
# Check dependency
Check_package chroot/usr/bin/debconf-set-selections debconf
diff --git a/scripts/build/chroot_proc b/scripts/build/chroot_proc
index 6992ad6..df7b6f5 100755
--- a/scripts/build/chroot_proc
+++ b/scripts/build/chroot_proc
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'mount /proc')"
diff --git a/scripts/build/chroot_resolv b/scripts/build/chroot_resolv
index d8b553c..b5a7d32 100755
--- a/scripts/build/chroot_resolv
+++ b/scripts/build/chroot_resolv
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/resolv.conf')"
diff --git a/scripts/build/chroot_selinuxfs b/scripts/build/chroot_selinuxfs
index 23523d2..0ec2a7d 100755
--- a/scripts/build/chroot_selinuxfs
+++ b/scripts/build/chroot_selinuxfs
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'mount /selinux')"
diff --git a/scripts/build/chroot_sources b/scripts/build/chroot_sources
index f18cb6b..c8ed480 100755
--- a/scripts/build/chroot_sources
+++ b/scripts/build/chroot_sources
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /etc/apt/sources.list')"
diff --git a/scripts/build/chroot_symlinks b/scripts/build/chroot_symlinks
index c256780..703172c 100755
--- a/scripts/build/chroot_symlinks
+++ b/scripts/build/chroot_symlinks
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'convert symlinks')"
diff --git a/scripts/build/chroot_sysfs b/scripts/build/chroot_sysfs
index 8578841..ef9d2ec 100755
--- a/scripts/build/chroot_sysfs
+++ b/scripts/build/chroot_sysfs
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'mount /sys')"
diff --git a/scripts/build/chroot_sysv-rc b/scripts/build/chroot_sysv-rc
index 2154ff4..5c844a9 100755
--- a/scripts/build/chroot_sysv-rc
+++ b/scripts/build/chroot_sysv-rc
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /usr/sbin/policy-rc.d')"
diff --git a/scripts/build/chroot_sysvinit b/scripts/build/chroot_sysvinit
index 7178ce9..e61d42b 100755
--- a/scripts/build/chroot_sysvinit
+++ b/scripts/build/chroot_sysvinit
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'configure sysvinit')"
diff --git a/scripts/build/chroot_tasks b/scripts/build/chroot_tasks
index 892954d..a1626aa 100755
--- a/scripts/build/chroot_tasks
+++ b/scripts/build/chroot_tasks
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install tasks into chroot')"
diff --git a/scripts/build/chroot_upstart b/scripts/build/chroot_upstart
index c80bf86..3493cdd 100755
--- a/scripts/build/chroot_upstart
+++ b/scripts/build/chroot_upstart
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'manage /usr/sbin/initctl')"
diff --git a/scripts/build/clean b/scripts/build/clean
index 13fc185..76a14cb 100755
--- a/scripts/build/clean
+++ b/scripts/build/clean
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Read meta config
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
diff --git a/scripts/build/config b/scripts/build/config
index f4fe415..4d37f44 100755
--- a/scripts/build/config
+++ b/scripts/build/config
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Read meta config
if [ "${1}" != "noauto" ] && [ -x auto/config ]
diff --git a/scripts/build/lh b/scripts/build/lh
index e55feba..1341958 100755
--- a/scripts/build/lh
+++ b/scripts/build/lh
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
@@ -44,9 +44,9 @@ case "${1}" in
if [ -x "${LH_BASE}/scripts/build/${COMMAND}" ]
then
LH=1 exec "${LH_BASE}/scripts/build/${COMMAND}" "${@}"
- elif [ -x /usr/share/live-helper/scripts/build/${COMMAND} ]
+ elif [ -x /usr/share/live/build/scripts/build/${COMMAND} ]
then
- LH=1 exec /usr/share/live-helper/scripts/build/"${COMMAND}" "${@}"
+ LH=1 exec /usr/share/live/build/scripts/build/"${COMMAND}" "${@}"
elif [ -x "$(which ${COMMAND} 2>/dev/null)" ]
then
LH=1 exec "${COMMAND}" "${@}"
diff --git a/scripts/build/live-helper b/scripts/build/live-helper
index 77d867b..6e7163a 100755
--- a/scripts/build/live-helper
+++ b/scripts/build/live-helper
@@ -22,7 +22,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
if [ -x "$(which man 2>/dev/null)" ]
then
diff --git a/scripts/build/source b/scripts/build/source
index 0d04957..6a4004b 100755
--- a/scripts/build/source
+++ b/scripts/build/source
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build source images')"
diff --git a/scripts/build/source_checksums b/scripts/build/source_checksums
index e610c24..2247c81 100755
--- a/scripts/build/source_checksums
+++ b/scripts/build/source_checksums
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'create source checksums')"
diff --git a/scripts/build/source_debian b/scripts/build/source_debian
index df7e51e..1f578af 100755
--- a/scripts/build/source_debian
+++ b/scripts/build/source_debian
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'debian sources')"
diff --git a/scripts/build/source_debian-live b/scripts/build/source_debian-live
index e9bcb2f..4751ac7 100755
--- a/scripts/build/source_debian-live
+++ b/scripts/build/source_debian-live
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'copy debian-live config into source')"
diff --git a/scripts/build/source_disk b/scripts/build/source_disk
index 60aff28..75ff0d6 100755
--- a/scripts/build/source_disk
+++ b/scripts/build/source_disk
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'install disk information into source')"
diff --git a/scripts/build/source_iso b/scripts/build/source_iso
index 3b32fbe..af2976c 100755
--- a/scripts/build/source_iso
+++ b/scripts/build/source_iso
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build iso source image')"
diff --git a/scripts/build/source_net b/scripts/build/source_net
index 5cc35c8..a9e653b 100755
--- a/scripts/build/source_net
+++ b/scripts/build/source_net
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build source net image')"
diff --git a/scripts/build/source_tar b/scripts/build/source_tar
index 9da705c..d21ad9c 100755
--- a/scripts/build/source_tar
+++ b/scripts/build/source_tar
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build source tarball')"
diff --git a/scripts/build/source_usb b/scripts/build/source_usb
index 894129a..ca352fd 100755
--- a/scripts/build/source_usb
+++ b/scripts/build/source_usb
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build source image')"
diff --git a/scripts/build/source_virtual-hdd b/scripts/build/source_virtual-hdd
index 607ad73..e429011 100755
--- a/scripts/build/source_virtual-hdd
+++ b/scripts/build/source_virtual-hdd
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'build source image')"
diff --git a/scripts/build/testroot b/scripts/build/testroot
index a4149c4..d797351 100755
--- a/scripts/build/testroot
+++ b/scripts/build/testroot
@@ -10,7 +10,7 @@
set -e
# Including common functions
-. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+. "${LH_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'ensure that a system is built as root')"
--
live-build
More information about the debian-live-changes
mailing list