[SCM] live-build branch, upstream, updated. upstream/3.0_a49-1-gc401aec

Daniel Baumann daniel at debian.org
Wed Jun 6 18:10:04 UTC 2012


The following commit has been merged in the upstream branch:
commit c401aecc1d7634f27b44a7b827e68424440ee7cb
Author: Daniel Baumann <daniel at debian.org>
Date:   Wed Jun 6 20:09:57 2012 +0200

    Adding upstream version 3.0~a50.

diff --git a/Makefile b/Makefile
index dd9f9e2..d6a16e1 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ SHELL := sh -e
 
 LANGUAGES = $(shell cd manpages/po && ls)
 
-SCRIPTS = cgi/live-build-cgi cgi/live-build-cgi.cron cron/live-build-cron* functions/* examples/*/*.sh examples/auto/* scripts/*.sh scripts/*/* share/hooks/*
+SCRIPTS = frontends/cgi/live-build-cgi frontends/cgi/live-build-cgi.cron frontends/cron/live-build-cron* functions/* examples/*/*.sh examples/auto/* scripts/*.sh scripts/*/* share/hooks/*
 
 all: build
 
@@ -40,13 +40,13 @@ build:
 install:
 	# Installing shared data
 	mkdir -p $(DESTDIR)/usr/share/live/build
-	cp -r cgi data examples functions scripts includes package-lists templates VERSION $(DESTDIR)/usr/share/live/build
+	cp -r frontends/cgi data examples functions scripts includes package-lists templates VERSION $(DESTDIR)/usr/share/live/build
 	cp -r share/* $(DESTDIR)/usr/share/live/build
 
 	# Installing executables
 	mkdir -p $(DESTDIR)/usr/bin
 	mv $(DESTDIR)/usr/share/live/build/scripts/build/lb $(DESTDIR)/usr/share/live/build/scripts/build/live-build $(DESTDIR)/usr/bin
-	cp cron/live-* $(DESTDIR)/usr/bin
+	cp frontends/cron/live-* $(DESTDIR)/usr/bin
 
 	# Installing documentation
 	mkdir -p $(DESTDIR)/usr/share/doc/live-build
diff --git a/contrib/graph-helpers/graph-helpers.py b/contrib/graph-helpers/graph-helpers.py
deleted file mode 100755
index a0eceb8..0000000
--- a/contrib/graph-helpers/graph-helpers.py
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/usr/bin/env python
-
-"""
-    live-helper simulated execution graph generator.
-    Copyright (C) 2007  Chris Lamb <chris at chris-lamb.co.uk>
-
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-"""
-
-import sys, re
-import pygraphviz
-
-groups = {
-    'lh_bootstrap' : 'orange',
-    'lh_chroot' : 'red',
-    'lh_source' : 'blue',
-    'lh_binary' : 'green',
-    'lh_build' : 'brown'
-}
-pattern = re.compile(r'^(lh_.+?) ')
-
-def main(start):
-    global prev
-    G = pygraphviz.AGraph(directed=True)
-    G.graph_attr['label'] = 'Simulated execution trace for live-helper.'
-
-    def helper(filename):
-        global prev
-        for line in gen_matches(filename):
-            G.add_edge(prev, line)
-            style(G.get_node(prev), prev)
-            prev = line
-            helper(line)
-
-    prev = start
-    helper(start)
-    G.layout(prog='dot')
-    print G.draw(format='svg')
-
-def style(node, name):
-    if name in groups.keys():
-        node.attr['shape'] = 'box'
-        node.attr['style'] = 'bold'
-    else:
-        node.attr['fontsize'] = '11'
-    for group_name, color in groups.iteritems():
-        if name.startswith(group_name):
-            node.attr['color'] = color
-    return node
-
-def gen_matches(filename):
-    f = open('/usr/bin/%s' % filename, 'r')
-    for line in f.xreadlines():
-        match = pattern.match(line)
-        if match:
-            yield match.group(1)
-    f.close()
-
-if __name__ == "__main__":
-    if len(sys.argv) == 2:
-        main(sys.argv[1])
-    else:
-        main('lh_build')
diff --git a/examples/auto/build b/examples/auto/build
index 34956c1..6d559e8 100755
--- a/examples/auto/build
+++ b/examples/auto/build
@@ -1,3 +1,3 @@
 #!/bin/sh
 
-lb build noauto "${@}" 2>&1 | tee binary.log
+lb build noauto "${@}" 2>&1 | tee build.log
diff --git a/examples/auto/clean b/examples/auto/clean
index 436f52d..3e24032 100755
--- a/examples/auto/clean
+++ b/examples/auto/clean
@@ -1,5 +1,6 @@
 #!/bin/sh
 
 lb clean noauto "${@}"
+
 rm -f config/binary config/bootstrap config/chroot config/common config/source
-rm -f binary.log
+rm -f build.log
diff --git a/cgi/Makefile b/frontends/cgi/Makefile
similarity index 100%
rename from cgi/Makefile
rename to frontends/cgi/Makefile
diff --git a/cgi/live-build-cgi b/frontends/cgi/live-build-cgi
similarity index 100%
rename from cgi/live-build-cgi
rename to frontends/cgi/live-build-cgi
diff --git a/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron
similarity index 100%
rename from cgi/live-build-cgi.cron
rename to frontends/cgi/live-build-cgi.cron
diff --git a/cgi/live-build-cgi.crontab b/frontends/cgi/live-build-cgi.crontab
similarity index 100%
rename from cgi/live-build-cgi.crontab
rename to frontends/cgi/live-build-cgi.crontab
diff --git a/cgi/live-build-cgi.default b/frontends/cgi/live-build-cgi.default
similarity index 91%
rename from cgi/live-build-cgi.default
rename to frontends/cgi/live-build-cgi.default
index 73daa58..50ff303 100644
--- a/cgi/live-build-cgi.default
+++ b/frontends/cgi/live-build-cgi.default
@@ -2,7 +2,7 @@
 
 _WEBBUILD="disabled"
 
-_MODE="debian-official"
+_MODE="debian"
 
 _DEBUG="disabled"
 
diff --git a/cgi/live-build-cgi.logrotate b/frontends/cgi/live-build-cgi.logrotate
similarity index 100%
rename from cgi/live-build-cgi.logrotate
rename to frontends/cgi/live-build-cgi.logrotate
diff --git a/cron/TODO b/frontends/cron/TODO
similarity index 100%
rename from cron/TODO
rename to frontends/cron/TODO
diff --git a/cron/live-build-cron-images b/frontends/cron/live-build-cron-images
similarity index 100%
rename from cron/live-build-cron-images
rename to frontends/cron/live-build-cron-images
diff --git a/cron/live-build-cron-manual b/frontends/cron/live-build-cron-manual
similarity index 100%
rename from cron/live-build-cron-manual
rename to frontends/cron/live-build-cron-manual
diff --git a/functions/defaults.sh b/functions/defaults.sh
index f44df78..efa09b1 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -930,7 +930,7 @@ Set_defaults ()
 	fi
 
 	# Setting checksums
-	LB_CHECKSUMS="${LB_CHECKSUMS:-md5}"
+	LB_CHECKSUMS="${LB_CHECKSUMS:-sha256}"
 
 	# Setting compression
 	case "${LB_MODE}" in
diff --git a/functions/echo.sh b/functions/echo.sh
index 32cb75b..fa6b888 100755
--- a/functions/echo.sh
+++ b/functions/echo.sh
@@ -13,12 +13,7 @@ Echo ()
 	STRING="${1}"
 	shift
 
-	if [ "${_L10N}" = "false" ]
-	then
-		printf "${STRING}\n" "${@}"
-	else
-		printf "$(eval_gettext "${STRING}")" "${@}"; echo;
-	fi
+	printf "${STRING}\n" "${@}"
 }
 
 Echo_debug ()
@@ -28,12 +23,7 @@ Echo_debug ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
-		then
-			printf "D: ${STRING}\n" "${@}"
-		else
-			printf "D: $(eval_gettext "${STRING}")" "${@}"; echo;
-		fi
+		printf "D: ${STRING}\n" "${@}"
 	fi
 }
 
@@ -44,12 +34,7 @@ Echo_debug_running ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
-		then
-			printf "D: ${STRING}" "${@}"
-		else
-			printf "D: $(eval_gettext "${STRING}")" "${@}"
-		fi
+		printf "D: ${STRING}" "${@}"
 
 		if [ "${_COLOR}" = "false" ]
 		then
@@ -72,12 +57,7 @@ Echo_error ()
 		printf "${RED}E${NO_COLOR}:"
 	fi
 
-	if [ "${_L10N}" = "false" ]
-	then
-		printf " ${STRING}\n" "${@}" >&2
-	else
-		(printf " $(eval_gettext "${STRING}")" "${@}"; echo;) >&2
-	fi
+	printf " ${STRING}\n" "${@}" >&2
 }
 
 Echo_message ()
@@ -94,12 +74,7 @@ Echo_message ()
 			printf "${WHITE}P${NO_COLOR}:"
 		fi
 
-		if [ "${_L10N}" = "false" ]
-		then
-			printf " ${STRING}\n" "${@}"
-		else
-			printf " $(eval_gettext "${STRING}")" "${@}"; echo;
-		fi
+		printf " ${STRING}\n" "${@}"
 	fi
 }
 
@@ -117,18 +92,13 @@ Echo_message_running ()
 			printf "${WHITE}P${NO_COLOR}:"
 		fi
 
-		if [ "${_L10N}" = "false" ]
-		then
-			printf " ${STRING}" "${@}"
-		else
-			printf " $(eval_gettext "${STRING}")" "${@}";
-		fi
+		printf " ${STRING}" "${@}"
 
-		if [ "${_COLOR}" = "false" ]
+		if [ "${_COLOR}" = "true" ]
 		then
-			printf "..."
-		else
 			printf "... ${YELLOW}${BLINK}running${NO_COLOR}"
+		else
+			printf "..."
 		fi
 	fi
 }
@@ -140,12 +110,7 @@ Echo_verbose ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
-		then
-			printf "I: ${STRING}\n" "${@}"
-		else
-			printf "I: $(eval_gettext "${STRING}")" "${@}"; echo;
-		fi
+		printf "I: ${STRING}\n" "${@}"
 	fi
 }
 
@@ -156,18 +121,13 @@ Echo_verbose_running ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
-		then
-			printf "I: ${STRING}" "${@}"
-		else
-			printf "I: $(eval_gettext "${STRING}")" "${@}";
-		fi
+		printf "I: ${STRING}" "${@}"
 
-		if [ "${_COLOR}" = "false" ]
+		if [ "${_COLOR}" = "true" ]
 		then
-			printf "..."
-		else
 			printf "... ${YELLOW}${BLINK}running${NO_COLOR}"
+		else
+			printf "..."
 		fi
 	fi
 }
@@ -184,12 +144,7 @@ Echo_warning ()
 		printf "${YELLOW}W${NO_COLOR}:"
 	fi
 
-	if [ "${_L10N}" = "false" ]
-	then
-		printf " ${STRING}\n" "${@}"
-	else
-		printf " $(eval_gettext "${STRING}")" "${@}"; echo;
-	fi
+	printf " ${STRING}\n" "${@}"
 }
 
 Echo_status ()
diff --git a/functions/l10n.sh b/functions/l10n.sh
deleted file mode 100755
index 49cbe8b..0000000
--- a/functions/l10n.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2012 Daniel Baumann <daniel at debian.org>
-##
-## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
-## This is free software, and you are welcome to redistribute it
-## under certain conditions; see COPYING for details.
-
-
-if [ -x "$(which gettext.sh 2>/dev/null)" ] && Find_files /usr/share/locale/*/LC_MESSAGES/${PACKAGE}.mo
-then
-	_L10N="true"
-
-	# gettext domain (.mo file name)
-	TEXTDOMAIN="${PACKAGE}"
-	export TEXTDOMAIN
-
-	# locale dir for gettext codes
-	TEXTDOMAINDIR="/usr/share/locale"
-	export TEXTDOMAINDIR
-
-	# load gettext functions
-	. gettext.sh
-else
-	_L10N="false"
-fi
diff --git a/manpages/bin/update-version.sh b/manpages/bin/update-version.sh
index d01949b..4b0820e 100755
--- a/manpages/bin/update-version.sh
+++ b/manpages/bin/update-version.sh
@@ -1,11 +1,24 @@
 #!/bin/sh
 
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2012 Daniel Baumann <daniel at debian.org>
+##
+## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+## This is free software, and you are welcome to redistribute it
+## under certain conditions; see COPYING for details.
+
+
 set -e
 
-DATE="$(LC_ALL=C date +%Y\\\\-%m\\\\-%d)"
 PROGRAM="LIVE\\\-BUILD"
 VERSION="$(cat ../VERSION)"
 
+DATE="$(LC_ALL=C date +%Y\\\\-%m\\\\-%d)"
+
+DAY="$(LC_ALL=C date +%d)"
+MONTH="$(LC_ALL=C date +%m)"
+YEAR="$(LC_ALL=C date +%Y)"
+
 echo "Updating version headers..."
 
 for MANPAGE in en/*
@@ -14,3 +27,24 @@ do
 
 	sed -i -e "s|^.TH.*$|.TH ${PROGRAM} ${SECTION} ${DATE} ${VERSION} \"Debian Live Project\"|" ${MANPAGE}
 done
+
+# European date format
+for _LANGUAGE in de es fr it
+do
+	if ls po/${_LANGUAGE}/*.po > /dev/null 2>&1
+	then
+		for _FILE in po/${_LANGUAGE}/*.po
+		do
+			sed -i -e "s|^msgstr .*.2012\"$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" "${_FILE}"
+		done
+	fi
+done
+
+# Brazilian date format
+if ls po/pt_BR/*.po > /dev/null 2>&1
+then
+	for _FILE in po/pt_BR/*.po
+	do
+		sed -i -e "s|^msgstr .*-2012\"$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" "${_FILE}"
+	done
+fi
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index e9fef22..3f5594a 100644
--- a/manpages/de/lb.de.1
+++ b/manpages/de/lb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb\fP \- wrapper for live\-build programs
diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1
index a5c9d81..6a8f91e 100644
--- a/manpages/de/lb_binary.de.1
+++ b/manpages/de/lb_binary.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1
index 8731bcb..aae2c98 100644
--- a/manpages/de/lb_binary_checksums.de.1
+++ b/manpages/de/lb_binary_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1
index 0303241..272f554 100644
--- a/manpages/de/lb_binary_chroot.de.1
+++ b/manpages/de/lb_binary_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1
index a5778e0..1339bec 100644
--- a/manpages/de/lb_binary_debian-installer.de.1
+++ b/manpages/de/lb_binary_debian-installer.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1
index 2db7a77..f531b10 100644
--- a/manpages/de/lb_binary_disk.de.1
+++ b/manpages/de/lb_binary_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1
index 8530e50..f2af94b 100644
--- a/manpages/de/lb_binary_grub.de.1
+++ b/manpages/de/lb_binary_grub.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1
index c79cc55..0458942 100644
--- a/manpages/de/lb_binary_grub2.de.1
+++ b/manpages/de/lb_binary_grub2.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_hdd.de.1 b/manpages/de/lb_binary_hdd.de.1
index eb22915..04d8153 100644
--- a/manpages/de/lb_binary_hdd.de.1
+++ b/manpages/de/lb_binary_hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_hooks.de.1 b/manpages/de/lb_binary_hooks.de.1
index 77d14ab..6656256 100644
--- a/manpages/de/lb_binary_hooks.de.1
+++ b/manpages/de/lb_binary_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1
index 6d1e7f5..1d7d1de 100644
--- a/manpages/de/lb_binary_includes.de.1
+++ b/manpages/de/lb_binary_includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1
index 54db510..54c3e69 100644
--- a/manpages/de/lb_binary_iso.de.1
+++ b/manpages/de/lb_binary_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1
index dfe2161..cd3e09f 100644
--- a/manpages/de/lb_binary_linux-image.de.1
+++ b/manpages/de/lb_binary_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1
index 543b2bc..b15d06c 100644
--- a/manpages/de/lb_binary_local-includes.de.1
+++ b/manpages/de/lb_binary_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 0e17cdf..f8f0918 100644
--- a/manpages/de/lb_binary_manifest.de.1
+++ b/manpages/de/lb_binary_manifest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1
index 59103c7..fbe3874 100644
--- a/manpages/de/lb_binary_memtest.de.1
+++ b/manpages/de/lb_binary_memtest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_net.de.1 b/manpages/de/lb_binary_net.de.1
index 5afc00c..54291f7 100644
--- a/manpages/de/lb_binary_net.de.1
+++ b/manpages/de/lb_binary_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1
index df07f6c..486a5d2 100644
--- a/manpages/de/lb_binary_rootfs.de.1
+++ b/manpages/de/lb_binary_rootfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1
index 824a48c..6e5b0ac 100644
--- a/manpages/de/lb_binary_silo.de.1
+++ b/manpages/de/lb_binary_silo.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1
index f6d4c48..a770684 100644
--- a/manpages/de/lb_binary_syslinux.de.1
+++ b/manpages/de/lb_binary_syslinux.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1
index 3ddb9fd..8a1ddbc 100644
--- a/manpages/de/lb_binary_tar.de.1
+++ b/manpages/de/lb_binary_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1
index 541574f..f8587fb 100644
--- a/manpages/de/lb_binary_virtual-hdd.de.1
+++ b/manpages/de/lb_binary_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1
index 7d5c7f4..d1b99e2 100644
--- a/manpages/de/lb_binary_win32-loader.de.1
+++ b/manpages/de/lb_binary_win32-loader.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1
index a9bba1d..daa9066 100644
--- a/manpages/de/lb_binary_yaboot.de.1
+++ b/manpages/de/lb_binary_yaboot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 6d40ce4..81a25c1 100644
--- a/manpages/de/lb_bootstrap.de.1
+++ b/manpages/de/lb_bootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1
index 63f9d9c..17a601c 100644
--- a/manpages/de/lb_bootstrap_cache.de.1
+++ b/manpages/de/lb_bootstrap_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1
index 979bcc9..fb18e51 100644
--- a/manpages/de/lb_bootstrap_cdebootstrap.de.1
+++ b/manpages/de/lb_bootstrap_cdebootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1
index 09a9dca..3bbe8e4 100644
--- a/manpages/de/lb_bootstrap_copy.de.1
+++ b/manpages/de/lb_bootstrap_copy.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1
index b6556f9..153f001 100644
--- a/manpages/de/lb_bootstrap_debootstrap.de.1
+++ b/manpages/de/lb_bootstrap_debootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index 21ef464..dd61961 100644
--- a/manpages/de/lb_build.de.1
+++ b/manpages/de/lb_build.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1
index 484de2b..efdd1f5 100644
--- a/manpages/de/lb_chroot.de.1
+++ b/manpages/de/lb_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1
index 5c20736..418a3b0 100644
--- a/manpages/de/lb_chroot_apt.de.1
+++ b/manpages/de/lb_chroot_apt.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_archives.de.1 b/manpages/de/lb_chroot_archives.de.1
index 1bddd9e..f191b07 100644
--- a/manpages/de/lb_chroot_archives.de.1
+++ b/manpages/de/lb_chroot_archives.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_archives\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1
index 1929fc5..5e74797 100644
--- a/manpages/de/lb_chroot_cache.de.1
+++ b/manpages/de/lb_chroot_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1
index d248142..e889784 100644
--- a/manpages/de/lb_chroot_debianchroot.de.1
+++ b/manpages/de/lb_chroot_debianchroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1
index 326081e..f5c8a52 100644
--- a/manpages/de/lb_chroot_devpts.de.1
+++ b/manpages/de/lb_chroot_devpts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1
index bf45739..0de3c49 100644
--- a/manpages/de/lb_chroot_dpkg.de.1
+++ b/manpages/de/lb_chroot_dpkg.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1
index c297cff..4d6a58b 100644
--- a/manpages/de/lb_chroot_hacks.de.1
+++ b/manpages/de/lb_chroot_hacks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hooks.de.1 b/manpages/de/lb_chroot_hooks.de.1
index 4df697c..1e0ba6d 100644
--- a/manpages/de/lb_chroot_hooks.de.1
+++ b/manpages/de/lb_chroot_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hooks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index c736c34..296df4a 100644
--- a/manpages/de/lb_chroot_hostname.de.1
+++ b/manpages/de/lb_chroot_hostname.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1
index b1a6001..dd1ad39 100644
--- a/manpages/de/lb_chroot_hosts.de.1
+++ b/manpages/de/lb_chroot_hosts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1
index 67b41c3..369864d 100644
--- a/manpages/de/lb_chroot_install-packages.de.1
+++ b/manpages/de/lb_chroot_install-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1
index af5d55f..e4f3d49 100644
--- a/manpages/de/lb_chroot_interactive.de.1
+++ b/manpages/de/lb_chroot_interactive.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1
index 5b4e05a..91a999f 100644
--- a/manpages/de/lb_chroot_linux-image.de.1
+++ b/manpages/de/lb_chroot_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index 94909cf..186d100 100644
--- a/manpages/de/lb_chroot_local-includes.de.1
+++ b/manpages/de/lb_chroot_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1
index e87e0a5..becad59 100644
--- a/manpages/de/lb_chroot_local-patches.de.1
+++ b/manpages/de/lb_chroot_local-patches.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1
index 2a1d3ec..b141816 100644
--- a/manpages/de/lb_chroot_local-preseed.de.1
+++ b/manpages/de/lb_chroot_local-preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packagelists.de.1 b/manpages/de/lb_chroot_packagelists.de.1
index 724bfc1..f6058ae 100644
--- a/manpages/de/lb_chroot_packagelists.de.1
+++ b/manpages/de/lb_chroot_packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1
index d388bd3..7900041 100644
--- a/manpages/de/lb_chroot_packages.de.1
+++ b/manpages/de/lb_chroot_packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index a421672..932c3a7 100644
--- a/manpages/de/lb_chroot_proc.de.1
+++ b/manpages/de/lb_chroot_proc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1
index c3eac48..7e45ce0 100644
--- a/manpages/de/lb_chroot_resolv.de.1
+++ b/manpages/de/lb_chroot_resolv.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1
index e798dde..e7f2c31 100644
--- a/manpages/de/lb_chroot_selinuxfs.de.1
+++ b/manpages/de/lb_chroot_selinuxfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1
index 895355f..3050843 100644
--- a/manpages/de/lb_chroot_sysfs.de.1
+++ b/manpages/de/lb_chroot_sysfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1
index 39fc041..f94d209 100644
--- a/manpages/de/lb_chroot_sysv-rc.de.1
+++ b/manpages/de/lb_chroot_sysv-rc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv\-rc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_task-lists.de.1 b/manpages/de/lb_chroot_task-lists.de.1
index 7e34eb5..2a6331e 100644
--- a/manpages/de/lb_chroot_task-lists.de.1
+++ b/manpages/de/lb_chroot_task-lists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_task\-lists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1
index 00d80a1..f6c3171 100644
--- a/manpages/de/lb_chroot_upstart.de.1
+++ b/manpages/de/lb_chroot_upstart.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index 79cf39d..a53dbcf 100644
--- a/manpages/de/lb_clean.de.1
+++ b/manpages/de/lb_clean.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fP \- Clean build directory
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index 939fda1..8f7cd83 100644
--- a/manpages/de/lb_config.de.1
+++ b/manpages/de/lb_config.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fP \- Create config directory
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index 94656ab..041bc7f 100644
--- a/manpages/de/lb_local.de.1
+++ b/manpages/de/lb_local.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fP \- wrapper for local live\-build programs
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index bb6103f..5397eda 100644
--- a/manpages/de/lb_source.de.1
+++ b/manpages/de/lb_source.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1
index 6efce99..f9f62e5 100644
--- a/manpages/de/lb_source_checksums.de.1
+++ b/manpages/de/lb_source_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1
index bbeb694..5b1f859 100644
--- a/manpages/de/lb_source_debian-live.de.1
+++ b/manpages/de/lb_source_debian-live.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1
index 825b86a..e6fcaf9 100644
--- a/manpages/de/lb_source_debian.de.1
+++ b/manpages/de/lb_source_debian.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1
index c64ff59..135ca82 100644
--- a/manpages/de/lb_source_disk.de.1
+++ b/manpages/de/lb_source_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_hdd.de.1 b/manpages/de/lb_source_hdd.de.1
index 6de00a1..daa2547 100644
--- a/manpages/de/lb_source_hdd.de.1
+++ b/manpages/de/lb_source_hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index a4fe2c7..03d51d8 100644
--- a/manpages/de/lb_source_iso.de.1
+++ b/manpages/de/lb_source_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_net.de.1 b/manpages/de/lb_source_net.de.1
index 2b88c05..6733f49 100644
--- a/manpages/de/lb_source_net.de.1
+++ b/manpages/de/lb_source_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1
index 2032cdb..766d771 100644
--- a/manpages/de/lb_source_tar.de.1
+++ b/manpages/de/lb_source_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1
index 58657b0..cd73fe4 100644
--- a/manpages/de/lb_source_virtual-hdd.de.1
+++ b/manpages/de/lb_source_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index ec2acf4..d7d2a72 100644
--- a/manpages/de/lb_testroot.de.1
+++ b/manpages/de/lb_testroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fP \- Ensure that a system is built as root
diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7
index c1c22d2..508b074 100644
--- a/manpages/de/live-build.de.7
+++ b/manpages/de/live-build.de.7
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 7 2012\-06\-04 3.0~a49\-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2012\-06\-05 3.0~a49\-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fP \- the Debian Live tool suite
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index 3b6ef89..8723ebe 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb\fR \- wrapper for live\-build programs
diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1
index bf343be..31ef93c 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_checksums.1 b/manpages/en/lb_binary_checksums.1
index 36d985f..e06ad81 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_chroot.1 b/manpages/en/lb_binary_chroot.1
index 9a2a417..d569bfa 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_debian-installer.1 b/manpages/en/lb_binary_debian-installer.1
index 9b9ab59..0523ad8 100644
--- a/manpages/en/lb_binary_debian-installer.1
+++ b/manpages/en/lb_binary_debian-installer.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_disk.1 b/manpages/en/lb_binary_disk.1
index fdb4fee..da06ec3 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1
index 24a40a4..fb46e2a 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub2.1 b/manpages/en/lb_binary_grub2.1
index de4fddb..a14bf53 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_hdd.1 b/manpages/en/lb_binary_hdd.1
index 5ac0951..b673a5b 100644
--- a/manpages/en/lb_binary_hdd.1
+++ b/manpages/en/lb_binary_hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_hooks.1 b/manpages/en/lb_binary_hooks.1
index 8047c05..86fc028 100644
--- a/manpages/en/lb_binary_hooks.1
+++ b/manpages/en/lb_binary_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1
index 4026755..5e7326e 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_iso.1 b/manpages/en/lb_binary_iso.1
index 964beab..605815b 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_linux-image.1 b/manpages/en/lb_binary_linux-image.1
index 2b4930f..2c22883 100644
--- a/manpages/en/lb_binary_linux-image.1
+++ b/manpages/en/lb_binary_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1
index 63217e3..6ef8aa8 100644
--- a/manpages/en/lb_binary_local-includes.1
+++ b/manpages/en/lb_binary_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index 4e8baab..a146c38 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_memtest.1 b/manpages/en/lb_binary_memtest.1
index cfc42a8..91de2f8 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_net.1 b/manpages/en/lb_binary_net.1
index 7a37fef..a5338be 100644
--- a/manpages/en/lb_binary_net.1
+++ b/manpages/en/lb_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_rootfs.1 b/manpages/en/lb_binary_rootfs.1
index 186959d..e6679f9 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_silo.1 b/manpages/en/lb_binary_silo.1
index ab9c8ed..ae8f358 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_syslinux.1 b/manpages/en/lb_binary_syslinux.1
index c9da282..a9182e1 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_binary_tar.1
index fcce74a..7ea16bd 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index ead6afe..bd81c63 100644
--- a/manpages/en/lb_binary_virtual-hdd.1
+++ b/manpages/en/lb_binary_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_win32-loader.1 b/manpages/en/lb_binary_win32-loader.1
index e86a843..ee04a38 100644
--- a/manpages/en/lb_binary_win32-loader.1
+++ b/manpages/en/lb_binary_win32-loader.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_yaboot.1 b/manpages/en/lb_binary_yaboot.1
index 090d714..02269ee 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1
index 17b9651..fa47651 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cache.1 b/manpages/en/lb_bootstrap_cache.1
index 0dac749..0db7317 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cdebootstrap.1 b/manpages/en/lb_bootstrap_cdebootstrap.1
index d45c623..3e80ab2 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_copy.1 b/manpages/en/lb_bootstrap_copy.1
index 2dce0be..e8c71b2 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_debootstrap.1 b/manpages/en/lb_bootstrap_debootstrap.1
index 477cc65..ec2d951 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1
index c7f29d1..2e182a5 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1
index 286e46c..4c2fad5 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_apt.1 b/manpages/en/lb_chroot_apt.1
index f6cb515..f661efb 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_archives.1 b/manpages/en/lb_chroot_archives.1
index 52e42bb..a88849b 100644
--- a/manpages/en/lb_chroot_archives.1
+++ b/manpages/en/lb_chroot_archives.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_archives\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1
index 178bfe6..5e06e17 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_debianchroot.1 b/manpages/en/lb_chroot_debianchroot.1
index ee99dbc..f69fe9e 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_devpts.1 b/manpages/en/lb_chroot_devpts.1
index e103571..decbf6e 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_dpkg.1 b/manpages/en/lb_chroot_dpkg.1
index c2e60ca..1b7337b 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hacks.1 b/manpages/en/lb_chroot_hacks.1
index dfbace8..dd71ca4 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hooks.1 b/manpages/en/lb_chroot_hooks.1
index 36fc2e0..4b5c131 100644
--- a/manpages/en/lb_chroot_hooks.1
+++ b/manpages/en/lb_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1
index 054e2dd..8c0a5d7 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hosts.1 b/manpages/en/lb_chroot_hosts.1
index cc23dae..53e7bb9 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_install-packages.1 b/manpages/en/lb_chroot_install-packages.1
index b9c581c..fbd734a 100644
--- a/manpages/en/lb_chroot_install-packages.1
+++ b/manpages/en/lb_chroot_install-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_interactive.1 b/manpages/en/lb_chroot_interactive.1
index 269ee5d..fd80391 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_linux-image.1 b/manpages/en/lb_chroot_linux-image.1
index 043ac1a..f474fd4 100644
--- a/manpages/en/lb_chroot_linux-image.1
+++ b/manpages/en/lb_chroot_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 0a4abdd..ae828dc 100644
--- a/manpages/en/lb_chroot_local-includes.1
+++ b/manpages/en/lb_chroot_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index 8c42587..a2a4005 100644
--- a/manpages/en/lb_chroot_local-patches.1
+++ b/manpages/en/lb_chroot_local-patches.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-preseed.1 b/manpages/en/lb_chroot_local-preseed.1
index cc73afb..e5b384f 100644
--- a/manpages/en/lb_chroot_local-preseed.1
+++ b/manpages/en/lb_chroot_local-preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packagelists.1 b/manpages/en/lb_chroot_packagelists.1
index 664ea35..496a701 100644
--- a/manpages/en/lb_chroot_packagelists.1
+++ b/manpages/en/lb_chroot_packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1
index b8d7b07..7df1b7e 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1
index 19f0092..8bab483 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_resolv.1 b/manpages/en/lb_chroot_resolv.1
index cebc88b..c3ec92e 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_selinuxfs.1 b/manpages/en/lb_chroot_selinuxfs.1
index 2f2d211..53580f1 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1
index 7c9b415..305eae3 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysv-rc.1 b/manpages/en/lb_chroot_sysv-rc.1
index 7c9c710..e8f98f8 100644
--- a/manpages/en/lb_chroot_sysv-rc.1
+++ b/manpages/en/lb_chroot_sysv-rc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_task-lists.1 b/manpages/en/lb_chroot_task-lists.1
index 7e54463..d16bb42 100644
--- a/manpages/en/lb_chroot_task-lists.1
+++ b/manpages/en/lb_chroot_task-lists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_task\-lists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1
index 7037805..a5b8ec0 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1
index 92b715d..0003fe0 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fR \- Clean build directory
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index d927668..9e3af83 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fR \- Create config directory
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
index 604d1f5..8a1368e 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fR \- wrapper for local live\-build programs
diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1
index e087a15..e2368fe 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_checksums.1 b/manpages/en/lb_source_checksums.1
index 38f7f9c..1cc259b 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian-live.1 b/manpages/en/lb_source_debian-live.1
index 6e5e3b2..e659e78 100644
--- a/manpages/en/lb_source_debian-live.1
+++ b/manpages/en/lb_source_debian-live.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian.1 b/manpages/en/lb_source_debian.1
index 79b388f..87e0da4 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_disk.1 b/manpages/en/lb_source_disk.1
index b9f01b5..7152e57 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_hdd.1 b/manpages/en/lb_source_hdd.1
index e90aa0f..a77dcce 100644
--- a/manpages/en/lb_source_hdd.1
+++ b/manpages/en/lb_source_hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index 6bbda88..396a115 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_net.1 b/manpages/en/lb_source_net.1
index 4e9d027..4cb9cb3 100644
--- a/manpages/en/lb_source_net.1
+++ b/manpages/en/lb_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1
index 1fc5232..69b5e20 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index 0bd1785..aca3ec1 100644
--- a/manpages/en/lb_source_virtual-hdd.1
+++ b/manpages/en/lb_source_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1
index d74ecf5..26b8fdb 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7
index 890fbf6..c64e92c 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2012\-06\-04 3.0~a49-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2012\-06\-05 3.0~a49-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fR \- the Debian Live tool suite
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index 506300d..db47241 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index ebe2c9b..133c46e 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index 9fe549f..c743d2a 100644
--- a/manpages/po/de/lb_binary_checksums.1.po
+++ b/manpages/po/de/lb_binary_checksums.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 265cacd..f3912a8 100644
--- a/manpages/po/de/lb_binary_chroot.1.po
+++ b/manpages/po/de/lb_binary_chroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po
index 341f567..a607ef7 100644
--- a/manpages/po/de/lb_binary_debian-installer.1.po
+++ b/manpages/po/de/lb_binary_debian-installer.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index 951cba5..5249dbc 100644
--- a/manpages/po/de/lb_binary_disk.1.po
+++ b/manpages/po/de/lb_binary_disk.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index 34f802c..1dc817a 100644
--- a/manpages/po/de/lb_binary_grub.1.po
+++ b/manpages/po/de/lb_binary_grub.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index c4529f5..e4e7f72 100644
--- a/manpages/po/de/lb_binary_grub2.1.po
+++ b/manpages/po/de/lb_binary_grub2.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_hdd.1.po b/manpages/po/de/lb_binary_hdd.1.po
index 4712330..05edec1 100644
--- a/manpages/po/de/lb_binary_hdd.1.po
+++ b/manpages/po/de/lb_binary_hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_hooks.1.po b/manpages/po/de/lb_binary_hooks.1.po
index 3ee19dc..548bc47 100644
--- a/manpages/po/de/lb_binary_hooks.1.po
+++ b/manpages/po/de/lb_binary_hooks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index f3d4e83..e96f30c 100644
--- a/manpages/po/de/lb_binary_includes.1.po
+++ b/manpages/po/de/lb_binary_includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index 36c73b7..88fd2b2 100644
--- a/manpages/po/de/lb_binary_iso.1.po
+++ b/manpages/po/de/lb_binary_iso.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po
index edaf68d..28d5b01 100644
--- a/manpages/po/de/lb_binary_linux-image.1.po
+++ b/manpages/po/de/lb_binary_linux-image.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po
index a49c556..3b3f2e1 100644
--- a/manpages/po/de/lb_binary_local-includes.1.po
+++ b/manpages/po/de/lb_binary_local-includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index 2efd1fe..9f3149a 100644
--- a/manpages/po/de/lb_binary_manifest.1.po
+++ b/manpages/po/de/lb_binary_manifest.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index f5dee8d..894aebe 100644
--- a/manpages/po/de/lb_binary_memtest.1.po
+++ b/manpages/po/de/lb_binary_memtest.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po
index 37409c1..f721179 100644
--- a/manpages/po/de/lb_binary_net.1.po
+++ b/manpages/po/de/lb_binary_net.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index c8bf768..68cb85a 100644
--- a/manpages/po/de/lb_binary_rootfs.1.po
+++ b/manpages/po/de/lb_binary_rootfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index ba7d3c0..f18d5f9 100644
--- a/manpages/po/de/lb_binary_silo.1.po
+++ b/manpages/po/de/lb_binary_silo.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 0d6b909..90841be 100644
--- a/manpages/po/de/lb_binary_syslinux.1.po
+++ b/manpages/po/de/lb_binary_syslinux.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index b6a7846..99d1396 100644
--- a/manpages/po/de/lb_binary_tar.1.po
+++ b/manpages/po/de/lb_binary_tar.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po
index 5259b2d..1c0fe06 100644
--- a/manpages/po/de/lb_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lb_binary_virtual-hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po
index 06cfa71..ef189be 100644
--- a/manpages/po/de/lb_binary_win32-loader.1.po
+++ b/manpages/po/de/lb_binary_win32-loader.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index ae80437..b598907 100644
--- a/manpages/po/de/lb_binary_yaboot.1.po
+++ b/manpages/po/de/lb_binary_yaboot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index e478479..1dd9b4b 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index 74c0308..b26d2a1 100644
--- a/manpages/po/de/lb_bootstrap_cache.1.po
+++ b/manpages/po/de/lb_bootstrap_cache.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index d98b4a7..4df29b1 100644
--- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index 42c531d..3262bd5 100644
--- a/manpages/po/de/lb_bootstrap_copy.1.po
+++ b/manpages/po/de/lb_bootstrap_copy.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index f0a1b78..f2c8bf9 100644
--- a/manpages/po/de/lb_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index 3693ae7..3db8ac6 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index ae35200..eb1e553 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index 970d48f..d532d97 100644
--- a/manpages/po/de/lb_chroot_apt.1.po
+++ b/manpages/po/de/lb_chroot_apt.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_archives.1.po b/manpages/po/de/lb_chroot_archives.1.po
index bb673d5..d1043fb 100644
--- a/manpages/po/de/lb_chroot_archives.1.po
+++ b/manpages/po/de/lb_chroot_archives.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index a3aa1de..4fd0be3 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_cache.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index ea93dd9..3870d91 100644
--- a/manpages/po/de/lb_chroot_debianchroot.1.po
+++ b/manpages/po/de/lb_chroot_debianchroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index bf2d867..e5a3220 100644
--- a/manpages/po/de/lb_chroot_devpts.1.po
+++ b/manpages/po/de/lb_chroot_devpts.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index c50fc7a..bce0b44 100644
--- a/manpages/po/de/lb_chroot_dpkg.1.po
+++ b/manpages/po/de/lb_chroot_dpkg.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index c630ddf..c1bde63 100644
--- a/manpages/po/de/lb_chroot_hacks.1.po
+++ b/manpages/po/de/lb_chroot_hacks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hooks.1.po b/manpages/po/de/lb_chroot_hooks.1.po
index 4971743..6b76c79 100644
--- a/manpages/po/de/lb_chroot_hooks.1.po
+++ b/manpages/po/de/lb_chroot_hooks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index c4daf87..beb2e71 100644
--- a/manpages/po/de/lb_chroot_hostname.1.po
+++ b/manpages/po/de/lb_chroot_hostname.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index f34b041..9e4d058 100644
--- a/manpages/po/de/lb_chroot_hosts.1.po
+++ b/manpages/po/de/lb_chroot_hosts.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po
index 393edff..113ca2f 100644
--- a/manpages/po/de/lb_chroot_install-packages.1.po
+++ b/manpages/po/de/lb_chroot_install-packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index 942ffdf..c3c3791 100644
--- a/manpages/po/de/lb_chroot_interactive.1.po
+++ b/manpages/po/de/lb_chroot_interactive.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po
index 6f97b45..5445633 100644
--- a/manpages/po/de/lb_chroot_linux-image.1.po
+++ b/manpages/po/de/lb_chroot_linux-image.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po
index 8b407d0..2985d4f 100644
--- a/manpages/po/de/lb_chroot_local-includes.1.po
+++ b/manpages/po/de/lb_chroot_local-includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po
index 30ac9e2..c4e6582 100644
--- a/manpages/po/de/lb_chroot_local-patches.1.po
+++ b/manpages/po/de/lb_chroot_local-patches.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po
index ada3849..281efda 100644
--- a/manpages/po/de/lb_chroot_local-preseed.1.po
+++ b/manpages/po/de/lb_chroot_local-preseed.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po
index 596f6fc..abf5105 100644
--- a/manpages/po/de/lb_chroot_packagelists.1.po
+++ b/manpages/po/de/lb_chroot_packagelists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 9fd3b7d..f19b498 100644
--- a/manpages/po/de/lb_chroot_packages.1.po
+++ b/manpages/po/de/lb_chroot_packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index 6a40886..2165671 100644
--- a/manpages/po/de/lb_chroot_proc.1.po
+++ b/manpages/po/de/lb_chroot_proc.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 78991f4..86859b7 100644
--- a/manpages/po/de/lb_chroot_resolv.1.po
+++ b/manpages/po/de/lb_chroot_resolv.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index 63cdc7c..e40b408 100644
--- a/manpages/po/de/lb_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lb_chroot_selinuxfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index 6f5b4f5..ef31ecc 100644
--- a/manpages/po/de/lb_chroot_sysfs.1.po
+++ b/manpages/po/de/lb_chroot_sysfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po
index 3b5a75f..dfc8126 100644
--- a/manpages/po/de/lb_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lb_chroot_sysv-rc.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_task-lists.1.po b/manpages/po/de/lb_chroot_task-lists.1.po
index c3acf02..a151988 100644
--- a/manpages/po/de/lb_chroot_task-lists.1.po
+++ b/manpages/po/de/lb_chroot_task-lists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index 73b0c15..5f9b83b 100644
--- a/manpages/po/de/lb_chroot_upstart.1.po
+++ b/manpages/po/de/lb_chroot_upstart.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index 0ad91ba..1702973 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index 659e931..c65c560 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
index 752de47..27302cd 100644
--- a/manpages/po/de/lb_local.1.po
+++ b/manpages/po/de/lb_local.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index d65a1ae..be7b858 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index a1ea558..60037a2 100644
--- a/manpages/po/de/lb_source_checksums.1.po
+++ b/manpages/po/de/lb_source_checksums.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po
index 192fc9e..89a0e7d 100644
--- a/manpages/po/de/lb_source_debian-live.1.po
+++ b/manpages/po/de/lb_source_debian-live.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index ba258da..146bcfd 100644
--- a/manpages/po/de/lb_source_debian.1.po
+++ b/manpages/po/de/lb_source_debian.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index 91cf60d..e8d2b05 100644
--- a/manpages/po/de/lb_source_disk.1.po
+++ b/manpages/po/de/lb_source_disk.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_hdd.1.po b/manpages/po/de/lb_source_hdd.1.po
index ae35db3..187cf1e 100644
--- a/manpages/po/de/lb_source_hdd.1.po
+++ b/manpages/po/de/lb_source_hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index 52cf014..3d9efab 100644
--- a/manpages/po/de/lb_source_iso.1.po
+++ b/manpages/po/de/lb_source_iso.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po
index 03aa5a2..82355c1 100644
--- a/manpages/po/de/lb_source_net.1.po
+++ b/manpages/po/de/lb_source_net.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index dd7fe5f..8eb7682 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_tar.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po
index bb6529b..4387969 100644
--- a/manpages/po/de/lb_source_virtual-hdd.1.po
+++ b/manpages/po/de/lb_source_virtual-hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index c7a1b19..49c737e 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index 5445836..502d3f4 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index 5a27b32..7c2ea7b 100644
--- a/manpages/pot/lb.1.pot
+++ b/manpages/pot/lb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 8750f45..23c62c1 100644
--- a/manpages/pot/lb_binary.1.pot
+++ b/manpages/pot/lb_binary.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index ef52c28..15d32e5 100644
--- a/manpages/pot/lb_binary_checksums.1.pot
+++ b/manpages/pot/lb_binary_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index a891515..87c3c2c 100644
--- a/manpages/pot/lb_binary_chroot.1.pot
+++ b/manpages/pot/lb_binary_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index 09154ae..d0c4ca3 100644
--- a/manpages/pot/lb_binary_debian-installer.1.pot
+++ b/manpages/pot/lb_binary_debian-installer.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index a63352f..bef157b 100644
--- a/manpages/pot/lb_binary_disk.1.pot
+++ b/manpages/pot/lb_binary_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 8597113..c9d0567 100644
--- a/manpages/pot/lb_binary_grub.1.pot
+++ b/manpages/pot/lb_binary_grub.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index fa8f1b4..c8d79ff 100644
--- a/manpages/pot/lb_binary_grub2.1.pot
+++ b/manpages/pot/lb_binary_grub2.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_hdd.1.pot b/manpages/pot/lb_binary_hdd.1.pot
index 04e0a1d..7644fc0 100644
--- a/manpages/pot/lb_binary_hdd.1.pot
+++ b/manpages/pot/lb_binary_hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_hooks.1.pot b/manpages/pot/lb_binary_hooks.1.pot
index 393562b..e116fcd 100644
--- a/manpages/pot/lb_binary_hooks.1.pot
+++ b/manpages/pot/lb_binary_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index 7ec9fe2..f1dadcf 100644
--- a/manpages/pot/lb_binary_includes.1.pot
+++ b/manpages/pot/lb_binary_includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index 0871d89..c84a34d 100644
--- a/manpages/pot/lb_binary_iso.1.pot
+++ b/manpages/pot/lb_binary_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index 18c2f26..f4ff110 100644
--- a/manpages/pot/lb_binary_linux-image.1.pot
+++ b/manpages/pot/lb_binary_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index f4a8612..7cc9897 100644
--- a/manpages/pot/lb_binary_local-includes.1.pot
+++ b/manpages/pot/lb_binary_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index 8c29d5c..f481e55 100644
--- a/manpages/pot/lb_binary_manifest.1.pot
+++ b/manpages/pot/lb_binary_manifest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index af88a38..9248f86 100644
--- a/manpages/pot/lb_binary_memtest.1.pot
+++ b/manpages/pot/lb_binary_memtest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot
index 9011d63..85c7a94 100644
--- a/manpages/pot/lb_binary_net.1.pot
+++ b/manpages/pot/lb_binary_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 623a97a..ccbcc92 100644
--- a/manpages/pot/lb_binary_rootfs.1.pot
+++ b/manpages/pot/lb_binary_rootfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index 35cf47c..8dbd89a 100644
--- a/manpages/pot/lb_binary_silo.1.pot
+++ b/manpages/pot/lb_binary_silo.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index 1339453..d37430a 100644
--- a/manpages/pot/lb_binary_syslinux.1.pot
+++ b/manpages/pot/lb_binary_syslinux.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index 8a9f44b..e2b46f1 100644
--- a/manpages/pot/lb_binary_tar.1.pot
+++ b/manpages/pot/lb_binary_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index 7a47aa9..fa1d8f0 100644
--- a/manpages/pot/lb_binary_virtual-hdd.1.pot
+++ b/manpages/pot/lb_binary_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index 09fe63e..e6cb65a 100644
--- a/manpages/pot/lb_binary_win32-loader.1.pot
+++ b/manpages/pot/lb_binary_win32-loader.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index 733c230..c80792f 100644
--- a/manpages/pot/lb_binary_yaboot.1.pot
+++ b/manpages/pot/lb_binary_yaboot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index a81262d..8d1e22a 100644
--- a/manpages/pot/lb_bootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index ac49407..6f2ec3c 100644
--- a/manpages/pot/lb_bootstrap_cache.1.pot
+++ b/manpages/pot/lb_bootstrap_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index 0d1b32f..42ef543 100644
--- a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index 6a5d2ea..228268c 100644
--- a/manpages/pot/lb_bootstrap_copy.1.pot
+++ b/manpages/pot/lb_bootstrap_copy.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index 0840844..dd11be1 100644
--- a/manpages/pot/lb_bootstrap_debootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_debootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index dc83e3b..0c60c9b 100644
--- a/manpages/pot/lb_build.1.pot
+++ b/manpages/pot/lb_build.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index d3df2e1..4f4dc5e 100644
--- a/manpages/pot/lb_chroot.1.pot
+++ b/manpages/pot/lb_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot
index 702bd2b..9105a82 100644
--- a/manpages/pot/lb_chroot_apt.1.pot
+++ b/manpages/pot/lb_chroot_apt.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_archives.1.pot b/manpages/pot/lb_chroot_archives.1.pot
index 21ea810..c969df0 100644
--- a/manpages/pot/lb_chroot_archives.1.pot
+++ b/manpages/pot/lb_chroot_archives.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot
index c2d2c87..06f3d4b 100644
--- a/manpages/pot/lb_chroot_cache.1.pot
+++ b/manpages/pot/lb_chroot_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot
index b3f46cd..32c0ae7 100644
--- a/manpages/pot/lb_chroot_debianchroot.1.pot
+++ b/manpages/pot/lb_chroot_debianchroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot
index f76acc4..f1e219c 100644
--- a/manpages/pot/lb_chroot_devpts.1.pot
+++ b/manpages/pot/lb_chroot_devpts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot
index f7bc46d..de33da4 100644
--- a/manpages/pot/lb_chroot_dpkg.1.pot
+++ b/manpages/pot/lb_chroot_dpkg.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot
index 3f0a496..811c641 100644
--- a/manpages/pot/lb_chroot_hacks.1.pot
+++ b/manpages/pot/lb_chroot_hacks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hooks.1.pot b/manpages/pot/lb_chroot_hooks.1.pot
index 0821a4c..ff59bae 100644
--- a/manpages/pot/lb_chroot_hooks.1.pot
+++ b/manpages/pot/lb_chroot_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot
index 9f8c04d..729f907 100644
--- a/manpages/pot/lb_chroot_hostname.1.pot
+++ b/manpages/pot/lb_chroot_hostname.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot
index 0fa1ed7..db2d6ea 100644
--- a/manpages/pot/lb_chroot_hosts.1.pot
+++ b/manpages/pot/lb_chroot_hosts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot
index f4d6d6b..008179c 100644
--- a/manpages/pot/lb_chroot_install-packages.1.pot
+++ b/manpages/pot/lb_chroot_install-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot
index 05ca63e..1e0038c 100644
--- a/manpages/pot/lb_chroot_interactive.1.pot
+++ b/manpages/pot/lb_chroot_interactive.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot
index d3cc07a..22e8417 100644
--- a/manpages/pot/lb_chroot_linux-image.1.pot
+++ b/manpages/pot/lb_chroot_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot
index 33a223a..add7677 100644
--- a/manpages/pot/lb_chroot_local-includes.1.pot
+++ b/manpages/pot/lb_chroot_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot
index 7c05720..8f41b27 100644
--- a/manpages/pot/lb_chroot_local-patches.1.pot
+++ b/manpages/pot/lb_chroot_local-patches.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot
index 8613f88..d4e90a2 100644
--- a/manpages/pot/lb_chroot_local-preseed.1.pot
+++ b/manpages/pot/lb_chroot_local-preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_packagelists.1.pot b/manpages/pot/lb_chroot_packagelists.1.pot
index 85f8322..059ce74 100644
--- a/manpages/pot/lb_chroot_packagelists.1.pot
+++ b/manpages/pot/lb_chroot_packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot
index 2be3df7..510149c 100644
--- a/manpages/pot/lb_chroot_packages.1.pot
+++ b/manpages/pot/lb_chroot_packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot
index 77b8681..52c658e 100644
--- a/manpages/pot/lb_chroot_proc.1.pot
+++ b/manpages/pot/lb_chroot_proc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot
index e440413..4b6dcc2 100644
--- a/manpages/pot/lb_chroot_resolv.1.pot
+++ b/manpages/pot/lb_chroot_resolv.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot
index 1623deb..58d548d 100644
--- a/manpages/pot/lb_chroot_selinuxfs.1.pot
+++ b/manpages/pot/lb_chroot_selinuxfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot
index da26153..5b155d9 100644
--- a/manpages/pot/lb_chroot_sysfs.1.pot
+++ b/manpages/pot/lb_chroot_sysfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot
index 5b90b02..dc266f0 100644
--- a/manpages/pot/lb_chroot_sysv-rc.1.pot
+++ b/manpages/pot/lb_chroot_sysv-rc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_task-lists.1.pot b/manpages/pot/lb_chroot_task-lists.1.pot
index a16e04b..cf6ccea 100644
--- a/manpages/pot/lb_chroot_task-lists.1.pot
+++ b/manpages/pot/lb_chroot_task-lists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot
index 93c1041..ad1ca82 100644
--- a/manpages/pot/lb_chroot_upstart.1.pot
+++ b/manpages/pot/lb_chroot_upstart.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 42d53cd..e138f65 100644
--- a/manpages/pot/lb_clean.1.pot
+++ b/manpages/pot/lb_clean.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index 2131cc1..38f81b2 100644
--- a/manpages/pot/lb_config.1.pot
+++ b/manpages/pot/lb_config.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
index 72174d4..d6d901c 100644
--- a/manpages/pot/lb_local.1.pot
+++ b/manpages/pot/lb_local.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index 9f299eb..8db60bb 100644
--- a/manpages/pot/lb_source.1.pot
+++ b/manpages/pot/lb_source.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot
index 134f388..fdadf94 100644
--- a/manpages/pot/lb_source_checksums.1.pot
+++ b/manpages/pot/lb_source_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot
index 59911ba..0f012d1 100644
--- a/manpages/pot/lb_source_debian-live.1.pot
+++ b/manpages/pot/lb_source_debian-live.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot
index 98fdc37..70bcd8d 100644
--- a/manpages/pot/lb_source_debian.1.pot
+++ b/manpages/pot/lb_source_debian.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot
index fc43cba..1f8eee4 100644
--- a/manpages/pot/lb_source_disk.1.pot
+++ b/manpages/pot/lb_source_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_hdd.1.pot b/manpages/pot/lb_source_hdd.1.pot
index b91d2ae..9add263 100644
--- a/manpages/pot/lb_source_hdd.1.pot
+++ b/manpages/pot/lb_source_hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot
index 80ed7ee..481b5d0 100644
--- a/manpages/pot/lb_source_iso.1.pot
+++ b/manpages/pot/lb_source_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_net.1.pot b/manpages/pot/lb_source_net.1.pot
index 3b5243a..080fbfd 100644
--- a/manpages/pot/lb_source_net.1.pot
+++ b/manpages/pot/lb_source_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot
index 723a410..f32680c 100644
--- a/manpages/pot/lb_source_tar.1.pot
+++ b/manpages/pot/lb_source_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot
index 47f841c..2195b5c 100644
--- a/manpages/pot/lb_source_virtual-hdd.1.pot
+++ b/manpages/pot/lb_source_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index 65da5ae..08186e7 100644
--- a/manpages/pot/lb_testroot.1.pot
+++ b/manpages/pot/lb_testroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index 6fab368..debd580 100644
--- a/manpages/pot/live-build.7.pot
+++ b/manpages/pot/live-build.7.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-06-04 12:09+0300\n"
+"POT-Creation-Date: 2012-06-05 13:44+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_net.1:1 en/lb_source_tar.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-06-04"
+msgid "2012-06-05"
 msgstr ""
 
 #. type: TH
diff --git a/po/Makefile b/po/Makefile
deleted file mode 100644
index 3216d1f..0000000
--- a/po/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# Makefile to manage gettext files
-
-DOMAIN=live-helper
-ECHO_FUNCTIONS="Echo_message Echo_verbose Echo_warning Echo_debug Echo_error Echo_breakage Echo"
-
-POFILES=$(wildcard *.po)
-MOFILES=$(patsubst %.po,%.mo,$(POFILES))
-LINGUAS=$(basename $(POFILES))
-GETTEXTFILES=$(shell find ../scripts/build ../functions -type f)
-POTFILE=$(DOMAIN).pot
-DESTDIR=/
-XGETTEXT_KEYWORDS=$(shell echo $(ECHO_FUNCTIONS) |sed -e 's,\S\+,-k&,g')
-
-%.mo: %.po
-	msgfmt --statistics -o $@ $<
-
-%.po: $(DOMAIN).pot
-	msgmerge -U $*.po $(DOMAIN).pot
-
-$(DOMAIN).pot: $(GETTEXTFILES)
-	$(shell xgettext $(XGETTEXT_KEYWORDS) -L Shell -o $(DOMAIN).pot $(GETTEXTFILES))
-
-update-po: live-helper.pot
-	-for lang in $(LINGUAS); do\
-	    msgmerge -U $$lang.po $(DOMAIN).pot; \
-	done
-
-install: $(MOFILES)
-	-for lang in $(LINGUAS); do\
-	    install -d $(DESTDIR)/usr/share/locale/$$lang/LC_MESSAGES/; \
-	    install -m 644 $$lang.mo $(DESTDIR)/usr/share/locale/$$lang/LC_MESSAGES/$(DOMAIN).mo; \
-	done
-
-all: update-po $(MOFILES)
-
-clean:
-	- rm *.mo *~
-
-.PHONY: update-po
diff --git a/po/live-build.pot b/po/live-build.pot
deleted file mode 100644
index 0418f35..0000000
--- a/po/live-build.pot
+++ /dev/null
@@ -1,1092 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-02-02 18:10+0100\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../helpers/lh_source_md5sum:16
-msgid "create source md5sums"
-msgstr ""
-
-#: ../helpers/lh_source_md5sum:36
-msgid "Begin creating source md5sum.txt..."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-includes:16
-msgid "copy local files into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-includes:26
-msgid "Begin copying chroot local includes..."
-msgstr ""
-
-#: ../helpers/lh:16
-msgid "utility to build Debian Live systems"
-msgstr ""
-
-#: ../helpers/lh:41
-msgid "no such helper"
-msgstr ""
-
-#: ../helpers/lh_chroot_packageslists:16
-msgid "queue install of packages lists into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_packageslists:26
-msgid "Begin queueing installation of packages lists..."
-msgstr ""
-
-#: ../helpers/lh_binary_silo:16
-msgid "installs silo into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_silo:42
-msgid "Begin installing silo..."
-msgstr ""
-
-#: ../helpers/lh_binary_silo:172
-msgid "Net cow not supported on silo"
-msgstr ""
-
-#: ../helpers/lh_binary_tar:16
-msgid "build harddisk binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_tar:31
-msgid "Begin building binary harddisk image..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysv-rc:16
-msgid "manage /usr/sbin/policy-rc.d"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysv-rc:31
-msgid "Configuring file /usr/sbin/policy-rc.d"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysv-rc:65
-msgid "Deconfiguring file /usr/sbin/policy-rc.d"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-patches:16
-msgid "apply local patches against chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-patches:26
-msgid "Begin applying chroot local patches..."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-patches:53
-msgid "Applying patch %s..."
-msgstr ""
-
-#: ../helpers/lh_chroot_resolv:16
-msgid "manage /etc/resolv.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_resolv:31
-msgid "Configuring file /etc/resolv.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_resolv:66
-msgid "Deconfiguring file /etc/resolv.conf"
-msgstr ""
-
-#: ../helpers/lh_source_net:16
-msgid "build source net image"
-msgstr ""
-
-#: ../helpers/lh_source_net:36
-msgid "Begin building source netboot image..."
-msgstr ""
-
-#: ../helpers/lh_source_debian:16
-msgid "debian sources"
-msgstr ""
-
-#: ../helpers/lh_source_debian:31
-msgid "Begin downloading sources..."
-msgstr ""
-
-#: ../helpers/lh_chroot:16
-msgid "customize the Debian system"
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:16
-msgid "installs syslinux into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:31
-msgid "Begin installing syslinux..."
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:250
-msgid "%s doen't exist"
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:453 ../helpers/lh_binary_syslinux:477
-msgid "Unsupported net filesystem"
-msgstr ""
-
-#: ../helpers/lh_bootstrap:16
-msgid "bootstrap a Debian system"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:16
-msgid "build binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:31
-msgid "Begin building binary usb-hdd image..."
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:58
-msgid "Sparc only supports booting from ext2, ext3 (or ufs)"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:89
-msgid ""
-"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:98
-msgid ""
-"FAT16 doesn't support partitions larger than 2GB, automatically enforcing "
-"FAT32"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:139 ../helpers/lh_source_usb-hdd:86
-msgid "Unsupported binary filesystem %s"
-msgstr ""
-
-#: ../helpers/lh_chroot_symlinks:16
-msgid "convert symlinks"
-msgstr ""
-
-#: ../helpers/lh_chroot_symlinks:31
-msgid "Begin converting symlinks..."
-msgstr ""
-
-#: ../helpers/lh_bootstrap_copy:16
-msgid "bootstrap by copying the host system"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_copy:34 ../helpers/lh_bootstrap_cdebootstrap:34
-#: ../helpers/lh_bootstrap_debootstrap:34
-msgid "Begin bootstrapping system..."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:16
-msgid "installs grub into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_grub:31
-msgid "Begin installing grub..."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:118
-msgid "Bootloader in this image type not yet supported by live-helper."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:119
-msgid "This would produce a not bootable image, aborting (FIXME)."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:177
-msgid "Net cow not yet supported on grub"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-hooks:16
-msgid "execute local hooks in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-hooks:26 ../helpers/lh_binary_local-hooks:26
-msgid "Begin executing local hooks..."
-msgstr ""
-
-#: ../helpers/lh_chroot_preseed:16
-msgid "execute preseed in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_preseed:26
-msgid "Begin executing preseed..."
-msgstr ""
-
-#: ../helpers/lh_chroot_hosts:16
-msgid "manage /etc/hosts"
-msgstr ""
-
-#: ../helpers/lh_chroot_hosts:31
-msgid "Configuring file /etc/hosts"
-msgstr ""
-
-#: ../helpers/lh_chroot_hosts:67
-msgid "Deconfiguring file /etc/hosts"
-msgstr ""
-
-#: ../helpers/lh_chroot_localization:16
-msgid "install localization packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_localization:26
-msgid "Begin installing localization packages..."
-msgstr ""
-
-#: ../helpers/lh_bootstrap_cdebootstrap:16
-msgid "bootstrap a Debian system with cdebootstrap(1)"
-msgstr ""
-
-#: ../helpers/lh_source_debian-live:16
-msgid "copy debian-live config into source"
-msgstr ""
-
-#: ../helpers/lh_source_debian-live:31
-msgid "Begin copying live-helper configuration..."
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:16
-msgid "installs yaboot into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:31
-msgid "Begin installing yaboot..."
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:126
-msgid "not yet supported, aborting (FIXME)."
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:184
-msgid "Net cow not yet supported on yaboot"
-msgstr ""
-
-#: ../helpers/lh_clean:27
-msgid "clean up system build directories"
-msgstr ""
-
-#: ../helpers/lh_clean:40
-msgid "%s is not a good Debian Live working directory to clean."
-msgstr ""
-
-#: ../helpers/lh_clean:73
-msgid "Cleaning chroot"
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:16
-msgid "copy chroot into chroot"
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:26
-msgid "Begin copying chroot..."
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:80 ../helpers/lh_source_tar:37
-msgid "This may take a while."
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:100
-msgid "Excluded path does not exist: %s"
-msgstr ""
-
-#: ../helpers/lh_binary_local-includes:16 ../helpers/lh_binary_includes:16
-msgid "copy files into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_local-includes:26
-msgid "Begin copying binary local includes..."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:16
-msgid "install debian-installer into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:46
-msgid "debian-installer flavour %s not supported."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:51
-msgid "Begin installing debian-installer..."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:214
-msgid "Could not download file: %s"
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:306
-msgid "No daily-builds found for your architecture."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:466
-msgid "Could not find cache/packages_bootstrap."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:467
-msgid ""
-"You selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
-"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
-"cached - these are required when integrating the Debian Installer."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:16
-msgid "make build interactive"
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:31
-msgid "Begin interactive build..."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:47
-msgid "Pausing build: starting interactive shell..."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:51
-msgid "Pausing build: starting interactive X11..."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:55
-msgid "Pausing build: starting interactive Xnest..."
-msgstr ""
-
-#: ../helpers/lh_chroot_cache:16
-msgid "cache chroot stage"
-msgstr ""
-
-#: ../helpers/lh_chroot_cache:26
-msgid "Begin caching chroot stage..."
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:16
-msgid "manage /bin/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:31
-msgid "Configuring file /etc/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:48
-msgid "Configuring file /bin/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:65
-msgid "Deconfiguring file /etc/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:73
-msgid "Deconfiguring file /bin/hostname"
-msgstr ""
-
-#: ../helpers/lh_binary_manifest:16
-msgid "create manifest"
-msgstr ""
-
-#: ../helpers/lh_binary_manifest:26
-msgid "Begin creating manifest..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:16
-msgid "manage /etc/apt/sources.list"
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:33
-msgid "Configuring file /etc/apt/sources.list"
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:168
-msgid "GPG exited with error status %s"
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:212
-#, sh-format
-msgid ""
-"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:329
-msgid "Deconfiguring file /etc/apt/sources.list"
-msgstr ""
-
-#: ../helpers/lh_chroot_hooks:16
-msgid "execute hooks in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_hooks:26
-msgid "Begin executing hooks..."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:16
-msgid "encrypts rootfs"
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:33
-msgid "Encryption type %s not supported."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:43
-msgid "Encryption not yet supported on %s filesystems."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:48
-msgid "Begin encrypting root filesystem image..."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:81
-msgid "Encrypting binary/%s/filesystem.%s with %s..."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:93
-msgid " ** Configuring encrypted filesystem **"
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:95
-msgid " (Passwords must be at least 20 characters long)"
-msgstr ""
-
-#: ../helpers/lh_build:27
-msgid "build a Debian Live system"
-msgstr ""
-
-#: ../helpers/lh_build:35
-msgid "No config/ directory; using defaults for all options"
-msgstr ""
-
-#: ../helpers/lh_build:40
-msgid "Cannot build live image from the root directory (/)"
-msgstr ""
-
-#: ../helpers/lh_build:46
-msgid "Cannot build live image from a directory containing spaces"
-msgstr ""
-
-#: ../helpers/lh_binary_includes:31
-msgid "Begin copying binary includes..."
-msgstr ""
-
-#: ../helpers/lh_binary_includes:52
-msgid "user specified includes not accessible in %s"
-msgstr ""
-
-#: ../helpers/lh_binary_includes:171
-msgid "win32-loader inclusion is enabled but not found, ignoring."
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:16
-msgid "build source image"
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:36
-msgid "Begin building source usb-hdd image..."
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:91
-msgid "!!! The following error/warning messages can be ignored !!!"
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:125
-msgid "!!! The above error/warning messages can be ignored !!!"
-msgstr ""
-
-#: ../helpers/lh_binary_local-packageslists:16
-msgid "install local packages into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_local-packageslists:26
-msgid "Begin installing local packages lists..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysvinit:16
-msgid "configure sysvinit"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysvinit:26
-msgid "Configuring package sysvinit"
-msgstr ""
-
-#: ../helpers/lh_chroot_selinuxfs:16
-msgid "mount /selinux"
-msgstr ""
-
-#: ../helpers/lh_chroot_selinuxfs:36
-msgid "Begin mounting /selinux..."
-msgstr ""
-
-#: ../helpers/lh_chroot_selinuxfs:65
-msgid "Begin unmounting /selinux..."
-msgstr ""
-
-#: ../helpers/lh_binary_md5sum:16
-msgid "create binary md5sums"
-msgstr ""
-
-#: ../helpers/lh_binary_md5sum:31
-msgid "Begin creating binary md5sum.txt..."
-msgstr ""
-
-#: ../helpers/lh_binary_iso:16
-msgid "build iso binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_iso:31
-msgid "Begin building binary iso image..."
-msgstr ""
-
-#: ../helpers/lh_binary_iso:129
-msgid "Bootloader on your architecture not yet supported by live-helper."
-msgstr ""
-
-#: ../helpers/lh_binary_iso:130
-msgid ""
-"This will produce a most likely not bootable image (Continuing in 5 seconds)."
-msgstr ""
-
-#: ../helpers/lh_testroot:16
-msgid "ensure that a system is built as root"
-msgstr ""
-
-#: ../helpers/lh_testroot:29
-msgid "need root privileges"
-msgstr ""
-
-#: ../helpers/lh_binary_memtest:16
-msgid "installs a memtest into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_memtest:31
-msgid "Begin installing memtest..."
-msgstr ""
-
-#: ../helpers/lh_binary_memtest:47
-msgid "skipping binary_memtest, foreign architecture."
-msgstr ""
-
-#: ../helpers/lh_binary_net:16
-msgid "build netboot binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_net:36
-msgid "Begin building binary netboot image..."
-msgstr ""
-
-#: ../helpers/lh_binary_net:93
-msgid "Invalid default kernel flavour for sparc \"%s\""
-msgstr ""
-
-#: ../helpers/lh_chroot_dpkg:16
-msgid "manage /sbin/dpkg"
-msgstr ""
-
-#: ../helpers/lh_chroot_dpkg:31
-msgid "Configuring file /sbin/start-stop-daemon"
-msgstr ""
-
-#: ../helpers/lh_chroot_dpkg:60
-msgid "Deconfiguring file /sbin/start-stop-daemon"
-msgstr ""
-
-#: ../helpers/lh_binary_disk:16
-msgid "install disk information into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_disk:34 ../helpers/lh_source_disk:31
-msgid "Begin installing disk information..."
-msgstr ""
-
-#: ../helpers/lh_binary:16
-msgid "build binary images"
-msgstr ""
-
-#: ../helpers/lh_binary_linux-image:16
-msgid "install linux-image into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_linux-image:26
-msgid "Begin install linux-image..."
-msgstr ""
-
-#: ../helpers/lh_source_tar:16
-msgid "build source tarball"
-msgstr ""
-
-#: ../helpers/lh_source_tar:36
-msgid "Begin building source tarball..."
-msgstr ""
-
-#: ../helpers/lh_chroot_linux-image:16
-msgid "manage /etc/kernel-img.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_linux-image:31
-msgid "Configuring file /etc/kernel-img.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_linux-image:80
-msgid "Deconfiguring file /etc/kernel-img.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_tasks:16
-msgid "install tasks into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_tasks:26
-msgid "Begin installing tasks..."
-msgstr ""
-
-#: ../helpers/lh_chroot_apt:16
-msgid "manage /etc/apt/apt.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_apt:31
-msgid "Configuring file /etc/apt/apt.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_apt:156
-msgid "Deconfiguring file /etc/apt/apt.conf"
-msgstr ""
-
-#: ../helpers/lh_source:16
-msgid "build source images"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_cache:16
-msgid "cache bootstrap stage"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_cache:29
-msgid "Begin caching bootstrap stage..."
-msgstr ""
-
-#: ../helpers/lh_chroot_debianchroot:16
-msgid "manage /etc/debian_chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_debianchroot:31
-msgid "Configuring file /etc/debian_chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_debianchroot:56
-msgid "Deconfiguring file /etc/debian_chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_packages:16
-msgid "queue install of packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_packages:26
-msgid "Begin queueing installation of packages..."
-msgstr ""
-
-#: ../helpers/lh_config:28
-msgid "create configuration for live-helper(7)"
-msgstr ""
-
-#: ../helpers/lh_config:152 ../functions/arguments.sh:16
-msgid "terminating"
-msgstr ""
-
-#: ../helpers/lh_config:168
-msgid "%s: This is live-helper version %s"
-msgstr ""
-
-#: ../helpers/lh_config:707 ../functions/arguments.sh:76
-msgid "internal error %s"
-msgstr ""
-
-#: ../helpers/lh_config:717
-msgid "Considering defaults defined in %s"
-msgstr ""
-
-#: ../helpers/lh_config:1197
-msgid "Please install 'debconf-utils' in order to use this feature."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-preseed:16
-msgid "execute local preseed in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-preseed:26
-msgid "Begin executing local preseeds..."
-msgstr ""
-
-#: ../helpers/lh_chroot_hacks:16
-msgid "execute hacks in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_hacks:26
-msgid "Begin executing hacks..."
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:16
-msgid "build rootfs image"
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:26
-msgid "Begin building root filesystem image..."
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:112
-msgid ""
-"rootfs excludes are not supported on non-chrooted builds unless squashfs as "
-"chroot filesystem is used, thus ignoring excludes now."
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:277
-msgid ""
-"etch squashfs does not support wildcard excludes in config/binary_rootfs/"
-"excludes and are ignored. Please build in chrooted mode or adjust your "
-"exclude file."
-msgstr ""
-
-#: ../helpers/lh_source_iso:16
-msgid "build iso source image"
-msgstr ""
-
-#: ../helpers/lh_source_iso:36
-msgid "Begin building source iso image..."
-msgstr ""
-
-#: ../helpers/lh_chroot_devpts:16
-msgid "mount /dev/pts"
-msgstr ""
-
-#: ../helpers/lh_chroot_devpts:34
-msgid "Begin mounting /dev/pts..."
-msgstr ""
-
-#: ../helpers/lh_chroot_devpts:59
-msgid "Begin unmounting /dev/pts..."
-msgstr ""
-
-#: ../helpers/lh_chroot_install-packages:16
-msgid "install queued packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_install-packages:26
-msgid "Begin installing packages..."
-msgstr ""
-
-#: ../helpers/lh_chroot_proc:16
-msgid "mount /proc"
-msgstr ""
-
-#: ../helpers/lh_chroot_proc:34
-msgid "Begin mounting /proc..."
-msgstr ""
-
-#: ../helpers/lh_chroot_proc:62
-msgid "Begin unmounting /proc..."
-msgstr ""
-
-#: ../helpers/lh_source_disk:16
-msgid "install disk information into source"
-msgstr ""
-
-#: ../helpers/live-helper:32
-msgid "live-helper is a set of scripts to build Debian Live system images."
-msgstr ""
-
-#: ../helpers/live-helper:34
-msgid ""
-"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 ""
-
-#: ../helpers/live-helper:36
-msgid ""
-"An introduction to live-helper can be found in the live-helper(7) manpage."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysfs:16
-msgid "mount /sys"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysfs:34
-msgid "Begin mounting /sys..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysfs:62
-msgid "Begin unmounting /sys..."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-packages:16
-msgid "queue install of local packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-packages:26
-msgid "Begin queueing installation of local packages..."
-msgstr ""
-
-#: ../helpers/lh_binary_local-hooks:16
-msgid "execute local hooks in binary"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:16
-msgid "bootstrap a Debian system with debootstrap(8)"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:117
-msgid "Running debootstrap (download-only)... "
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:137
-msgid "Running debootstrap... "
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:151
-msgid "Can't process file /usr/bin/debootstrap (FIXME)"
-msgstr ""
-
-#: ../functions/echo.sh:242
-msgid ""
-"If the following stage fails, the most likely cause of the problem is with "
-"your mirror configuration, a caching proxy or the sid distribution."
-msgstr ""
-
-#: ../functions/echo.sh:245
-msgid ""
-"If the following stage fails, the most likely cause of the problem is with "
-"your mirror configuration or a caching proxy."
-msgstr ""
-
-#: ../functions/version.sh:12
-msgid "%s, version %s"
-msgstr ""
-
-#: ../functions/version.sh:13
-msgid "This program is a part of %s"
-msgstr ""
-
-#: ../functions/version.sh:15
-msgid "Copyright (C) 2006-2009 Daniel Baumann <daniel at debian.org>"
-msgstr ""
-
-#: ../functions/version.sh:17
-msgid "This program is free software: you can redistribute it and/or modify"
-msgstr ""
-
-#: ../functions/version.sh:18
-msgid "it under the terms of the GNU General Public License as published by"
-msgstr ""
-
-#: ../functions/version.sh:19
-msgid "the Free Software Foundation, either version 3 of the License, or"
-msgstr ""
-
-#: ../functions/version.sh:20
-msgid "(at your option) any later version."
-msgstr ""
-
-#: ../functions/version.sh:22
-msgid "This program is distributed in the hope that it will be useful,"
-msgstr ""
-
-#: ../functions/version.sh:23
-msgid "but WITHOUT ANY WARRANTY; without even the implied warranty of"
-msgstr ""
-
-#: ../functions/version.sh:24
-msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
-msgstr ""
-
-#: ../functions/version.sh:25
-msgid "GNU General Public License for more details."
-msgstr ""
-
-#: ../functions/version.sh:27
-msgid "You should have received a copy of the GNU General Public License"
-msgstr ""
-
-#: ../functions/version.sh:28
-msgid "along with this program. If not, see <http://www.gnu.org/licenses/>."
-msgstr ""
-
-#: ../functions/version.sh:30
-msgid "On Debian systems, the complete text of the GNU General Public License"
-msgstr ""
-
-#: ../functions/version.sh:31
-msgid "can be found in /usr/share/common-licenses/GPL-3 file."
-msgstr ""
-
-#: ../functions/version.sh:33
-msgid "Homepage: <http://debian-live.alioth.debian.org/>"
-msgstr ""
-
-#: ../functions/usage.sh:14 ../functions/help.sh:14
-msgid "Usage:"
-msgstr ""
-
-#: ../functions/usage.sh:27
-msgid "Try \" %s--help\" for more information."
-msgstr ""
-
-#: ../functions/conffile.sh:36
-msgid "Reading configuration file %s"
-msgstr ""
-
-#: ../functions/conffile.sh:39
-msgid "Failed to read configuration file %s"
-msgstr ""
-
-#: ../functions/help.sh:12
-msgid "%s - %s"
-msgstr ""
-
-#: ../functions/help.sh:22
-msgid "  %s [-h|--help]"
-msgstr ""
-
-#: ../functions/help.sh:23
-msgid "  %s [-u|--usage]"
-msgstr ""
-
-#: ../functions/help.sh:24
-msgid "  %s [-v|--version]"
-msgstr ""
-
-#: ../functions/help.sh:33
-msgid ""
-"Report bugs to Debian Live project <http://debian-live.alioth.debian.org/>."
-msgstr ""
-
-#: ../functions/chroot.sh:16
-msgid "Executing: %s"
-msgstr ""
-
-#: ../functions/packages.sh:23
-msgid "You need to install %s on your host system."
-msgstr ""
-
-#: ../functions/exit.sh:20
-msgid "Begin unmounting filesystems..."
-msgstr ""
-
-#: ../functions/exit.sh:29
-msgid "Setting up cleanup function"
-msgstr ""
-
-#: ../functions/stagefile.sh:21
-msgid "skipping %s"
-msgstr ""
-
-#: ../functions/stagefile.sh:25
-msgid "forcing %s"
-msgstr ""
-
-#: ../functions/stagefile.sh:63
-msgid "%s: %s missing"
-msgstr ""
-
-#: ../functions/stagefile.sh:65
-msgid "%s: one of %s is missing"
-msgstr ""
-
-#: ../functions/architecture.sh:26
-msgid "skipping %s, foreign architecture."
-msgstr ""
-
-#: ../functions/breakpoints.sh:16
-msgid "Waiting at %s"
-msgstr ""
-
-#: ../functions/losetup.sh:24
-msgid "Mounting %s with offset 0"
-msgstr ""
-
-#: ../functions/losetup.sh:31
-msgid "Mounting %s with offset %s"
-msgstr ""
-
-#: ../functions/defaults.sh:97
-msgid ""
-"Cannot find /usr/sbin/debootstrap or /usr/bin/cdebootstrap. Please install "
-"debootstrap or cdebootstrap, or specify an alternative bootstrapping utility."
-msgstr ""
-
-#: ../functions/defaults.sh:159
-msgid "Can't process file /sbin/fdisk"
-msgstr ""
-
-#: ../functions/defaults.sh:175
-msgid "Can't process file /sbin/losetup"
-msgstr ""
-
-#: ../functions/defaults.sh:246
-msgid "Can't determine architecture, assuming i386"
-msgstr ""
-
-#: ../functions/defaults.sh:453
-msgid "Architecture not yet supported (FIXME)"
-msgstr ""
-
-#: ../functions/defaults.sh:602
-msgid ""
-"You have placed some preseeding files into config/binary_debian-installer "
-"but you didn't specify the default preseeding file through "
-"LB_DEBIAN_INSTALLER_PRESEEDFILE. This means that debian-installer will not "
-"take up a preseeding file by default."
-msgstr ""
-
-#: ../functions/defaults.sh:769
-msgid ""
-"You selected LB_DISTRIBUTION='etch' and LB_INITRAMFS='live-initramfs' This "
-"is a possible unsafe configuration as live-initramfs is not part of the etch "
-"distribution. Either make sure that live-initramfs is installable (e.g. "
-"through setting up etch-backports repository as third-party source or "
-"putting a valid live-initramfs deb into config/chroot_local-packages) or "
-"switch change your config to etch default (casper)."
-msgstr ""
-
-#: ../functions/defaults.sh:775
-msgid ""
-"You selected LB_DISTRIBUTION='etch' and LB_UNION_FILESYSTEM='aufs' This is a "
-"possible unsafe configuration as aufs is not part of the etch distribution. "
-"Either make sure that aufs modules for your kernel are installable (e.g. "
-"through setting up etch-backports repository as third-party source or "
-"putting a valid aufs-modules deb into config/chroot_local-packages) or "
-"switch change your config to etch default (unionfs)."
-msgstr ""
-
-#: ../functions/defaults.sh:785
-msgid "You selected LB_PACKAGES_LISTS='%s' and LB_APT='aptitude'"
-msgstr ""
-
-#: ../functions/defaults.sh:794
-msgid ""
-"You have selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES an "
-"dLB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
-"cached. This is a possible unsafe configuration as the bootstrap packages "
-"are re-used when integrating the Debian Installer."
-msgstr ""
-
-#: ../functions/defaults.sh:805
-msgid ""
-"You have selected values of LB_BOOTLOADER and LB_BINARY_FILESYSTEM which are "
-"incompatible - syslinux only supports FAT filesystems."
-msgstr ""
-
-#: ../functions/defaults.sh:815
-msgid ""
-"You have selected a combination of bootloader and image type that is "
-"currently not supported by live-helper. Please use either another bootloader "
-"or a different image type."
-msgstr ""
-
-#: ../functions/templates.sh:21
-msgid "templates not accessible in %s nor config/templates"
-msgstr ""
-
-#: ../functions/templates.sh:30
-msgid "%s templates not accessible in %s"
-msgstr ""
diff --git a/po/live-helper.pot b/po/live-helper.pot
deleted file mode 100644
index 0418f35..0000000
--- a/po/live-helper.pot
+++ /dev/null
@@ -1,1092 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-02-02 18:10+0100\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../helpers/lh_source_md5sum:16
-msgid "create source md5sums"
-msgstr ""
-
-#: ../helpers/lh_source_md5sum:36
-msgid "Begin creating source md5sum.txt..."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-includes:16
-msgid "copy local files into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-includes:26
-msgid "Begin copying chroot local includes..."
-msgstr ""
-
-#: ../helpers/lh:16
-msgid "utility to build Debian Live systems"
-msgstr ""
-
-#: ../helpers/lh:41
-msgid "no such helper"
-msgstr ""
-
-#: ../helpers/lh_chroot_packageslists:16
-msgid "queue install of packages lists into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_packageslists:26
-msgid "Begin queueing installation of packages lists..."
-msgstr ""
-
-#: ../helpers/lh_binary_silo:16
-msgid "installs silo into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_silo:42
-msgid "Begin installing silo..."
-msgstr ""
-
-#: ../helpers/lh_binary_silo:172
-msgid "Net cow not supported on silo"
-msgstr ""
-
-#: ../helpers/lh_binary_tar:16
-msgid "build harddisk binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_tar:31
-msgid "Begin building binary harddisk image..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysv-rc:16
-msgid "manage /usr/sbin/policy-rc.d"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysv-rc:31
-msgid "Configuring file /usr/sbin/policy-rc.d"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysv-rc:65
-msgid "Deconfiguring file /usr/sbin/policy-rc.d"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-patches:16
-msgid "apply local patches against chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-patches:26
-msgid "Begin applying chroot local patches..."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-patches:53
-msgid "Applying patch %s..."
-msgstr ""
-
-#: ../helpers/lh_chroot_resolv:16
-msgid "manage /etc/resolv.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_resolv:31
-msgid "Configuring file /etc/resolv.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_resolv:66
-msgid "Deconfiguring file /etc/resolv.conf"
-msgstr ""
-
-#: ../helpers/lh_source_net:16
-msgid "build source net image"
-msgstr ""
-
-#: ../helpers/lh_source_net:36
-msgid "Begin building source netboot image..."
-msgstr ""
-
-#: ../helpers/lh_source_debian:16
-msgid "debian sources"
-msgstr ""
-
-#: ../helpers/lh_source_debian:31
-msgid "Begin downloading sources..."
-msgstr ""
-
-#: ../helpers/lh_chroot:16
-msgid "customize the Debian system"
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:16
-msgid "installs syslinux into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:31
-msgid "Begin installing syslinux..."
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:250
-msgid "%s doen't exist"
-msgstr ""
-
-#: ../helpers/lh_binary_syslinux:453 ../helpers/lh_binary_syslinux:477
-msgid "Unsupported net filesystem"
-msgstr ""
-
-#: ../helpers/lh_bootstrap:16
-msgid "bootstrap a Debian system"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:16
-msgid "build binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:31
-msgid "Begin building binary usb-hdd image..."
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:58
-msgid "Sparc only supports booting from ext2, ext3 (or ufs)"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:89
-msgid ""
-"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:98
-msgid ""
-"FAT16 doesn't support partitions larger than 2GB, automatically enforcing "
-"FAT32"
-msgstr ""
-
-#: ../helpers/lh_binary_usb-hdd:139 ../helpers/lh_source_usb-hdd:86
-msgid "Unsupported binary filesystem %s"
-msgstr ""
-
-#: ../helpers/lh_chroot_symlinks:16
-msgid "convert symlinks"
-msgstr ""
-
-#: ../helpers/lh_chroot_symlinks:31
-msgid "Begin converting symlinks..."
-msgstr ""
-
-#: ../helpers/lh_bootstrap_copy:16
-msgid "bootstrap by copying the host system"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_copy:34 ../helpers/lh_bootstrap_cdebootstrap:34
-#: ../helpers/lh_bootstrap_debootstrap:34
-msgid "Begin bootstrapping system..."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:16
-msgid "installs grub into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_grub:31
-msgid "Begin installing grub..."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:118
-msgid "Bootloader in this image type not yet supported by live-helper."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:119
-msgid "This would produce a not bootable image, aborting (FIXME)."
-msgstr ""
-
-#: ../helpers/lh_binary_grub:177
-msgid "Net cow not yet supported on grub"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-hooks:16
-msgid "execute local hooks in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-hooks:26 ../helpers/lh_binary_local-hooks:26
-msgid "Begin executing local hooks..."
-msgstr ""
-
-#: ../helpers/lh_chroot_preseed:16
-msgid "execute preseed in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_preseed:26
-msgid "Begin executing preseed..."
-msgstr ""
-
-#: ../helpers/lh_chroot_hosts:16
-msgid "manage /etc/hosts"
-msgstr ""
-
-#: ../helpers/lh_chroot_hosts:31
-msgid "Configuring file /etc/hosts"
-msgstr ""
-
-#: ../helpers/lh_chroot_hosts:67
-msgid "Deconfiguring file /etc/hosts"
-msgstr ""
-
-#: ../helpers/lh_chroot_localization:16
-msgid "install localization packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_localization:26
-msgid "Begin installing localization packages..."
-msgstr ""
-
-#: ../helpers/lh_bootstrap_cdebootstrap:16
-msgid "bootstrap a Debian system with cdebootstrap(1)"
-msgstr ""
-
-#: ../helpers/lh_source_debian-live:16
-msgid "copy debian-live config into source"
-msgstr ""
-
-#: ../helpers/lh_source_debian-live:31
-msgid "Begin copying live-helper configuration..."
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:16
-msgid "installs yaboot into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:31
-msgid "Begin installing yaboot..."
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:126
-msgid "not yet supported, aborting (FIXME)."
-msgstr ""
-
-#: ../helpers/lh_binary_yaboot:184
-msgid "Net cow not yet supported on yaboot"
-msgstr ""
-
-#: ../helpers/lh_clean:27
-msgid "clean up system build directories"
-msgstr ""
-
-#: ../helpers/lh_clean:40
-msgid "%s is not a good Debian Live working directory to clean."
-msgstr ""
-
-#: ../helpers/lh_clean:73
-msgid "Cleaning chroot"
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:16
-msgid "copy chroot into chroot"
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:26
-msgid "Begin copying chroot..."
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:80 ../helpers/lh_source_tar:37
-msgid "This may take a while."
-msgstr ""
-
-#: ../helpers/lh_binary_chroot:100
-msgid "Excluded path does not exist: %s"
-msgstr ""
-
-#: ../helpers/lh_binary_local-includes:16 ../helpers/lh_binary_includes:16
-msgid "copy files into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_local-includes:26
-msgid "Begin copying binary local includes..."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:16
-msgid "install debian-installer into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:46
-msgid "debian-installer flavour %s not supported."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:51
-msgid "Begin installing debian-installer..."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:214
-msgid "Could not download file: %s"
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:306
-msgid "No daily-builds found for your architecture."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:466
-msgid "Could not find cache/packages_bootstrap."
-msgstr ""
-
-#: ../helpers/lh_binary_debian-installer:467
-msgid ""
-"You selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
-"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
-"cached - these are required when integrating the Debian Installer."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:16
-msgid "make build interactive"
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:31
-msgid "Begin interactive build..."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:47
-msgid "Pausing build: starting interactive shell..."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:51
-msgid "Pausing build: starting interactive X11..."
-msgstr ""
-
-#: ../helpers/lh_chroot_interactive:55
-msgid "Pausing build: starting interactive Xnest..."
-msgstr ""
-
-#: ../helpers/lh_chroot_cache:16
-msgid "cache chroot stage"
-msgstr ""
-
-#: ../helpers/lh_chroot_cache:26
-msgid "Begin caching chroot stage..."
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:16
-msgid "manage /bin/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:31
-msgid "Configuring file /etc/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:48
-msgid "Configuring file /bin/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:65
-msgid "Deconfiguring file /etc/hostname"
-msgstr ""
-
-#: ../helpers/lh_chroot_hostname:73
-msgid "Deconfiguring file /bin/hostname"
-msgstr ""
-
-#: ../helpers/lh_binary_manifest:16
-msgid "create manifest"
-msgstr ""
-
-#: ../helpers/lh_binary_manifest:26
-msgid "Begin creating manifest..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:16
-msgid "manage /etc/apt/sources.list"
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:33
-msgid "Configuring file /etc/apt/sources.list"
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:168
-msgid "GPG exited with error status %s"
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:212
-#, sh-format
-msgid ""
-"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
-msgstr ""
-
-#: ../helpers/lh_chroot_sources:329
-msgid "Deconfiguring file /etc/apt/sources.list"
-msgstr ""
-
-#: ../helpers/lh_chroot_hooks:16
-msgid "execute hooks in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_hooks:26
-msgid "Begin executing hooks..."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:16
-msgid "encrypts rootfs"
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:33
-msgid "Encryption type %s not supported."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:43
-msgid "Encryption not yet supported on %s filesystems."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:48
-msgid "Begin encrypting root filesystem image..."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:81
-msgid "Encrypting binary/%s/filesystem.%s with %s..."
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:93
-msgid " ** Configuring encrypted filesystem **"
-msgstr ""
-
-#: ../helpers/lh_binary_encryption:95
-msgid " (Passwords must be at least 20 characters long)"
-msgstr ""
-
-#: ../helpers/lh_build:27
-msgid "build a Debian Live system"
-msgstr ""
-
-#: ../helpers/lh_build:35
-msgid "No config/ directory; using defaults for all options"
-msgstr ""
-
-#: ../helpers/lh_build:40
-msgid "Cannot build live image from the root directory (/)"
-msgstr ""
-
-#: ../helpers/lh_build:46
-msgid "Cannot build live image from a directory containing spaces"
-msgstr ""
-
-#: ../helpers/lh_binary_includes:31
-msgid "Begin copying binary includes..."
-msgstr ""
-
-#: ../helpers/lh_binary_includes:52
-msgid "user specified includes not accessible in %s"
-msgstr ""
-
-#: ../helpers/lh_binary_includes:171
-msgid "win32-loader inclusion is enabled but not found, ignoring."
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:16
-msgid "build source image"
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:36
-msgid "Begin building source usb-hdd image..."
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:91
-msgid "!!! The following error/warning messages can be ignored !!!"
-msgstr ""
-
-#: ../helpers/lh_source_usb-hdd:125
-msgid "!!! The above error/warning messages can be ignored !!!"
-msgstr ""
-
-#: ../helpers/lh_binary_local-packageslists:16
-msgid "install local packages into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_local-packageslists:26
-msgid "Begin installing local packages lists..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysvinit:16
-msgid "configure sysvinit"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysvinit:26
-msgid "Configuring package sysvinit"
-msgstr ""
-
-#: ../helpers/lh_chroot_selinuxfs:16
-msgid "mount /selinux"
-msgstr ""
-
-#: ../helpers/lh_chroot_selinuxfs:36
-msgid "Begin mounting /selinux..."
-msgstr ""
-
-#: ../helpers/lh_chroot_selinuxfs:65
-msgid "Begin unmounting /selinux..."
-msgstr ""
-
-#: ../helpers/lh_binary_md5sum:16
-msgid "create binary md5sums"
-msgstr ""
-
-#: ../helpers/lh_binary_md5sum:31
-msgid "Begin creating binary md5sum.txt..."
-msgstr ""
-
-#: ../helpers/lh_binary_iso:16
-msgid "build iso binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_iso:31
-msgid "Begin building binary iso image..."
-msgstr ""
-
-#: ../helpers/lh_binary_iso:129
-msgid "Bootloader on your architecture not yet supported by live-helper."
-msgstr ""
-
-#: ../helpers/lh_binary_iso:130
-msgid ""
-"This will produce a most likely not bootable image (Continuing in 5 seconds)."
-msgstr ""
-
-#: ../helpers/lh_testroot:16
-msgid "ensure that a system is built as root"
-msgstr ""
-
-#: ../helpers/lh_testroot:29
-msgid "need root privileges"
-msgstr ""
-
-#: ../helpers/lh_binary_memtest:16
-msgid "installs a memtest into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_memtest:31
-msgid "Begin installing memtest..."
-msgstr ""
-
-#: ../helpers/lh_binary_memtest:47
-msgid "skipping binary_memtest, foreign architecture."
-msgstr ""
-
-#: ../helpers/lh_binary_net:16
-msgid "build netboot binary image"
-msgstr ""
-
-#: ../helpers/lh_binary_net:36
-msgid "Begin building binary netboot image..."
-msgstr ""
-
-#: ../helpers/lh_binary_net:93
-msgid "Invalid default kernel flavour for sparc \"%s\""
-msgstr ""
-
-#: ../helpers/lh_chroot_dpkg:16
-msgid "manage /sbin/dpkg"
-msgstr ""
-
-#: ../helpers/lh_chroot_dpkg:31
-msgid "Configuring file /sbin/start-stop-daemon"
-msgstr ""
-
-#: ../helpers/lh_chroot_dpkg:60
-msgid "Deconfiguring file /sbin/start-stop-daemon"
-msgstr ""
-
-#: ../helpers/lh_binary_disk:16
-msgid "install disk information into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_disk:34 ../helpers/lh_source_disk:31
-msgid "Begin installing disk information..."
-msgstr ""
-
-#: ../helpers/lh_binary:16
-msgid "build binary images"
-msgstr ""
-
-#: ../helpers/lh_binary_linux-image:16
-msgid "install linux-image into binary"
-msgstr ""
-
-#: ../helpers/lh_binary_linux-image:26
-msgid "Begin install linux-image..."
-msgstr ""
-
-#: ../helpers/lh_source_tar:16
-msgid "build source tarball"
-msgstr ""
-
-#: ../helpers/lh_source_tar:36
-msgid "Begin building source tarball..."
-msgstr ""
-
-#: ../helpers/lh_chroot_linux-image:16
-msgid "manage /etc/kernel-img.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_linux-image:31
-msgid "Configuring file /etc/kernel-img.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_linux-image:80
-msgid "Deconfiguring file /etc/kernel-img.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_tasks:16
-msgid "install tasks into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_tasks:26
-msgid "Begin installing tasks..."
-msgstr ""
-
-#: ../helpers/lh_chroot_apt:16
-msgid "manage /etc/apt/apt.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_apt:31
-msgid "Configuring file /etc/apt/apt.conf"
-msgstr ""
-
-#: ../helpers/lh_chroot_apt:156
-msgid "Deconfiguring file /etc/apt/apt.conf"
-msgstr ""
-
-#: ../helpers/lh_source:16
-msgid "build source images"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_cache:16
-msgid "cache bootstrap stage"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_cache:29
-msgid "Begin caching bootstrap stage..."
-msgstr ""
-
-#: ../helpers/lh_chroot_debianchroot:16
-msgid "manage /etc/debian_chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_debianchroot:31
-msgid "Configuring file /etc/debian_chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_debianchroot:56
-msgid "Deconfiguring file /etc/debian_chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_packages:16
-msgid "queue install of packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_packages:26
-msgid "Begin queueing installation of packages..."
-msgstr ""
-
-#: ../helpers/lh_config:28
-msgid "create configuration for live-helper(7)"
-msgstr ""
-
-#: ../helpers/lh_config:152 ../functions/arguments.sh:16
-msgid "terminating"
-msgstr ""
-
-#: ../helpers/lh_config:168
-msgid "%s: This is live-helper version %s"
-msgstr ""
-
-#: ../helpers/lh_config:707 ../functions/arguments.sh:76
-msgid "internal error %s"
-msgstr ""
-
-#: ../helpers/lh_config:717
-msgid "Considering defaults defined in %s"
-msgstr ""
-
-#: ../helpers/lh_config:1197
-msgid "Please install 'debconf-utils' in order to use this feature."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-preseed:16
-msgid "execute local preseed in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-preseed:26
-msgid "Begin executing local preseeds..."
-msgstr ""
-
-#: ../helpers/lh_chroot_hacks:16
-msgid "execute hacks in chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_hacks:26
-msgid "Begin executing hacks..."
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:16
-msgid "build rootfs image"
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:26
-msgid "Begin building root filesystem image..."
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:112
-msgid ""
-"rootfs excludes are not supported on non-chrooted builds unless squashfs as "
-"chroot filesystem is used, thus ignoring excludes now."
-msgstr ""
-
-#: ../helpers/lh_binary_rootfs:277
-msgid ""
-"etch squashfs does not support wildcard excludes in config/binary_rootfs/"
-"excludes and are ignored. Please build in chrooted mode or adjust your "
-"exclude file."
-msgstr ""
-
-#: ../helpers/lh_source_iso:16
-msgid "build iso source image"
-msgstr ""
-
-#: ../helpers/lh_source_iso:36
-msgid "Begin building source iso image..."
-msgstr ""
-
-#: ../helpers/lh_chroot_devpts:16
-msgid "mount /dev/pts"
-msgstr ""
-
-#: ../helpers/lh_chroot_devpts:34
-msgid "Begin mounting /dev/pts..."
-msgstr ""
-
-#: ../helpers/lh_chroot_devpts:59
-msgid "Begin unmounting /dev/pts..."
-msgstr ""
-
-#: ../helpers/lh_chroot_install-packages:16
-msgid "install queued packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_install-packages:26
-msgid "Begin installing packages..."
-msgstr ""
-
-#: ../helpers/lh_chroot_proc:16
-msgid "mount /proc"
-msgstr ""
-
-#: ../helpers/lh_chroot_proc:34
-msgid "Begin mounting /proc..."
-msgstr ""
-
-#: ../helpers/lh_chroot_proc:62
-msgid "Begin unmounting /proc..."
-msgstr ""
-
-#: ../helpers/lh_source_disk:16
-msgid "install disk information into source"
-msgstr ""
-
-#: ../helpers/live-helper:32
-msgid "live-helper is a set of scripts to build Debian Live system images."
-msgstr ""
-
-#: ../helpers/live-helper:34
-msgid ""
-"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 ""
-
-#: ../helpers/live-helper:36
-msgid ""
-"An introduction to live-helper can be found in the live-helper(7) manpage."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysfs:16
-msgid "mount /sys"
-msgstr ""
-
-#: ../helpers/lh_chroot_sysfs:34
-msgid "Begin mounting /sys..."
-msgstr ""
-
-#: ../helpers/lh_chroot_sysfs:62
-msgid "Begin unmounting /sys..."
-msgstr ""
-
-#: ../helpers/lh_chroot_local-packages:16
-msgid "queue install of local packages into chroot"
-msgstr ""
-
-#: ../helpers/lh_chroot_local-packages:26
-msgid "Begin queueing installation of local packages..."
-msgstr ""
-
-#: ../helpers/lh_binary_local-hooks:16
-msgid "execute local hooks in binary"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:16
-msgid "bootstrap a Debian system with debootstrap(8)"
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:117
-msgid "Running debootstrap (download-only)... "
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:137
-msgid "Running debootstrap... "
-msgstr ""
-
-#: ../helpers/lh_bootstrap_debootstrap:151
-msgid "Can't process file /usr/bin/debootstrap (FIXME)"
-msgstr ""
-
-#: ../functions/echo.sh:242
-msgid ""
-"If the following stage fails, the most likely cause of the problem is with "
-"your mirror configuration, a caching proxy or the sid distribution."
-msgstr ""
-
-#: ../functions/echo.sh:245
-msgid ""
-"If the following stage fails, the most likely cause of the problem is with "
-"your mirror configuration or a caching proxy."
-msgstr ""
-
-#: ../functions/version.sh:12
-msgid "%s, version %s"
-msgstr ""
-
-#: ../functions/version.sh:13
-msgid "This program is a part of %s"
-msgstr ""
-
-#: ../functions/version.sh:15
-msgid "Copyright (C) 2006-2009 Daniel Baumann <daniel at debian.org>"
-msgstr ""
-
-#: ../functions/version.sh:17
-msgid "This program is free software: you can redistribute it and/or modify"
-msgstr ""
-
-#: ../functions/version.sh:18
-msgid "it under the terms of the GNU General Public License as published by"
-msgstr ""
-
-#: ../functions/version.sh:19
-msgid "the Free Software Foundation, either version 3 of the License, or"
-msgstr ""
-
-#: ../functions/version.sh:20
-msgid "(at your option) any later version."
-msgstr ""
-
-#: ../functions/version.sh:22
-msgid "This program is distributed in the hope that it will be useful,"
-msgstr ""
-
-#: ../functions/version.sh:23
-msgid "but WITHOUT ANY WARRANTY; without even the implied warranty of"
-msgstr ""
-
-#: ../functions/version.sh:24
-msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
-msgstr ""
-
-#: ../functions/version.sh:25
-msgid "GNU General Public License for more details."
-msgstr ""
-
-#: ../functions/version.sh:27
-msgid "You should have received a copy of the GNU General Public License"
-msgstr ""
-
-#: ../functions/version.sh:28
-msgid "along with this program. If not, see <http://www.gnu.org/licenses/>."
-msgstr ""
-
-#: ../functions/version.sh:30
-msgid "On Debian systems, the complete text of the GNU General Public License"
-msgstr ""
-
-#: ../functions/version.sh:31
-msgid "can be found in /usr/share/common-licenses/GPL-3 file."
-msgstr ""
-
-#: ../functions/version.sh:33
-msgid "Homepage: <http://debian-live.alioth.debian.org/>"
-msgstr ""
-
-#: ../functions/usage.sh:14 ../functions/help.sh:14
-msgid "Usage:"
-msgstr ""
-
-#: ../functions/usage.sh:27
-msgid "Try \" %s--help\" for more information."
-msgstr ""
-
-#: ../functions/conffile.sh:36
-msgid "Reading configuration file %s"
-msgstr ""
-
-#: ../functions/conffile.sh:39
-msgid "Failed to read configuration file %s"
-msgstr ""
-
-#: ../functions/help.sh:12
-msgid "%s - %s"
-msgstr ""
-
-#: ../functions/help.sh:22
-msgid "  %s [-h|--help]"
-msgstr ""
-
-#: ../functions/help.sh:23
-msgid "  %s [-u|--usage]"
-msgstr ""
-
-#: ../functions/help.sh:24
-msgid "  %s [-v|--version]"
-msgstr ""
-
-#: ../functions/help.sh:33
-msgid ""
-"Report bugs to Debian Live project <http://debian-live.alioth.debian.org/>."
-msgstr ""
-
-#: ../functions/chroot.sh:16
-msgid "Executing: %s"
-msgstr ""
-
-#: ../functions/packages.sh:23
-msgid "You need to install %s on your host system."
-msgstr ""
-
-#: ../functions/exit.sh:20
-msgid "Begin unmounting filesystems..."
-msgstr ""
-
-#: ../functions/exit.sh:29
-msgid "Setting up cleanup function"
-msgstr ""
-
-#: ../functions/stagefile.sh:21
-msgid "skipping %s"
-msgstr ""
-
-#: ../functions/stagefile.sh:25
-msgid "forcing %s"
-msgstr ""
-
-#: ../functions/stagefile.sh:63
-msgid "%s: %s missing"
-msgstr ""
-
-#: ../functions/stagefile.sh:65
-msgid "%s: one of %s is missing"
-msgstr ""
-
-#: ../functions/architecture.sh:26
-msgid "skipping %s, foreign architecture."
-msgstr ""
-
-#: ../functions/breakpoints.sh:16
-msgid "Waiting at %s"
-msgstr ""
-
-#: ../functions/losetup.sh:24
-msgid "Mounting %s with offset 0"
-msgstr ""
-
-#: ../functions/losetup.sh:31
-msgid "Mounting %s with offset %s"
-msgstr ""
-
-#: ../functions/defaults.sh:97
-msgid ""
-"Cannot find /usr/sbin/debootstrap or /usr/bin/cdebootstrap. Please install "
-"debootstrap or cdebootstrap, or specify an alternative bootstrapping utility."
-msgstr ""
-
-#: ../functions/defaults.sh:159
-msgid "Can't process file /sbin/fdisk"
-msgstr ""
-
-#: ../functions/defaults.sh:175
-msgid "Can't process file /sbin/losetup"
-msgstr ""
-
-#: ../functions/defaults.sh:246
-msgid "Can't determine architecture, assuming i386"
-msgstr ""
-
-#: ../functions/defaults.sh:453
-msgid "Architecture not yet supported (FIXME)"
-msgstr ""
-
-#: ../functions/defaults.sh:602
-msgid ""
-"You have placed some preseeding files into config/binary_debian-installer "
-"but you didn't specify the default preseeding file through "
-"LB_DEBIAN_INSTALLER_PRESEEDFILE. This means that debian-installer will not "
-"take up a preseeding file by default."
-msgstr ""
-
-#: ../functions/defaults.sh:769
-msgid ""
-"You selected LB_DISTRIBUTION='etch' and LB_INITRAMFS='live-initramfs' This "
-"is a possible unsafe configuration as live-initramfs is not part of the etch "
-"distribution. Either make sure that live-initramfs is installable (e.g. "
-"through setting up etch-backports repository as third-party source or "
-"putting a valid live-initramfs deb into config/chroot_local-packages) or "
-"switch change your config to etch default (casper)."
-msgstr ""
-
-#: ../functions/defaults.sh:775
-msgid ""
-"You selected LB_DISTRIBUTION='etch' and LB_UNION_FILESYSTEM='aufs' This is a "
-"possible unsafe configuration as aufs is not part of the etch distribution. "
-"Either make sure that aufs modules for your kernel are installable (e.g. "
-"through setting up etch-backports repository as third-party source or "
-"putting a valid aufs-modules deb into config/chroot_local-packages) or "
-"switch change your config to etch default (unionfs)."
-msgstr ""
-
-#: ../functions/defaults.sh:785
-msgid "You selected LB_PACKAGES_LISTS='%s' and LB_APT='aptitude'"
-msgstr ""
-
-#: ../functions/defaults.sh:794
-msgid ""
-"You have selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES an "
-"dLB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
-"cached. This is a possible unsafe configuration as the bootstrap packages "
-"are re-used when integrating the Debian Installer."
-msgstr ""
-
-#: ../functions/defaults.sh:805
-msgid ""
-"You have selected values of LB_BOOTLOADER and LB_BINARY_FILESYSTEM which are "
-"incompatible - syslinux only supports FAT filesystems."
-msgstr ""
-
-#: ../functions/defaults.sh:815
-msgid ""
-"You have selected a combination of bootloader and image type that is "
-"currently not supported by live-helper. Please use either another bootloader "
-"or a different image type."
-msgstr ""
-
-#: ../functions/templates.sh:21
-msgid "templates not accessible in %s nor config/templates"
-msgstr ""
-
-#: ../functions/templates.sh:30
-msgid "%s templates not accessible in %s"
-msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
deleted file mode 100644
index fdf1b98..0000000
--- a/po/pt_BR.po
+++ /dev/null
@@ -1,1136 +0,0 @@
-# live-helper Brazilian portuguese translation
-# Copyright (C) Tiago Bortoletto Vaz
-# This file is distributed under the same license as the live-helper package.
-# Tiago Bortoletto Vaz <tiago at debian-ba.org>, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: 1.0.3-1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-02-04 12:53-0300\n"
-"PO-Revision-Date: 2008-08-11 00:30-0300\n"
-"Last-Translator: Tiago Bortoletto Vaz <tiago at debian-ba.org>\n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../helpers/lh:16
-msgid "utility to build Debian Live systems"
-msgstr "utilitário para construir sistemas Debian Live"
-
-#: ../helpers/lh:41
-msgid "no such helper"
-msgstr "helper não encontrado"
-
-#: ../helpers/lh_binary:16
-msgid "build binary images"
-msgstr "constrói imagens binárias"
-
-#: ../helpers/lh_binary_chroot:16
-msgid "copy chroot into chroot"
-msgstr "copia o chroot dentro de chroot"
-
-#: ../helpers/lh_binary_chroot:26
-msgid "Begin copying chroot..."
-msgstr "Iniciando cópia do chroot..."
-
-#: ../helpers/lh_binary_chroot:80 ../helpers/lh_source_tar:37
-msgid "This may take a while."
-msgstr "Isto pode levar algum tempo."
-
-#: ../helpers/lh_binary_chroot:100
-msgid "Excluded path does not exist: %s"
-msgstr "Caminho excluído não existe: %s"
-
-#: ../helpers/lh_binary_debian-installer:16
-msgid "install debian-installer into binary"
-msgstr "instala o debian-installer dentro do binário"
-
-#: ../helpers/lh_binary_debian-installer:46
-msgid "debian-installer flavour %s not supported."
-msgstr "debian-installer 'flavour' %s não suportado."
-
-#: ../helpers/lh_binary_debian-installer:51
-msgid "Begin installing debian-installer..."
-msgstr "Iniciando instalação do debian-installer..."
-
-#: ../helpers/lh_binary_debian-installer:214
-msgid "Could not download file: %s"
-msgstr "Não foi possível fazer download do arquivo: %s"
-
-#: ../helpers/lh_binary_debian-installer:306
-msgid "No daily-builds found for your architecture."
-msgstr "Não foi encontrado 'build' diário para sua arquitetura."
-
-#: ../helpers/lh_binary_debian-installer:466
-msgid "Could not find cache/packages_bootstrap."
-msgstr "Não encontrei cache/packages_bootstrap."
-
-#: ../helpers/lh_binary_debian-installer:467
-msgid ""
-"You selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
-"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
-"cached - these are required when integrating the Debian Installer."
-msgstr ""
-"Você selecionou valores para LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES e "
-"LB_DEBIAN_INSTALLER que resultará na não realização de cache dos pacotes de "
-"'bootstrap' - note que estes são requeridos quando há integração com o "
-"Instalador do Debian."
-
-#: ../helpers/lh_binary_disk:16
-msgid "install disk information into binary"
-msgstr "Iniciando a instalação da informação do disco no binário..."
-
-#: ../helpers/lh_binary_disk:34 ../helpers/lh_source_disk:31
-msgid "Begin installing disk information..."
-msgstr "Iniciando a instalação da informação do disco..."
-
-#: ../helpers/lh_binary_encryption:16
-msgid "encrypts rootfs"
-msgstr "encripta o rootfs"
-
-#: ../helpers/lh_binary_encryption:33
-msgid "Encryption type %s not supported."
-msgstr "Encriptação do tipo %s não é suportada."
-
-#: ../helpers/lh_binary_encryption:43
-msgid "Encryption not yet supported on %s filesystems."
-msgstr "Encriptação ainda não suportada em sistemas de arquivos %s."
-
-#: ../helpers/lh_binary_encryption:48
-msgid "Begin encrypting root filesystem image..."
-msgstr "Iniciando encriptação do sistema de arquivo raiz na imagem..."
-
-#: ../helpers/lh_binary_encryption:81
-msgid "Encrypting binary/%s/filesystem.%s with %s..."
-msgstr "Encriptando binary/%s/filesystem.%s com %s..."
-
-#: ../helpers/lh_binary_encryption:93
-msgid " ** Configuring encrypted filesystem **"
-msgstr " ** Configurando sistemas de arquivos encriptado **"
-
-#: ../helpers/lh_binary_encryption:95
-msgid " (Passwords must be at least 20 characters long)"
-msgstr " (Senhas devem conter ao menos 20 caracteres)"
-
-#: ../helpers/lh_binary_grub:16
-msgid "installs grub into binary"
-msgstr "instala grub no binário"
-
-#: ../helpers/lh_binary_grub:31
-msgid "Begin installing grub..."
-msgstr "Iniciando instalação do grub..."
-
-#: ../helpers/lh_binary_grub:118
-msgid "Bootloader in this image type not yet supported by live-helper."
-msgstr "O carregador de boot nesta imagem não é ainda suportado pelo "
-"live-helper"
-
-#: ../helpers/lh_binary_grub:119
-msgid "This would produce a not bootable image, aborting (FIXME)."
-msgstr "Isto iria produzir uma imagem incapaz de realizar o boot, abortando "
-"(FIXME)."
-
-#: ../helpers/lh_binary_grub:177
-msgid "Net cow not yet supported on grub"
-msgstr "Net cow ainda não é suportado no grub"
-
-#: ../helpers/lh_binary_includes:16 ../helpers/lh_binary_local-includes:16
-msgid "copy files into binary"
-msgstr "copia arquivos dentro do binário"
-
-#: ../helpers/lh_binary_includes:31
-msgid "Begin copying binary includes..."
-msgstr "Início da cópia dos 'includes' locais..."
-
-#: ../helpers/lh_binary_includes:52
-msgid "user specified includes not accessible in %s"
-msgstr "'includes' específicos do usuário não acessível em %s"
-
-#: ../helpers/lh_binary_includes:171
-msgid "win32-loader inclusion is enabled but not found, ignoring."
-msgstr "a inclusão do win32-loader está ativada, mas ele não foi encontrado"
-", ignorando."
-
-#: ../helpers/lh_binary_iso:16
-msgid "build iso binary image"
-msgstr "constrói a imagem iso binária"
-
-#: ../helpers/lh_binary_iso:31
-msgid "Begin building binary iso image..."
-msgstr "Iniciando a construção da imagem iso binária..."
-
-#: ../helpers/lh_binary_iso:121
-msgid "Bootloader on your architecture not yet supported by live-helper."
-msgstr ""
-"O carregador de boot na sua arquitetura ainda não é suportado pelo "
-"live-helper."
-
-#: ../helpers/lh_binary_iso:122
-msgid ""
-"This will produce a most likely not bootable image (Continuing in 5 seconds)."
-msgstr ""
-"Isto irá produzir ima imagem incapaz de realizar o boot (continuando "
-"em 5 segundos)"
-
-#: ../helpers/lh_binary_linux-image:16
-msgid "install linux-image into binary"
-msgstr "instala linux-image dentro do binário"
-
-#: ../helpers/lh_binary_linux-image:26
-msgid "Begin install linux-image..."
-msgstr "Iniciando instalação do linux-image..."
-
-#: ../helpers/lh_binary_local-hooks:16
-msgid "execute local hooks in binary"
-msgstr "executa hooks locais no binário"
-
-#: ../helpers/lh_binary_local-hooks:26 ../helpers/lh_chroot_local-hooks:26
-msgid "Begin executing local hooks..."
-msgstr "Iniciando execução de hooks locais..."
-
-#: ../helpers/lh_binary_local-includes:26
-msgid "Begin copying binary local includes..."
-msgstr "Iniciando cópia dos 'includes' locais binários..."
-
-#: ../helpers/lh_binary_local-packageslists:16
-msgid "install local packages into binary"
-msgstr "instala pacotes locais dentro do binário"
-
-#: ../helpers/lh_binary_local-packageslists:26
-msgid "Begin installing local packages lists..."
-msgstr "Iniciando instalação das listas de pacotes locais..."
-
-#: ../helpers/lh_binary_manifest:16
-msgid "create manifest"
-msgstr "cria manifesto"
-
-#: ../helpers/lh_binary_manifest:26
-msgid "Begin creating manifest..."
-msgstr "Iniciando a criação do manifesto..."
-
-#: ../helpers/lh_binary_md5sum:16
-msgid "create binary md5sums"
-msgstr "cria md5sum.txt do binário"
-
-#: ../helpers/lh_binary_md5sum:31
-msgid "Begin creating binary md5sum.txt..."
-msgstr "Iniciando a criação do md5sum.txt do binário..."
-
-#: ../helpers/lh_binary_memtest:16
-msgid "installs a memtest into binary"
-msgstr "instala um teste de memória dentro do binário"
-
-#: ../helpers/lh_binary_memtest:31
-msgid "Begin installing memtest..."
-msgstr "Iniciando a instalação do memtest..."
-
-#: ../helpers/lh_binary_memtest:47
-msgid "skipping binary_memtest, foreign architecture."
-msgstr "pulando teste de memória, arquitetura estranha."
-
-#: ../helpers/lh_binary_net:16
-msgid "build netboot binary image"
-msgstr "constrói imagem de rede (netboot) binária"
-
-#: ../helpers/lh_binary_net:36
-msgid "Begin building binary netboot image..."
-msgstr "Iniciando a construção da imagem binária netboot..."
-
-#: ../helpers/lh_binary_net:93
-msgid "Invalid default kernel flavour for sparc \"%s\""
-msgstr "Kernel 'flavour' padrão inválido para sparc \"%s\""
-
-#: ../helpers/lh_binary_rootfs:16
-msgid "build rootfs image"
-msgstr "constrói imagem rootfs"
-
-#: ../helpers/lh_binary_rootfs:26
-msgid "Begin building root filesystem image..."
-msgstr "Iniciando a construção do sistema de arquivos raiz da imagem..."
-
-#: ../helpers/lh_binary_rootfs:112
-msgid ""
-"rootfs excludes are not supported on non-chrooted builds unless squashfs as "
-"chroot filesystem is used, thus ignoring excludes now."
-msgstr ""
-"exclusões em rootfs não sao suportadas em builds sem chroot ao menos quando "
-"o sistema de arquivos squashfs é utilizado como chroot, ignorando então as "
-"exclusões agora."
-
-#: ../helpers/lh_binary_rootfs:277
-msgid ""
-"etch squashfs does not support wildcard excludes in config/binary_rootfs/"
-"excludes and are ignored. Please build in chrooted mode or adjust your "
-"exclude file."
-msgstr ""
-"squashfs no etch não suporta exclusões via curingas em config/binary_rootfs/ "
-"exclusões estão sendo ignoradas. Por favor construa em modo chroot ou ajuste "
-"seu arquivo de exclusões."
-
-#: ../helpers/lh_binary_silo:16
-msgid "installs silo into binary"
-msgstr "instala silo no binário"
-
-#: ../helpers/lh_binary_silo:42
-msgid "Begin installing silo..."
-msgstr "Iniciando a instalação do silo..."
-
-#: ../helpers/lh_binary_silo:172
-msgid "Net cow not supported on silo"
-msgstr "Net cow não é suportado no silo"
-
-#: ../helpers/lh_binary_syslinux:16
-msgid "installs syslinux into binary"
-msgstr "instala syslinux no binário"
-
-#: ../helpers/lh_binary_syslinux:31
-msgid "Begin installing syslinux..."
-msgstr "Iniciando instalação do syslinux..."
-
-#: ../helpers/lh_binary_syslinux:250
-msgid "%s doen't exist"
-msgstr "%s não existe"
-
-#: ../helpers/lh_binary_syslinux:453 ../helpers/lh_binary_syslinux:477
-msgid "Unsupported net filesystem"
-msgstr "Sistema de arquivos de rede não suportado"
-
-#: ../helpers/lh_binary_tar:16
-msgid "build harddisk binary image"
-msgstr "constrói imagem harddisk binária"
-
-#: ../helpers/lh_binary_tar:31
-msgid "Begin building binary harddisk image..."
-msgstr "Iniciando construção da imagem binária harddisk..."
-
-#: ../helpers/lh_binary_usb-hdd:16
-msgid "build binary image"
-msgstr "constrói imagem binária"
-
-#: ../helpers/lh_binary_usb-hdd:31
-msgid "Begin building binary usb-hdd image..."
-msgstr "Iniciando a construção da imagem binária usb-hdd..."
-
-#: ../helpers/lh_binary_usb-hdd:58
-msgid "Sparc only supports booting from ext2, ext3 (or ufs)"
-msgstr ""
-"Sparc somente suporta o carregamento do sistema com ext2, ext3 (or ufs)"
-
-#: ../helpers/lh_binary_usb-hdd:89
-msgid ""
-"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
-msgstr ""
-"FAT16 não suporta arquivos maiores que 2GB, automaticamente forçando FAT32."
-
-#: ../helpers/lh_binary_usb-hdd:98
-msgid ""
-"FAT16 doesn't support partitions larger than 2GB, automatically enforcing "
-"FAT32"
-msgstr ""
-"FAT16 não suporta partições maiores que 2GB, automaticamente forçando FAT32."
-
-#: ../helpers/lh_binary_usb-hdd:139 ../helpers/lh_source_usb-hdd:86
-msgid "Unsupported binary filesystem %s"
-msgstr "Sistema de arquivos binário %s não suportado"
-
-#: ../helpers/lh_binary_yaboot:16
-msgid "installs yaboot into binary"
-msgstr "instala yaboot no binário"
-
-#: ../helpers/lh_binary_yaboot:31
-msgid "Begin installing yaboot..."
-msgstr "Iniciando instalação do yaboot..."
-
-#: ../helpers/lh_binary_yaboot:126
-msgid "not yet supported, aborting (FIXME)."
-msgstr "ainda não suportado, abortando (FIXME)."
-
-#: ../helpers/lh_binary_yaboot:184
-msgid "Net cow not yet supported on yaboot"
-msgstr "Net cow não é suportada pelo yaboot"
-
-#: ../helpers/lh_bootstrap:16
-msgid "bootstrap a Debian system"
-msgstr "'bootstrap' um sistema Debian"
-
-#: ../helpers/lh_bootstrap_cache:16
-msgid "cache bootstrap stage"
-msgstr "Faz o cache do bootstrap"
-
-#: ../helpers/lh_bootstrap_cache:29
-msgid "Begin caching bootstrap stage..."
-msgstr "Iniciando cache da bootstrap..."
-
-#: ../helpers/lh_bootstrap_cdebootstrap:16
-msgid "bootstrap a Debian system with cdebootstrap(1)"
-msgstr "realiza o bootstrap no sistema Debian com cdebootstrap(1)"
-
-#: ../helpers/lh_bootstrap_cdebootstrap:34 ../helpers/lh_bootstrap_copy:34
-#: ../helpers/lh_bootstrap_debootstrap:34
-msgid "Begin bootstrapping system..."
-msgstr "Iniciando bootstrap no sistema..."
-
-#: ../helpers/lh_bootstrap_copy:16
-msgid "bootstrap by copying the host system"
-msgstr "realiza o bootstrap copiando o sistema hospedeiro"
-
-#: ../helpers/lh_bootstrap_debootstrap:16
-msgid "bootstrap a Debian system with debootstrap(8)"
-msgstr "realiza o bootstrap no sistema Debian com debootstrap(8)"
-
-#: ../helpers/lh_bootstrap_debootstrap:117
-msgid "Running debootstrap (download-only)... "
-msgstr "Executando debootstrap (download-only)..."
-
-#: ../helpers/lh_bootstrap_debootstrap:137
-msgid "Running debootstrap... "
-msgstr "Executando debootstrap..."
-
-#: ../helpers/lh_bootstrap_debootstrap:151
-msgid "Can't process file /usr/bin/debootstrap (FIXME)"
-msgstr "Não posso processar o arquivo /usr/bin/debootstrap (FIXME)"
-
-#: ../helpers/lh_build:27
-msgid "build a Debian Live system"
-msgstr "constrói um sistema Debian Live"
-
-#: ../helpers/lh_build:35
-msgid "No config/ directory; using defaults for all options"
-msgstr ""
-"Sem o diretório config/; utilizando valores padrões para todas as opções"
-
-#: ../helpers/lh_build:40
-msgid "Cannot build live image from the root directory (/)"
-msgstr ""
-"Não é possível construir uma imagem live a partir do diretório raiz (/)"
-
-#: ../helpers/lh_build:46
-msgid "Cannot build live image from a directory containing spaces"
-msgstr ""
-"Não é possível construir uma imagem live de um diretório contando espaços"
-
-#: ../helpers/lh_chroot:16
-msgid "customize the Debian system"
-msgstr "customiza o sistema Debian"
-
-#: ../helpers/lh_chroot_apt:16
-msgid "manage /etc/apt/apt.conf"
-msgstr "configura o arquivo /etc/apt/apt.conf"
-
-#: ../helpers/lh_chroot_apt:31
-msgid "Configuring file /etc/apt/apt.conf"
-msgstr "Configurando o arquivo /etc/apt/apt.conf"
-
-#: ../helpers/lh_chroot_apt:156
-msgid "Deconfiguring file /etc/apt/apt.conf"
-msgstr "Desconfigurando o arquivo /etc/apt/apt.conf"
-
-#: ../helpers/lh_chroot_cache:16
-msgid "cache chroot stage"
-msgstr "inicia cache do chroot..."
-
-#: ../helpers/lh_chroot_cache:26
-msgid "Begin caching chroot stage..."
-msgstr "Iniciando o cache do chroot..."
-
-#: ../helpers/lh_chroot_debianchroot:16
-msgid "manage /etc/debian_chroot"
-msgstr "configura o arquivo /etc/debian_chroot"
-
-#: ../helpers/lh_chroot_debianchroot:31
-msgid "Configuring file /etc/debian_chroot"
-msgstr "Configurando o arquivo /etc/debian_chroot"
-
-#: ../helpers/lh_chroot_debianchroot:56
-msgid "Deconfiguring file /etc/debian_chroot"
-msgstr "Desconfigurando o arquivo /etc/debian_chroot"
-
-#: ../helpers/lh_chroot_devpts:16
-msgid "mount /dev/pts"
-msgstr "monta /dev/pts..."
-
-#: ../helpers/lh_chroot_devpts:34
-msgid "Begin mounting /dev/pts..."
-msgstr "Montando /dev/pts..."
-
-#: ../helpers/lh_chroot_devpts:59
-msgid "Begin unmounting /dev/pts..."
-msgstr "Desmontando /dev/pts..."
-
-#: ../helpers/lh_chroot_dpkg:16
-msgid "manage /sbin/dpkg"
-msgstr "gerencia /sbin/dpkg"
-
-#: ../helpers/lh_chroot_dpkg:31
-msgid "Configuring file /sbin/start-stop-daemon"
-msgstr "Configurando o arquivo /sbin/start-stop-daemon"
-
-#: ../helpers/lh_chroot_dpkg:60
-msgid "Deconfiguring file /sbin/start-stop-daemon"
-msgstr "Desconfigurando o arquivo /sbin/start-stop-daemon"
-
-#: ../helpers/lh_chroot_hacks:16
-msgid "execute hacks in chroot"
-msgstr "executa hacks no chroot"
-
-#: ../helpers/lh_chroot_hacks:26
-msgid "Begin executing hacks..."
-msgstr "Iniciando a execução dos hacks..."
-
-#: ../helpers/lh_chroot_hooks:16
-msgid "execute hooks in chroot"
-msgstr "executa hooks in chroot"
-
-#: ../helpers/lh_chroot_hooks:26
-msgid "Begin executing hooks..."
-msgstr "Iniciando a execução dos hooks..."
-
-#: ../helpers/lh_chroot_hostname:16
-msgid "manage /bin/hostname"
-msgstr "gerencia /bin/hostname"
-
-#: ../helpers/lh_chroot_hostname:31
-msgid "Configuring file /etc/hostname"
-msgstr "Configurando o arquivo /etc/hostname"
-
-#: ../helpers/lh_chroot_hostname:48
-msgid "Configuring file /bin/hostname"
-msgstr "Configurando o arquivo /bin/hostname"
-
-#: ../helpers/lh_chroot_hostname:65
-msgid "Deconfiguring file /etc/hostname"
-msgstr "Desconfigurando o arquivo /etc/hostname"
-
-#: ../helpers/lh_chroot_hostname:73
-msgid "Deconfiguring file /bin/hostname"
-msgstr "Desconfigurando o arquivo /bin/hostname"
-
-#: ../helpers/lh_chroot_hosts:16
-msgid "manage /etc/hosts"
-msgstr "gerencia /etc/hosts"
-
-#: ../helpers/lh_chroot_hosts:31
-msgid "Configuring file /etc/hosts"
-msgstr "Configurando o arquivo /etc/hosts"
-
-#: ../helpers/lh_chroot_hosts:67
-msgid "Deconfiguring file /etc/hosts"
-msgstr "Desconfigurando o arquivo /etc/hosts"
-
-#: ../helpers/lh_chroot_install-packages:16
-msgid "install queued packages into chroot"
-msgstr "instala pacotes da fila dentro do chroot"
-
-#: ../helpers/lh_chroot_install-packages:26
-msgid "Begin installing packages..."
-msgstr "Iniciando a instalação de pacotes..."
-
-#: ../helpers/lh_chroot_interactive:16
-msgid "make build interactive"
-msgstr "faz a construção ser interativa"
-
-#: ../helpers/lh_chroot_interactive:31
-msgid "Begin interactive build..."
-msgstr "Iniciando construção interativa..."
-
-#: ../helpers/lh_chroot_interactive:47
-msgid "Pausing build: starting interactive shell..."
-msgstr "Pausando construção: iniciando shell interativo..."
-
-#: ../helpers/lh_chroot_interactive:51
-msgid "Pausing build: starting interactive X11..."
-msgstr "Pausando construção: iniciando modo gráfico (X11) interativo..."
-
-#: ../helpers/lh_chroot_interactive:55
-msgid "Pausing build: starting interactive Xnest..."
-msgstr "Pausando construção: iniciando Xnest interativo..."
-
-#: ../helpers/lh_chroot_linux-image:16
-msgid "manage /etc/kernel-img.conf"
-msgstr "gerencia /etc/kernel-img.conf"
-
-#: ../helpers/lh_chroot_linux-image:31
-msgid "Configuring file /etc/kernel-img.conf"
-msgstr "Configurando o arquivo /etc/kernel-img.conf"
-
-#: ../helpers/lh_chroot_linux-image:80
-msgid "Deconfiguring file /etc/kernel-img.conf"
-msgstr "Desconfigurando o arquivo /etc/kernel-img.conf"
-
-#: ../helpers/lh_chroot_local-hooks:16
-msgid "execute local hooks in chroot"
-msgstr "executa hooks locais no chroot"
-
-#: ../helpers/lh_chroot_local-includes:16
-msgid "copy local files into chroot"
-msgstr "copia arquivos locais no chroot"
-
-#: ../helpers/lh_chroot_local-includes:26
-msgid "Begin copying chroot local includes..."
-msgstr "Iniciando cópia dos arquivos (includes) locais do chroot..."
-
-#: ../helpers/lh_chroot_local-packages:16
-msgid "queue install of local packages into chroot"
-msgstr "insere pacotes locais na fila para início de instalação"
-
-#: ../helpers/lh_chroot_local-packages:26
-msgid "Begin queueing installation of local packages..."
-msgstr "Inserindo pacotes locais na fila para início de instalação..."
-
-#: ../helpers/lh_chroot_local-patches:16
-msgid "apply local patches against chroot"
-msgstr "aplica patches locais no chroot"
-
-#: ../helpers/lh_chroot_local-patches:26
-msgid "Begin applying chroot local patches..."
-msgstr "Iniciando aplicação de patches locais do chroot..."
-
-#: ../helpers/lh_chroot_local-patches:53
-msgid "Applying patch %s..."
-msgstr "Aplicando patch %s..."
-
-#: ../helpers/lh_chroot_local-preseed:16
-msgid "execute local preseed in chroot"
-msgstr "executa preseed local no chroot"
-
-#: ../helpers/lh_chroot_local-preseed:26
-msgid "Begin executing local preseeds..."
-msgstr "Iniciando execução das preseeds locais..."
-
-#: ../helpers/lh_chroot_localization:16
-msgid "install localization packages into chroot"
-msgstr "instala pacotes de localização no chroot"
-
-#: ../helpers/lh_chroot_localization:26
-msgid "Begin installing localization packages..."
-msgstr "Iniciando a instalação dos pacotes de localização..."
-
-#: ../helpers/lh_chroot_packages:16
-msgid "queue install of packages into chroot"
-msgstr "põe na fila os pacotes a serem instalados no chroot"
-
-#: ../helpers/lh_chroot_packages:26
-msgid "Begin queueing installation of packages..."
-msgstr "Colocando na fila os pacotes para instalação..."
-
-#: ../helpers/lh_chroot_packageslists:16
-msgid "queue install of packages lists into chroot"
-msgstr "pôe na fila as listas de pacotes a serem instalados no chroot"
-
-#: ../helpers/lh_chroot_packageslists:26
-msgid "Begin queueing installation of packages lists..."
-msgstr "Colocando na fila as listas de pacotes para instalação..."
-
-#: ../helpers/lh_chroot_preseed:16
-msgid "execute preseed in chroot"
-msgstr "executa preseed no chroot"
-
-#: ../helpers/lh_chroot_preseed:26
-msgid "Begin executing preseed..."
-msgstr "Iniciando execução da preseed..."
-
-#: ../helpers/lh_chroot_proc:16
-msgid "mount /proc"
-msgstr "monta /proc"
-
-#: ../helpers/lh_chroot_proc:34
-msgid "Begin mounting /proc..."
-msgstr "Iniciando montagem de /proc..."
-
-#: ../helpers/lh_chroot_proc:62
-msgid "Begin unmounting /proc..."
-msgstr "Desmontando /proc..."
-
-#: ../helpers/lh_chroot_resolv:16
-msgid "manage /etc/resolv.conf"
-msgstr "gerencia /etc/resolv.conf"
-
-#: ../helpers/lh_chroot_resolv:31
-msgid "Configuring file /etc/resolv.conf"
-msgstr "Configurando arquivo /etc/resolv.conf"
-
-#: ../helpers/lh_chroot_resolv:66
-msgid "Deconfiguring file /etc/resolv.conf"
-msgstr "Desconfigurando o arquivo /etc/resolv.conf"
-
-#: ../helpers/lh_chroot_selinuxfs:16
-msgid "mount /selinux"
-msgstr "monta /selinux"
-
-#: ../helpers/lh_chroot_selinuxfs:36
-msgid "Begin mounting /selinux..."
-msgstr "Montando /selinux..."
-
-#: ../helpers/lh_chroot_selinuxfs:65
-msgid "Begin unmounting /selinux..."
-msgstr "Desmontando /selinux..."
-
-#: ../helpers/lh_chroot_sources:16
-msgid "manage /etc/apt/sources.list"
-msgstr "gerencia /etc/apt/sources.list"
-
-#: ../helpers/lh_chroot_sources:33
-msgid "Configuring file /etc/apt/sources.list"
-msgstr "Configurando o arquivo /etc/apt/sources.list"
-
-#: ../helpers/lh_chroot_sources:168
-msgid "GPG exited with error status %s"
-msgstr "GPG saiu com estado de erro %s"
-
-#: ../helpers/lh_chroot_sources:212
-#, sh-format
-msgid ""
-"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
-msgstr ""
-"Pacotes locais devem ser nomeados com o sufixo '_all.deb' ou _$arquitetura."
-"deb'."
-
-#: ../helpers/lh_chroot_sources:329
-msgid "Deconfiguring file /etc/apt/sources.list"
-msgstr "Desconfigurando o arquivo /etc/apt/sources.list"
-
-#: ../helpers/lh_chroot_symlinks:16
-msgid "convert symlinks"
-msgstr "converte ligações simbólicas"
-
-#: ../helpers/lh_chroot_symlinks:31
-msgid "Begin converting symlinks..."
-msgstr "Iniciando conversão das ligações simbólicas..."
-
-#: ../helpers/lh_chroot_sysfs:16
-msgid "mount /sys"
-msgstr "monta /sys"
-
-#: ../helpers/lh_chroot_sysfs:34
-msgid "Begin mounting /sys..."
-msgstr "Montando /sys..."
-
-#: ../helpers/lh_chroot_sysfs:62
-msgid "Begin unmounting /sys..."
-msgstr "Desmontando /sys..."
-
-#: ../helpers/lh_chroot_sysv-rc:16
-msgid "manage /usr/sbin/policy-rc.d"
-msgstr "gerencia /usr/sbin/policy-rc.d"
-
-#: ../helpers/lh_chroot_sysv-rc:31
-msgid "Configuring file /usr/sbin/policy-rc.d"
-msgstr "Configurando o arquivo /usr/sbin/policy-rc.d"
-
-#: ../helpers/lh_chroot_sysv-rc:65
-msgid "Deconfiguring file /usr/sbin/policy-rc.d"
-msgstr "Desconfigurando o arquivo /usr/sbin/policy-rc.d"
-
-#: ../helpers/lh_chroot_sysvinit:16
-msgid "configure sysvinit"
-msgstr "configura sysvinit"
-
-#: ../helpers/lh_chroot_sysvinit:26
-msgid "Configuring package sysvinit"
-msgstr "Configurando o pacote sysvinit"
-
-#: ../helpers/lh_chroot_tasks:16
-msgid "install tasks into chroot"
-msgstr "instala as tasks dentro do chroot"
-
-#: ../helpers/lh_chroot_tasks:26
-msgid "Begin installing tasks..."
-msgstr "Iniciando instalação das tasks..."
-
-#: ../helpers/lh_clean:27
-msgid "clean up system build directories"
-msgstr "limpa os diretórios de construção do sistema"
-
-#: ../helpers/lh_clean:40
-msgid "%s is not a good Debian Live working directory to clean."
-msgstr "%s não é um diretório válido do Debian Live para ser limpo."
-
-#: ../helpers/lh_clean:73
-msgid "Cleaning chroot"
-msgstr "Limpando chroot"
-
-#: ../helpers/lh_config:28
-msgid "create configuration for live-helper(7)"
-msgstr "cria configuração para o live-helper(7)"
-
-#: ../helpers/lh_config:153 ../functions/arguments.sh:16
-msgid "terminating"
-msgstr "finalizando"
-
-#: ../helpers/lh_config:169
-msgid "%s: This is live-helper version %s"
-msgstr "%s: Esta é o live-helper versão %s"
-
-#: ../helpers/lh_config:721 ../functions/arguments.sh:76
-msgid "internal error %s"
-msgstr "erro interno %s"
-
-#: ../helpers/lh_config:731
-msgid "Considering defaults defined in %s"
-msgstr "Considerando valores padrão definidos em %s"
-
-#: ../helpers/lh_config:1211
-msgid "Please install 'debconf-utils' in order to use this feature."
-msgstr "Por favor instale 'debconf-utils' para poder usar essa funcionalidade."
-
-#: ../helpers/lh_source:16
-msgid "build source images"
-msgstr "constrói imagens fonte"
-
-#: ../helpers/lh_source_debian:16
-msgid "debian sources"
-msgstr "fontes debian"
-
-#: ../helpers/lh_source_debian:31
-msgid "Begin downloading sources..."
-msgstr "Início do download das fontes..."
-
-#: ../helpers/lh_source_debian-live:16
-msgid "copy debian-live config into source"
-msgstr "copia configuração do debian-live dentro da fonte"
-
-#: ../helpers/lh_source_debian-live:31
-msgid "Begin copying live-helper configuration..."
-msgstr "Iniciando cópia da configuração do live-helper..."
-
-#: ../helpers/lh_source_disk:16
-msgid "install disk information into source"
-msgstr "instala informação do disco dentro da fonte"
-
-#: ../helpers/lh_source_iso:16
-msgid "build iso source image"
-msgstr "Iniciando a construção da imagem fonte iso..."
-
-#: ../helpers/lh_source_iso:36
-msgid "Begin building source iso image..."
-msgstr "Iniciando a construção da imagem fonte iso..."
-
-#: ../helpers/lh_source_md5sum:16
-msgid "create source md5sums"
-msgstr "cria md5sum.txt da fonte"
-
-#: ../helpers/lh_source_md5sum:36
-msgid "Begin creating source md5sum.txt..."
-msgstr "Iniciando crianção do md5sum.txt..."
-
-#: ../helpers/lh_source_net:16
-msgid "build source net image"
-msgstr "constrói imagem fonte netboot"
-
-#: ../helpers/lh_source_net:36
-msgid "Begin building source netboot image..."
-msgstr "Iniciando construção da imagem fonte netboot..."
-
-#: ../helpers/lh_source_tar:16
-msgid "build source tarball"
-msgstr "constrói o tarball fonte"
-
-#: ../helpers/lh_source_tar:36
-msgid "Begin building source tarball..."
-msgstr "Iniciando a construção do tarball fonte..."
-
-#: ../helpers/lh_source_usb-hdd:16
-msgid "build source image"
-msgstr "constrói imagem fonte"
-
-#: ../helpers/lh_source_usb-hdd:36
-msgid "Begin building source usb-hdd image..."
-msgstr "Iniciando construção da imagem fonte usb-hdd..."
-
-#: ../helpers/lh_source_usb-hdd:91
-msgid "!!! The following error/warning messages can be ignored !!!"
-msgstr "!!! As seguintes mensagens de erro/aviso não podem ser ignoradas !!!"
-
-#: ../helpers/lh_source_usb-hdd:125
-msgid "!!! The above error/warning messages can be ignored !!!"
-msgstr "!!! As mensagens acima de erro/aviso não podem ser ignoradas !!!"
-
-#: ../helpers/lh_testroot:16
-msgid "ensure that a system is built as root"
-msgstr "certifique-se de que o sistema é construído como super-usuário"
-
-#: ../helpers/lh_testroot:29
-msgid "need root privileges"
-msgstr "necessita de priviĺégios de super-usuário"
-
-#: ../helpers/live-helper:32
-msgid "live-helper is a set of scripts to build Debian Live system images."
-msgstr "live-heper é uma série de scripts para criar imagens de sistemas "
-"Debian Live"
-
-#: ../helpers/live-helper:34
-msgid ""
-"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 ""
-"A idéia por trás do live-helper é ter um framework que utiliza um diretório de "
-"configuração para automatizar completamente e customizar todos os aspectos "
-"da construção de uma imagem Live."
-
-#: ../helpers/live-helper:36
-msgid ""
-"An introduction to live-helper can be found in the live-helper(7) manpage."
-msgstr ""
-"Uma introdução ao live-helper pode ser encontrado na página de manual do "
-"live-helper(7)"
-
-#: ../functions/architecture.sh:26
-msgid "skipping %s, foreign architecture."
-msgstr "pulando %s, arquitetura estranha."
-
-#: ../functions/breakpoints.sh:16
-msgid "Waiting at %s"
-msgstr "Esperando em %s"
-
-#: ../functions/chroot.sh:16
-msgid "Executing: %s"
-msgstr "Executando: %s"
-
-#: ../functions/conffile.sh:36
-msgid "Reading configuration file %s"
-msgstr "Lendo arquivo de configuração %s"
-
-#: ../functions/conffile.sh:39
-msgid "Failed to read configuration file %s"
-msgstr "Falha ao ler o arquivo de configuração %s"
-
-#: ../functions/defaults.sh:97
-msgid ""
-"Cannot find /usr/sbin/debootstrap or /usr/bin/cdebootstrap. Please install "
-"debootstrap or cdebootstrap, or specify an alternative bootstrapping utility."
-msgstr ""
-"Não posso encontrar /usr/sbin/debootstrap ou /usr/bin/cdebootstrap. Por favor "
-"instale o debootstrap ou cdebootstrap, ou especifique uma alternativa para "
-"um utilitário de bootstrapping."
-
-#: ../functions/defaults.sh:159
-msgid "Can't process file /sbin/fdisk"
-msgstr "Não posso processar o arquivo /sbin/fdisk"
-
-#: ../functions/defaults.sh:175
-msgid "Can't process file /sbin/losetup"
-msgstr "Não posso processar o arquivo /sbin/losetup"
-
-#: ../functions/defaults.sh:246
-msgid "Can't determine architecture, assuming i386"
-msgstr "Não conheço a arquitetura, assumindo i386"
-
-#: ../functions/defaults.sh:453
-msgid "Architecture not yet supported (FIXME)"
-msgstr "Arquitetura ainda não suportada (FIXME)"
-
-#: ../functions/defaults.sh:602
-msgid ""
-"You have placed some preseeding files into config/binary_debian-installer "
-"but you didn't specify the default preseeding file through "
-"LB_DEBIAN_INSTALLER_PRESEEDFILE. This means that debian-installer will not "
-"take up a preseeding file by default."
-msgstr ""
-"Você colocou alguns arquivos de preseeding dentro de config/binary_debian-"
-"installer mas você não especificou o arquivo de preseeding padrão através de"
-"LB_DEBIAN_INSTALLER_PRESEEDFILE. Isso significa que o instalador do "
-"Debian não utilizará um arquivo de preseeding por padrão."
-
-#: ../functions/defaults.sh:769
-msgid ""
-"You selected LB_DISTRIBUTION='etch' and LB_INITRAMFS='live-initramfs' This "
-"is a possible unsafe configuration as live-initramfs is not part of the etch "
-"distribution. Either make sure that live-initramfs is installable (e.g. "
-"through setting up etch-backports repository as third-party source or "
-"putting a valid live-initramfs deb into config/chroot_local-packages) or "
-"switch change your config to etch default (casper)."
-msgstr ""
-
-#: ../functions/defaults.sh:775
-msgid ""
-"You selected LB_DISTRIBUTION='etch' and LB_UNION_FILESYSTEM='aufs' This is a "
-"possible unsafe configuration as aufs is not part of the etch distribution. "
-"Either make sure that aufs modules for your kernel are installable (e.g. "
-"through setting up etch-backports repository as third-party source or "
-"putting a valid aufs-modules deb into config/chroot_local-packages) or "
-"switch change your config to etch default (unionfs)."
-msgstr ""
-
-#: ../functions/defaults.sh:785
-msgid "You selected LB_PACKAGES_LISTS='%s' and LB_APT='aptitude'"
-msgstr "Você selecionou LB_PACKAGES_LISTS='%s' e LB_APT='aptitude'"
-
-#: ../functions/defaults.sh:794
-msgid ""
-"You have selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES an "
-"dLB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
-"cached. This is a possible unsafe configuration as the bootstrap packages "
-"are re-used when integrating the Debian Installer."
-msgstr ""
-
-#: ../functions/defaults.sh:805
-msgid ""
-"You have selected values of LB_BOOTLOADER and LB_BINARY_FILESYSTEM which are "
-"incompatible - syslinux only supports FAT filesystems."
-msgstr ""
-
-#: ../functions/defaults.sh:815
-msgid ""
-"You have selected a combination of bootloader and image type that is "
-"currently not supported by live-helper. Please use either another bootloader "
-"or a different image type."
-msgstr ""
-
-#: ../functions/echo.sh:242
-msgid ""
-"If the following stage fails, the most likely cause of the problem is with "
-"your mirror configuration, a caching proxy or the sid distribution."
-msgstr ""
-"Se a fase seguinte falhar, a causa mais provável do problema é a sua "
-"configuração de mirror, um proxy com cache ou a distribuição sid."
-
-#: ../functions/echo.sh:245
-msgid ""
-"If the following stage fails, the most likely cause of the problem is with "
-"your mirror configuration or a caching proxy."
-msgstr ""
-"Se a fase seguinte falhar, a causa mais provável do problema é a sua "
-"configuração de mirror ou um proxy com cache."
-
-#: ../functions/exit.sh:20
-msgid "Begin unmounting filesystems..."
-msgstr "Desmontando sistemas de arquivos..."
-
-#: ../functions/exit.sh:29
-msgid "Setting up cleanup function"
-msgstr "Setando função para limpeza"
-
-#: ../functions/help.sh:12
-msgid "%s - %s"
-msgstr "%s - %s"
-
-#: ../functions/help.sh:14 ../functions/usage.sh:14
-msgid "Usage:"
-msgstr "Utilização:"
-
-#: ../functions/help.sh:22
-msgid "  %s [-h|--help]"
-msgstr "  %s [-h|--help]"
-
-#: ../functions/help.sh:23
-msgid "  %s [-u|--usage]"
-msgstr "  %s [-u|--usage]"
-
-#: ../functions/help.sh:24
-msgid "  %s [-v|--version]"
-msgstr "  %s [-v|--version]"
-
-#: ../functions/help.sh:33
-msgid ""
-"Report bugs to Debian Live project <http://debian-live.alioth.debian.org/>."
-msgstr ""
-"Reporte bugs para o projeto Debian Live <http://debian-live.alioth.debian.org/>."
-
-#: ../functions/losetup.sh:24
-msgid "Mounting %s with offset 0"
-msgstr "Montando %s com offset 0"
-
-#: ../functions/losetup.sh:31
-msgid "Mounting %s with offset %s"
-msgstr "Montando %s com offset %s"
-
-#: ../functions/packages.sh:23
-msgid "You need to install %s on your host system."
-msgstr "Você precisa instalar %s no seu sistema."
-
-#: ../functions/stagefile.sh:21
-msgid "skipping %s"
-msgstr "skipping %s"
-
-#: ../functions/stagefile.sh:25
-msgid "forcing %s"
-msgstr "forçando %s"
-
-#: ../functions/stagefile.sh:63
-msgid "%s: %s missing"
-msgstr "%s: %s está faltando"
-
-#: ../functions/stagefile.sh:65
-msgid "%s: one of %s is missing"
-msgstr "%s: um de %s está faltando"
-
-#: ../functions/templates.sh:21
-msgid "templates not accessible in %s nor config/templates"
-msgstr "templates não acessíveis em %s ou não encontrados em config/templates"
-
-#: ../functions/templates.sh:30
-msgid "%s templates not accessible in %s"
-msgstr "%s templates não acessíveis em %s"
-
-#: ../functions/usage.sh:27
-msgid "Try \" %s--help\" for more information."
-msgstr "Tente \" %s--help\" para mais informação."
-
-#: ../functions/version.sh:12
-msgid "%s, version %s"
-msgstr "%s, versão %s"
-
-#: ../functions/version.sh:13
-msgid "This program is a part of %s"
-msgstr "Este programa é uma parte de %s"
-
-#: ../functions/version.sh:15
-msgid "Copyright (C) 2006-2009 Daniel Baumann <daniel at debian.org>"
-msgstr "Copyright (C) 2006-2009 Daniel Baumann <daniel at debian.org>"
-
-#: ../functions/version.sh:17
-msgid "This program is free software: you can redistribute it and/or modify"
-msgstr "Este programa é software livre: você distribuir ele e/ou modificá-lo"
-
-#: ../functions/version.sh:18
-msgid "it under the terms of the GNU General Public License as published by"
-msgstr "sob os termos da GNU General Public License como publicada pela"
-
-#: ../functions/version.sh:19
-msgid "the Free Software Foundation, either version 3 of the License, or"
-msgstr "Free Software Foundation, versão 3 da Licença ou"
-
-#: ../functions/version.sh:20
-msgid "(at your option) any later version."
-msgstr "(por sua opção) qualquer outra versão posterior."
-
-#: ../functions/version.sh:22
-msgid "This program is distributed in the hope that it will be useful,"
-msgstr "Este programa é distribuido na expectativa de ser útil,"
-
-#: ../functions/version.sh:23
-msgid "but WITHOUT ANY WARRANTY; without even the implied warranty of"
-msgstr "mas SEM QUALQUER GARANTIA; sem mesma a garantia implícita de"
-
-#: ../functions/version.sh:24
-msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
-msgstr "COMERCIALIZAÇÃO ou ADEQUAÇÃO A QUALQUER PROPÓSITO EM PARTICULAR."
-"Consulte a"
-
-#: ../functions/version.sh:25
-msgid "GNU General Public License for more details."
-msgstr "Licença Pública Geral GNU para obter mais detalhes."
-
-#: ../functions/version.sh:27
-msgid "You should have received a copy of the GNU General Public License"
-msgstr "Você deve ter recebido uma cópia da Licença Pública Geral GNU"
-
-#: ../functions/version.sh:28
-msgid "along with this program. If not, see <http://www.gnu.org/licenses/>."
-msgstr "junto com este programa. caso contrário, consulte "
-"<http://www.gnu.org/licenses/>."
-
-#: ../functions/version.sh:30
-msgid "On Debian systems, the complete text of the GNU General Public License"
-msgstr "Em sistemas Debian, o texto completo da Licença Pública Geral GNU"
-
-#: ../functions/version.sh:31
-msgid "can be found in /usr/share/common-licenses/GPL-3 file."
-msgstr "pode ser encontrado no arquivo /usr/share/common-licenses/GPL-3."
-
-#: ../functions/version.sh:33
-msgid "Homepage: <http://debian-live.alioth.debian.org/>"
-msgstr "Homepage: <http://debian-live.alioth.debian.org/>"
diff --git a/scripts/build/lb_binary_checksums b/scripts/build/lb_binary_checksums
index c23fe45..b5ba6b9 100755
--- a/scripts/build/lb_binary_checksums
+++ b/scripts/build/lb_binary_checksums
@@ -43,12 +43,14 @@ Create_lockfile .lock
 
 for CHECKSUM in ${LB_CHECKSUMS}
 do
-	Echo_message "Begin creating binary ${CHECKSUM}sum.txt..."
+	CHECKSUMS="$(echo ${CHECKSUM} | tr [a-z] [A-Z])SUMS"
+
+	Echo_message "Begin creating binary ${CHECKSUMS}..."
 
 	# Remove old checksums
-	if [ -f binary/${CHECKSUM}sum.txt ]
+	if [ -f binary/${CHECKSUMS} ]
 	then
-		rm -f binary/${CHECKSUM}sum.txt
+		rm -f binary/${CHECKSUMS}
 	fi
 
 	# Calculating checksums
@@ -57,22 +59,20 @@ do
 		\! -path './isolinux/isolinux.bin' \
 		\! -path './boot/boot.bin' \
 		\! -path './boot/grub/stage2_eltorito' \
-		\! -path './md5sum.txt' \
-		\! -path './sha1sum.txt' \
-		\! -path './sha256sum.txt' \
-	-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUM}sum.txt
+		\! -path './*SUMS' \
+	-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUMS}
 
-cat > ${CHECKSUM}sum.txt << EOF
+cat > ${CHECKSUMS} << EOF
 This file contains the list of ${CHECKSUM} checksums of all files on this medium.
 
 You can verify them automatically with the 'integrity-check' boot parameter,
-or, manually with: '${CHECKSUM}sum -c ${CHECKSUM}sum.txt'.
+or, manually with: '${CHECKSUM}sum -c ${CHECKSUMS}'.
 
 
 EOF
 
-	cat ../${CHECKSUM}sum.txt >> ${CHECKSUM}sum.txt
-	rm -f ../${CHECKSUM}sum.txt
+	cat ../${CHECKSUMS} >> ${CHECKSUMS}
+	rm -f ../${CHECKSUMS}
 
 	cd "${OLDPWD}"
 done
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer
index 6d6d20b..28072ab 100755
--- a/scripts/build/lb_binary_debian-installer
+++ b/scripts/build/lb_binary_debian-installer
@@ -344,7 +344,7 @@ then
 
 	case "${LB_ARCHITECTURES}" in
 		amd64)
-			DI_REQ_PACKAGES="lilo grub grub-efi grub-pc"
+			DI_REQ_PACKAGES="lilo grub grub-pc"
 
 			case "${LB_MODE}" in
 				ubuntu|kubuntu)
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap
index 080335d..f169926 100755
--- a/scripts/build/lb_bootstrap_debootstrap
+++ b/scripts/build/lb_bootstrap_debootstrap
@@ -154,7 +154,7 @@ then
 
 		Echo_message "Running debootstrap second stage under QEMU"
 		cp ${LB_BOOTSTRAP_QEMU_STATIC} chroot/usr/bin
-		Chroot chroot /debootstrap/debootstrap --second-stage
+		Chroot chroot /bin/sh /debootstrap/debootstrap --second-stage
 	else
 		${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
 	fi
diff --git a/scripts/build/lb_source_checksums b/scripts/build/lb_source_checksums
index 4c8ac08..f21d7ae 100755
--- a/scripts/build/lb_source_checksums
+++ b/scripts/build/lb_source_checksums
@@ -50,33 +50,33 @@ do
 
 	for CHECKSUM in ${LB_CHECKSUMS}
 	do
-		Echo_message "Begin creating source ${CHECKSUM}sum.txt..."
+		CHECKSUMS="$(echo ${CHECKSUM} | tr [a-z] [A-Z])SUMS"
+
+		Echo_message "Begin creating source ${CHECKSUMS}..."
 
 		# Remove old checksums
-		if [ -f ${DIRECTORY}/${CHECKSUM}sum.txt ]
+		if [ -f ${DIRECTORY}/${CHECKSUMS} ]
 		then
-			rm -f ${DIRECTORY}/${CHECKSUM}sum.txt
+			rm -f ${DIRECTORY}/${CHECKSUMS}
 		fi
 
 		# Calculating checksums
 		cd ${DIRECTORY}
 		find . -type f \
-			\! -path './md5sum.txt' \
-			\! -path './sha1sum.txt' \
-			\! -path './sha256sum.txt' \
-		-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUM}sum.txt
+			\! -path './*SUMS' \
+		-print0 | sort -z | xargs -0 ${CHECKSUM}sum > ../${CHECKSUMS}
 
-cat > ${CHECKSUM}sum.txt << EOF
+cat > ${CHECKSUMS} << EOF
 This file contains the list of ${CHECKSUM} checksums of all files on this medium.
 
 You can verify them automatically with the 'integrity-check' boot parameter,
-or, manually with: '${CHECKSUM}sum -c ${CHECKSUM}sum.txt'.
+or, manually with: '${CHECKSUM}sum -c ${CHECKSUMS}'.
 
 
 EOF
 
-		cat ../${CHECKSUM}sum.txt >> ${CHECKSUM}sum.txt
-		rm -f ../${CHECKSUM}sum.txt
+		cat ../${CHECKSUMS} >> ${CHECKSUMS}
+		rm -f ../${CHECKSUMS}
 
 		cd "${OLDPWD}"
 	done
diff --git a/templates/cgi/debian-unofficial/build.html b/templates/cgi/debian-unofficial/build.html
deleted file mode 100644
index 64f06cb..0000000
--- a/templates/cgi/debian-unofficial/build.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<br />
-
-<h3>Your build 'BUILD' was recorded and will be processed soon. Depending on the options you have selected, a build attempt generally takes between 5 and 20 minutes to complete. Currently there are 'QUEUENUM' pending build(s) to be processed ahead of your request. You will be notified by email when the attempt has completed.</h3>
-
-<h3>Your build will be available at: <a href="SERVER/BUILD/">SERVER/BUILD/</a>.</h3>
-
-<fieldset>
-
-<legend><b>Options</b></legend>
-
-<b>Standard options</b>
-
-<table>
-	<tr><td>Email: </td><td>EMAIL</td></tr>
-	<tr><td>--binary-image: </td><td>LB_BINARY_IMAGES</td></tr>
-	<tr><td>--distribution: </td><td>LB_DISTRIBUTION</td></tr>
-	<tr><td>--package-lists: </td><td>LB_PACKAGE_LISTS</td></tr>
-	<tr><td>--tasks: </td><td>LB_TASKS</td><tr>
-	<tr><td>cgipackages.list.chroot: </td><td>_LB_CGIPACKAGES</td><tr>
-</table>
-
-<b>Advanced bootstrap options</b>
-
-<table>
-	<tr><td>--architectures: </td><td>LB_ARCHITECTURES</td></tr>
-	<tr><td>--bootstrap-flavour: </td><td>LB_BOOTSTRAP_FLAVOUR</td></tr>
-	<tr><td>--archive-areas: </td><td>LB_ARCHIVE_AREAS</td></tr>
-</table>
-
-<b>Advanced chroot options</b>
-
-<table>
-	<tr><td>--chroot-fileystem: </td><td>LB_CHROOT_FILESYSTEM</td></tr>
-	<tr><td>--linux-flavours: </td><td>LB_LINUX_FLAVOURS</td></tr>
-	<tr><td>--security: </td><td>LB_SECURITY</td></tr>
-</table>
-
-<b>Advanced binary options</b>
-
-<table>
-	<tr><td>--apt-indices: </td><td>LB_BINARY_INDICES</td></tr>
-	<tr><td>--bootappend-live: </td><td>LB_BOOTAPPEND_LIVE</td></tr>
-	<tr><td>--bootloader: </td><td>LB_BOOTLOADER</td></tr>
-	<tr><td>--debian-installer: </td><td>LB_DEBIAN_INSTALLER</td></tr>
-	<tr><td>--bootappend-install: </td><td>LB_BOOTAPPEND_INSTALL</td></tr>
-	<tr><td>--iso-application: </td><td>LB_ISO_APPLICATION</td></tr>
-	<tr><td>--iso-preparer: </td><td>LB_ISO_PREPARER</td></tr>
-	<tr><td>--iso-publisher: </td><td>LB_ISO_PUBLISHER</td></tr>
-	<tr><td>--iso-volume: </td><td>LB_ISO_VOLUME</td></tr>
-	<tr><td>--memtest: </td><td>LB_MEMTEST</td></tr>
-	<tr><td>--net-path: </td><td>LB_NET_ROOT_PATH</td></tr>
-	<tr><td>--net-server: </td><td>LB_NET_ROOT_SERVER</td></tr>
-</table>
-
-<b>Advanced source options</b>
-
-<table>
-	<tr><td>--source: </td><td>LB_SOURCE</td></tr>
-	<tr><td>--source-images: </td><td>LB_SOURCE_IMAGES</td></tr>
-</table>
-
-<b>Unofficial options</b>
-
-<table>
-	<tr><td>custom.bootstrap: </td><td>CUSTOM_BOOTSTRAP</td></tr>
-	<tr><td>custom.binary: </td><td>CUSTOM_BINARY</td></tr>
-</table>
-
-</fieldset>
-
-<br />
-
-<h2>Thank you for your submission.</h2>
diff --git a/templates/cgi/debian-unofficial/footer.html b/templates/cgi/debian-unofficial/footer.html
deleted file mode 100644
index 6c2ce27..0000000
--- a/templates/cgi/debian-unofficial/footer.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<div id="footer">
-	<br />
-	<h2 id="subtitle">Debian Live Project <a href="mailto:debian-live at lists.debian.org"><debian-live at lists.debian.org></a> — <a href="http://live.debian.net/devel/live-build">live-build</a>, version VERSION — <a href="http://live.debian.net/legal.html">Legal information</a></h2>
-	<br />
-</div>
-
-</body>
-</html>
diff --git a/templates/cgi/debian-unofficial/form.html b/templates/cgi/debian-unofficial/form.html
deleted file mode 100644
index 3483c65..0000000
--- a/templates/cgi/debian-unofficial/form.html
+++ /dev/null
@@ -1,316 +0,0 @@
-<h3>Submit your parameters (<b>working</b> email address is required) to generate your very own Debian Live system.</h3>
-
-<form action="live-build" method="get">
-
-<fieldset>
-
-<legend><b>Options</b></legend>
-
-<table>
-	<tr>
-		<td><label for="Email">Email Address:</label> </td>
-		<td><input id="Email" name="email" maxlength="50" size="50" type="text" /></td>
-	</tr>
-</table>
-
-<span id="click_1" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(1,"<b>Standard options</b>")'>
-	<b>Standard options</b><small> (click to collapse)</small>
-	<br />
-</span>
-
-<div id="text_1" style='margin-left:0;display:block'>
-	<table>
-		<tr>
-			<td><label for="Binary_Images">--binary-images:</label> </td>
-			<td>
-				<select id="Binary_Images" name="binary_images" size="1">
-					<option value="iso">iso</option>
-					<option selected value="iso-hybrid">iso-hybrid</option>
-					<option value="net">net</option>
-					<option value="tar">tar</option>
-					<option value="hdd">hdd</option>
-					<option value="virtual-hdd">virtual-hdd</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Distribution">--distribution:</label> </td>
-			<td>
-				<select id="Distribution" name="distribution" size="1">
-					<option selected value="squeeze">squeeze</option>
-					<option value="wheezy">wheezy</option>
-					<option value="sid">sid</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Package_Lists">--package-lists:</label> </td>
-			<td>
-				<select id="Package_Lists" name="package_lists" size="1" >
-					<option value="debian-forensics">debian-forensics</option>
-					<option value="debian-junior">debian-junior</option>
-					<option value="debian-live-devel">debian-live-devel</option>
-					<option value="debian-live-pxe-server">debian-live-pxe-server</option>
-					<option value="debian-science">debian-science</option>
-					<option value="gnome">gnome</option>
-					<option value="gnome-core">gnome-core</option>
-					<option value="gnome-full">gnome-full</option>
-					<option value="gnome-junior">gnome-junior</option>
-					<option value="gnustep">gnustep</option>
-					<option value="kde">kde</option>
-					<option value="kde-core">kde-core</option>
-					<option value="kde-extra">kde-extra</option>
-					<option value="kde-full">kde-full</option>
-					<option value="kde-junior">kde-junior</option>
-					<option value="lxde">lxde</option>
-					<option value="minimal">minimal</option>
-					<option value="rescue">rescue</option>
-					<option selected value="standard">standard</option>
-					<option value="standard-x11">standard-x11</option>
-					<option value="ubuntu-cloud">ubuntu-cloud</option>
-					<option value="ubuntu-cloud-desktop">ubuntu-cloud-desktop</option>
-					<option value="xfce">xfce</option>
-					<option value="xfce-junior">xfce-junior</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Tasks">--tasks:</label> </td>
-			<td><input id="Tasks" name="tasks" maxlength="256" size="50" type="text" /></td>
-		</tr>
-		<tr>
-			<td><label for="Packages">cgipackages.list.chroot:</label> </td>
-			<td><input id="Packages" name="cgipackages" maxlength="256" size="50" type="text" /></td>
-		</tr>
-	</table>
-</div>
-
-<span id="click_2" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(2,"<b>Advanced bootstrap options</b>")'>
-	<b>Advanced bootstrap options</b><small> (click to expand)</small>
-	<br />
-</span>
-
-<div id="text_2" style='margin-left:0;display:none'>
-	<table>
-		<tr>
-			<td><label for="Architectures">--architectures:</label> </td>
-			<td>
-				<select id="Architectures" name="architectures" size="1">
-					<option value="amd64">amd64</option>
-					<option selected value="i386">i386</option>
-				</select>
-			</td>
-		</tr>
-		<!-- LIVE_DISTRIBUTION -->
-		<!-- LIVE_DISTRIBUTION_CONFIG -->
-		<tr>
-			<td><label for="Bootstrap_Flavour">--bootstrap-flavour:</label> </td>
-			<td>
-				<select id="Bootstrap_Flavour" name="bootstrap_flavour" size="1">
-					<option value="minimal">minimal</option>
-					<option selected value="standard">standard</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Archive_Areas">--archive-areas:</label> </td>
-			<td><input id="Archive_Areas" name="archive_areas" maxlength="128" size="50" type="text" value="main" readonly /></td>
-		</tr>
-	</table>
-</div>
-
-<span id="click_3" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(3,"<b>Advanced chroot options</b>")'>
-	<b>Advanced chroot options</b><small> (click to expand)</small>
-	<br />
-</span>
-
-<div id="text_3" style='margin-left:0;display:none'>
-	<table>
-		<tr>
-			<td><label for="Chroot_Filesystem">--chroot-filesystem:</label> </td>
-			<td>
-				<select id="Chroot_Filesystem" name="chroot_filesystem" size="1">
-					<option value="ext2">ext2</option>
-					<option value="plain">plain</option>
-					<option selected value="squashfs">squashfs</option>
-				</select>
-			</td>
-		</tr>
-		<!-- LIVE_HOOKS -->
-		<!-- LIVE_INTERACTIVE -->
-		<!-- LIVE_KEYRING_PACKAGES -->
-		<!-- LIVE_LANGUAGE -->
-		<tr>
-			<td><label for="Linux_Flavours">--linux-flavours:</label> </td>
-			<td>
-				<select id="Linux_Flavours" name="linux_flavours" size="1">
-					<option selected value="486">486</option>
-					<option value="686">686</option>
-					<option value="686-pae">686-pae</option>
-					<option value="amd64">amd64</option>
-					<option value="k7">k7</option>
-					<option value="vserver-686">vserver-686</option>
-					<option value="vserver-k7">vserver-k7</option>
-					<option value="xen-686">xen-686</option>
-				</select>
-			</td>
-		</tr>
-		<!-- LIVE_LINUX_PACKAGES -->
-		<!-- LIVE_PACKAGES -->
-		<!-- LIVE_PACKAGE_LISTS -->
-		<!-- LIVE_TASKS -->
-		<tr>
-			<td><label for="Security">--security:</label> </td>
-			<td>
-				<select id="Security" name="security" size="1">
-					<option selected value="true">true</option>
-					<option value="false">false</option>
-				</select>
-			</td>
-		</tr>
-	</table>
-</div>
-
-<span id="click_4" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(4,"<b>Advanced binary options</b>")'>
-	<b>Advanced binary options</b><small> (click to expand)</small>
-	<br />
-</span>
-
-<div id="text_4" style='margin-left:0;display:none'>
-	<table>
-		<!-- LIVE_BINARY_IMAGES -->
-		<tr>
-			<td><label for="Apt_Indices">--apt-indices:</label> </td>
-			<td>
-				<select id="Apt_Indices" name="binary_indices" size="1">
-					<option selected value="true">true</option>
-					<option value="false">false</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Bootappend_Live">--bootappend-live:</label> </td>
-			<td><input id="Bootappend_Live" name="bootappend_live" maxlength="256" size="50" type="text" value="" /></td>
-		</tr>
-		<tr>
-			<td><label for="Bootloader">--bootloader:</label> </td>
-			<td>
-				<select id="Bootloader" name="bootloader" size="1">
-					<option value="grub">grub</option>
-					<option selected value="syslinux">syslinux</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Debian_Installer">--debian-installer:</label> </td>
-			<td>
-				<select id="Debian_Installer" name="debian_installer" size="1">
-					<option value="true">true</option>
-					<option selected value="false">false</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Bootappend_Install">--bootappend-install:</label> </td>
-			<td><input id="Bootappend_Install" name="bootappend_install" maxlength="256" size="50" type="text" value="" /></td>
-		</tr>
-		<!-- LIVE_GRUB_SPLASH -->
-		<tr>
-			<td><label for="Iso_Application">--iso-application:</label> </td>
-			<td><input id="Iso_Application" name="iso_application" maxlength="128" size="50" type="text" value="Debian Live" /></td>
-		</tr>
-		<tr>
-			<td><label for="Iso_Preparer">--iso-preparer:</label> </td>
-			<td><input id="Iso_Preparer" name="iso_preparer" maxlength="128" size="50" type="text" value="live-build; http://packages.qa.debian.org/live-build" /></td>
-		</tr>
-		<tr>
-			<td><label for="Iso_Publisher">--iso-publisher:</label> </td>
-			<td><input id="Iso_Publisher" name="iso_publisher" maxlength="128" size="50" type="text" value="Debian Live project; http://live.debian.net/; debian-live at lists.debian.org" /></td>
-		</tr>
-		<tr>
-			<td><label for="Iso_Volume">--iso-volume:</label> </td>
-			<td><input id="Iso_Volume" name="iso_volume" maxlength="128" size="50" type="text" value="Debian Live DATE" /></td>
-		</tr>
-		<tr>
-			<td><label for="Memtest">--memtest:</label> </td>
-			<td>
-				<select id="Memtest" name="memtest" size="1">
-					<option value="memtest86">memtest86</option>
-					<option selected value="memtest86+">memtest86+</option>
-					<option value="none">none</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Net_Path">--net-path:</label> </td>
-			<td><input id="Net_Path" name="net_path" maxlength="256" size="50" type="text" value="/srv/debian-live" /></td>
-		</tr>
-		<tr>
-			<td><label for="Net_Server">--net-server:</label> </td>
-			<td><input id="Net_Server" name="net_server" maxlength="15" size="50" type="text" value="192.168.1.1" /></td>
-		</tr>
-		<!-- LIVE_SYSLINUX_SPLASH -->
-	</table>
-</div>
-
-<span id="click_5" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(5,"<b>Advanced source options</b>")'>
-	<b>Advanced source options</b><small> (click to expand)</small>
-	<br />
-</span>
-
-<div id="text_5" style='margin-left:0;display:none'>
-	<table>
-		<tr>
-			<td><label for="Source">--source:</label> </td>
-			<td>
-				<select id="Source" name="source" size="1">
-					<option value="true">true</option>
-					<option selected value="false">false</option>
-				</select>
-			</td>
-		</tr>
-		<tr>
-			<td><label for="Source_Images">--source-images:</label> </td>
-			<td>
-				<select id="Source_Images" name="source_images" size="1">
-					<option value="iso">iso</option>
-					<option value="net">net</option>
-					<option selected value="tar">tar</option>
-					<option value="hdd">hdd</option>
-				</select>
-			</td>
-		</tr>
-	</table>
-</div>
-
-<span id="click_6" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(6,"<b>Unofficial options</b>")'>
-	<b>Unofficial options</b><small> (click to expand)</small>
-	<br />
-</span>
-
-<div id="text_6" style='margin-left:0;display:none'>
-	<li> With custom.bootstrap the repository will be available at build time, so you just have to list the packages you want in packages. See "Standard options" above.</li>
-	<li> With custom.binary the repository will be added to your live-system's /etc/apt/sources.list .</li>
-	<li> Example custom.{bootstrap,binary}: deb http://live.debian.net/debian/ etch main</li>
-	<table>
-		<tr>
-			<td><label for="Custom_Bootstrap">custom.bootstrap:</label> </td>
-			<td><input id="Custom_Bootstrap" name="custom_bootstrap" maxlength="128" size="50" type="text" /></td>
-		</tr>
-		<tr>
-			<td><label for="Custom_Binary">custom.binary:</label> </td>
-			<td><input id="Custom_Binary" name="custom_binary" maxlength="128" size="50" type="text" /></td>
-		</tr>
-	</table>
-</div>
-
-</fieldset>
-
-<br />
-
-<input type="reset" value="Reset" />
- 
-<input type="submit" value="Submit" />
- 
-
-</form>
diff --git a/templates/cgi/debian-unofficial/header.html b/templates/cgi/debian-unofficial/header.html
deleted file mode 100644
index 096303e..0000000
--- a/templates/cgi/debian-unofficial/header.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
-<html>
-	<head>
-		<title>Debian Live Build</title>
-		<link rel="icon" href="http://live.debian.net/favicon.ico" type="image/ico">
-		<link rel="stylesheet" type="text/css" href="http://live.debian.net/stylesheet.css" />
-		<meta http-equiv="content-type" content="text/html; charset=iso-8859-15">
-		<meta name="keywords" content="Debian, Live, Project">
-		<meta name="description" content="The Debian Live Project">
-
-		<style type="text/css">
-			label { cursor:pointer; }
-		</style>
-
-		<script type="text/javascript" language="JavaScript">
-			function collapse(x, txt)
-			{
-				var oTemp=document.getElementById("text_"+x);
-				var oClick=document.getElementById("click_"+x);
-				if (oTemp.style.display=="block")
-				{
-					oTemp.style.display="none";
-					oClick.innerHTML=txt+"&nbsp<small>(click to expand)<\/small><br \/>";
-				}
-				else
-				{
-					oTemp.style.display="block";
-					oClick.innerHTML=txt+"&nbsp<small>(click to collapse)<\/small><br \/>";
-				}
-			}
-		</script>
-	</head>
-<body>
-
-<div id="maincontent" style="margin: 0 0 0 0;">
-	<h1 id="title">live-build web-frontend of the <a href="http://live.debian.net/">Debian Live Project</a></h1>
-	<h2 id="subtitle"><a href="http://live.debian.net/">Live Debian systems!</a></h2>
-</div>
diff --git a/templates/cgi/debian-unofficial/mail.txt b/templates/cgi/debian-unofficial/mail.txt
deleted file mode 100644
index 1b52405..0000000
--- a/templates/cgi/debian-unofficial/mail.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-Subject: Debian Live, live-build web-frontend - Build BUILD
-From: Debian Live live-build web-frontend <debian-live at lists.debian.org>
-To: EMAIL
-
-Hi,
-
-This is live-build web-frontend <http://live-build.debian.net/> of the Debian Live project <http://live.debian.net/>.
-
-Your build BUILD was started DATE_START and ended DATE_END with status 'STATUS'.
-
-You can see the log file and download the image from <SERVER/BUILD/>.
-
-Note that builds are removed after 24 hours.
-
-Feedback about all Debian Live matters can be sent to our mailinglist at debian-live at lists.debian.org (no subscription required).
-
-Have fun,
-The Debian Live Team
diff --git a/templates/cgi/debian-official/build.html b/templates/cgi/debian/build.html
similarity index 100%
rename from templates/cgi/debian-official/build.html
rename to templates/cgi/debian/build.html
diff --git a/templates/cgi/debian-official/footer.html b/templates/cgi/debian/footer.html
similarity index 100%
rename from templates/cgi/debian-official/footer.html
rename to templates/cgi/debian/footer.html
diff --git a/templates/cgi/debian-official/form.html b/templates/cgi/debian/form.html
similarity index 100%
rename from templates/cgi/debian-official/form.html
rename to templates/cgi/debian/form.html
diff --git a/templates/cgi/debian-official/header.html b/templates/cgi/debian/header.html
similarity index 100%
rename from templates/cgi/debian-official/header.html
rename to templates/cgi/debian/header.html
diff --git a/templates/cgi/debian-official/mail.txt b/templates/cgi/debian/mail.txt
similarity index 100%
rename from templates/cgi/debian-official/mail.txt
rename to templates/cgi/debian/mail.txt

-- 
live-build



More information about the debian-live-changes mailing list