[SCM] live-build branch, debian, updated. debian/3.0_a49-1-13-g0451545

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


The following commit has been merged in the debian branch:
commit 46f13db55aae3616609549072983cdb268461498
Author: Daniel Baumann <daniel at debian.org>
Date:   Tue Jun 5 20:34:13 2012 +0200

    Updating l10n stuff before removing it.

diff --git a/functions/echo.sh b/functions/echo.sh
index 32cb75b..862d696 100755
--- a/functions/echo.sh
+++ b/functions/echo.sh
@@ -13,11 +13,11 @@ Echo ()
 	STRING="${1}"
 	shift
 
-	if [ "${_L10N}" = "false" ]
+	if [ "${_L10N}" = "true" ]
 	then
-		printf "${STRING}\n" "${@}"
-	else
 		printf "$(eval_gettext "${STRING}")" "${@}"; echo;
+	else
+		printf "${STRING}\n" "${@}"
 	fi
 }
 
@@ -28,11 +28,11 @@ Echo_debug ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
+		if [ "${_L10N}" = "true" ]
 		then
-			printf "D: ${STRING}\n" "${@}"
-		else
 			printf "D: $(eval_gettext "${STRING}")" "${@}"; echo;
+		else
+			printf "D: ${STRING}\n" "${@}"
 		fi
 	fi
 }
@@ -44,11 +44,11 @@ Echo_debug_running ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
+		if [ "${_L10N}" = "true" ]
 		then
-			printf "D: ${STRING}" "${@}"
-		else
 			printf "D: $(eval_gettext "${STRING}")" "${@}"
+		else
+			printf "D: ${STRING}" "${@}"
 		fi
 
 		if [ "${_COLOR}" = "false" ]
@@ -72,11 +72,11 @@ Echo_error ()
 		printf "${RED}E${NO_COLOR}:"
 	fi
 
-	if [ "${_L10N}" = "false" ]
+	if [ "${_L10N}" = "true" ]
 	then
-		printf " ${STRING}\n" "${@}" >&2
-	else
 		(printf " $(eval_gettext "${STRING}")" "${@}"; echo;) >&2
+	else
+		printf " ${STRING}\n" "${@}" >&2
 	fi
 }
 
@@ -94,11 +94,11 @@ Echo_message ()
 			printf "${WHITE}P${NO_COLOR}:"
 		fi
 
-		if [ "${_L10N}" = "false" ]
+		if [ "${_L10N}" = "true" ]
 		then
-			printf " ${STRING}\n" "${@}"
-		else
 			printf " $(eval_gettext "${STRING}")" "${@}"; echo;
+		else
+			printf " ${STRING}\n" "${@}"
 		fi
 	fi
 }
@@ -117,18 +117,18 @@ Echo_message_running ()
 			printf "${WHITE}P${NO_COLOR}:"
 		fi
 
-		if [ "${_L10N}" = "false" ]
+		if [ "${_L10N}" = "true" ]
 		then
-			printf " ${STRING}" "${@}"
-		else
 			printf " $(eval_gettext "${STRING}")" "${@}";
+		else
+			printf " ${STRING}" "${@}"
 		fi
 
-		if [ "${_COLOR}" = "false" ]
+		if [ "${_COLOR}" = "true" ]
 		then
-			printf "..."
-		else
 			printf "... ${YELLOW}${BLINK}running${NO_COLOR}"
+		else
+			printf "..."
 		fi
 	fi
 }
@@ -140,11 +140,11 @@ Echo_verbose ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
+		if [ "${_L10N}" = "true" ]
 		then
-			printf "I: ${STRING}\n" "${@}"
-		else
 			printf "I: $(eval_gettext "${STRING}")" "${@}"; echo;
+		else
+			printf "I: ${STRING}\n" "${@}"
 		fi
 	fi
 }
@@ -156,18 +156,18 @@ Echo_verbose_running ()
 		STRING="${1}"
 		shift
 
-		if [ "${_L10N}" = "false" ]
+		if [ "${_L10N}" = "true" ]
 		then
-			printf "I: ${STRING}" "${@}"
-		else
 			printf "I: $(eval_gettext "${STRING}")" "${@}";
+		else
+			printf "I: ${STRING}" "${@}"
 		fi
 
-		if [ "${_COLOR}" = "false" ]
+		if [ "${_COLOR}" = "true" ]
 		then
-			printf "..."
-		else
 			printf "... ${YELLOW}${BLINK}running${NO_COLOR}"
+		else
+			printf "..."
 		fi
 	fi
 }
@@ -184,11 +184,11 @@ Echo_warning ()
 		printf "${YELLOW}W${NO_COLOR}:"
 	fi
 
-	if [ "${_L10N}" = "false" ]
+	if [ "${_L10N}" = "true" ]
 	then
-		printf " ${STRING}\n" "${@}"
-	else
 		printf " $(eval_gettext "${STRING}")" "${@}"; echo;
+	else
+		printf " ${STRING}\n" "${@}"
 	fi
 }
 
diff --git a/po/Makefile b/po/Makefile
index 3216d1f..19ad86a 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -1,7 +1,7 @@
 # Makefile to manage gettext files
 
-DOMAIN=live-helper
-ECHO_FUNCTIONS="Echo_message Echo_verbose Echo_warning Echo_debug Echo_error Echo_breakage Echo"
+DOMAIN=live-build
+ECHO_FUNCTIONS="Echo Echo_debug Echo_debug_running Echo_error Echo_message Echo_message_running Echo_verbose Echo_verbose_running Echo_warning Echo_status Echo_done Echo_file Echo_breakage"
 
 POFILES=$(wildcard *.po)
 MOFILES=$(patsubst %.po,%.mo,$(POFILES))
@@ -20,7 +20,7 @@ XGETTEXT_KEYWORDS=$(shell echo $(ECHO_FUNCTIONS) |sed -e 's,\S\+,-k&,g')
 $(DOMAIN).pot: $(GETTEXTFILES)
 	$(shell xgettext $(XGETTEXT_KEYWORDS) -L Shell -o $(DOMAIN).pot $(GETTEXTFILES))
 
-update-po: live-helper.pot
+update-po: live-build.pot
 	-for lang in $(LINGUAS); do\
 	    msgmerge -U $$lang.po $(DOMAIN).pot; \
 	done
@@ -34,6 +34,6 @@ install: $(MOFILES)
 all: update-po $(MOFILES)
 
 clean:
-	- rm *.mo *~
+	rm -f *.mo *~
 
 .PHONY: update-po
diff --git a/po/live-build.pot b/po/live-build.pot
index 0418f35..c712129 100644
--- a/po/live-build.pot
+++ b/po/live-build.pot
@@ -8,1029 +8,997 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-02-02 18:10+0100\n"
+"POT-Creation-Date: 2012-06-05 20:32+0200\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"
+"Language: \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"
+#: ../scripts/build/lb_chroot_apt:17
+msgid "manage /etc/apt/apt.conf"
 msgstr ""
 
-#: ../helpers/lh:41
-msgid "no such helper"
+#: ../scripts/build/lb_chroot_apt:32
+msgid "Configuring file /etc/apt/apt.conf"
 msgstr ""
 
-#: ../helpers/lh_chroot_packageslists:16
-msgid "queue install of packages lists into chroot"
+#: ../scripts/build/lb_chroot_apt:229
+msgid "Deconfiguring file /etc/apt/apt.conf"
 msgstr ""
 
-#: ../helpers/lh_chroot_packageslists:26
-msgid "Begin queueing installation of packages lists..."
+#: ../scripts/build/lb_chroot_package-lists:17
+msgid "queue install of package lists into chroot"
 msgstr ""
 
-#: ../helpers/lh_binary_silo:16
-msgid "installs silo into binary"
+#: ../scripts/build/lb_binary_net:17
+msgid "build netboot binary image"
 msgstr ""
 
-#: ../helpers/lh_binary_silo:42
-msgid "Begin installing silo..."
+#: ../scripts/build/lb_binary_net:37
+msgid "Begin building binary netboot image..."
 msgstr ""
 
-#: ../helpers/lh_binary_silo:172
-msgid "Net cow not supported on silo"
+#: ../scripts/build/lb_binary_net:98
+msgid "Invalid default kernel flavour for sparc \"%s\""
 msgstr ""
 
-#: ../helpers/lh_binary_tar:16
-msgid "build harddisk binary image"
+#: ../scripts/build/lb_chroot_local-patches:17
+msgid "apply local patches against chroot"
 msgstr ""
 
-#: ../helpers/lh_binary_tar:31
-msgid "Begin building binary harddisk image..."
+#: ../scripts/build/lb_chroot_local-patches:27
+msgid "Begin applying chroot local patches..."
 msgstr ""
 
-#: ../helpers/lh_chroot_sysv-rc:16
-msgid "manage /usr/sbin/policy-rc.d"
+#: ../scripts/build/lb_chroot_local-patches:54
+msgid "Applying patch %s..."
 msgstr ""
 
-#: ../helpers/lh_chroot_sysv-rc:31
-msgid "Configuring file /usr/sbin/policy-rc.d"
+#: ../scripts/build/lb_chroot_preseed:17
+msgid "execute local preseed in chroot"
 msgstr ""
 
-#: ../helpers/lh_chroot_sysv-rc:65
-msgid "Deconfiguring file /usr/sbin/policy-rc.d"
+#: ../scripts/build/lb_chroot_preseed:27
+msgid "Begin executing local preseeds..."
 msgstr ""
 
-#: ../helpers/lh_chroot_local-patches:16
-msgid "apply local patches against chroot"
+#: ../scripts/build/lb_chroot_archives:17
+msgid "manage /etc/apt/sources.list"
 msgstr ""
 
-#: ../helpers/lh_chroot_local-patches:26
-msgid "Begin applying chroot local patches..."
+#: ../scripts/build/lb_chroot_archives:47
+msgid "Configuring file /etc/apt/sources.list"
 msgstr ""
 
-#: ../helpers/lh_chroot_local-patches:53
-msgid "Applying patch %s..."
+#: ../scripts/build/lb_chroot_archives:375
+msgid "GPG exited with error status %s"
 msgstr ""
 
-#: ../helpers/lh_chroot_resolv:16
-msgid "manage /etc/resolv.conf"
+#: ../scripts/build/lb_chroot_archives:423
+#, sh-format
+msgid ""
+"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
 msgstr ""
 
-#: ../helpers/lh_chroot_resolv:31
-msgid "Configuring file /etc/resolv.conf"
+#: ../scripts/build/lb_chroot_archives:570
+msgid "Deconfiguring file /etc/apt/sources.list"
 msgstr ""
 
-#: ../helpers/lh_chroot_resolv:66
-msgid "Deconfiguring file /etc/resolv.conf"
+#: ../scripts/build/lb_chroot_upstart:17
+msgid "manage /sbin/initctl"
 msgstr ""
 
-#: ../helpers/lh_source_net:16
-msgid "build source net image"
+#: ../scripts/build/lb_chroot_upstart:32
+msgid "Configuring file /sbin/initctl"
 msgstr ""
 
-#: ../helpers/lh_source_net:36
-msgid "Begin building source netboot image..."
+#: ../scripts/build/lb_chroot_upstart:63
+msgid "Deconfiguring file /sbin/initctl"
 msgstr ""
 
-#: ../helpers/lh_source_debian:16
-msgid "debian sources"
+#: ../scripts/build/lb_binary_hooks:17
+msgid "execute hooks in binary"
 msgstr ""
 
-#: ../helpers/lh_source_debian:31
-msgid "Begin downloading sources..."
+#: ../scripts/build/lb_binary_hooks:27 ../scripts/build/lb_chroot_hooks:27
+msgid "Begin executing hooks..."
 msgstr ""
 
-#: ../helpers/lh_chroot:16
-msgid "customize the Debian system"
+#: ../scripts/build/lb_chroot_interactive:17
+msgid "make build interactive"
 msgstr ""
 
-#: ../helpers/lh_binary_syslinux:16
-msgid "installs syslinux into binary"
+#: ../scripts/build/lb_chroot_interactive:32
+msgid "Begin interactive build..."
 msgstr ""
 
-#: ../helpers/lh_binary_syslinux:31
-msgid "Begin installing syslinux..."
+#: ../scripts/build/lb_chroot_interactive:48
+msgid "Pausing build: starting interactive shell..."
 msgstr ""
 
-#: ../helpers/lh_binary_syslinux:250
-msgid "%s doen't exist"
+#: ../scripts/build/lb_chroot_interactive:52
+msgid "Pausing build: starting interactive X11..."
 msgstr ""
 
-#: ../helpers/lh_binary_syslinux:453 ../helpers/lh_binary_syslinux:477
-msgid "Unsupported net filesystem"
+#: ../scripts/build/lb_chroot_interactive:56
+msgid "Pausing build: starting interactive Xnest..."
 msgstr ""
 
-#: ../helpers/lh_bootstrap:16
-msgid "bootstrap a Debian system"
+#: ../scripts/build/lb_source_debian:17
+msgid "debian sources"
 msgstr ""
 
-#: ../helpers/lh_binary_usb-hdd:16
-msgid "build binary image"
+#: ../scripts/build/lb_source_debian:32
+msgid "Begin downloading sources..."
 msgstr ""
 
-#: ../helpers/lh_binary_usb-hdd:31
-msgid "Begin building binary usb-hdd image..."
+#: ../scripts/build/lb_binary_disk:17
+msgid "install disk information into binary"
 msgstr ""
 
-#: ../helpers/lh_binary_usb-hdd:58
-msgid "Sparc only supports booting from ext2, ext3 (or ufs)"
+#: ../scripts/build/lb_binary_disk:35 ../scripts/build/lb_source_disk:36
+msgid "Begin installing disk information..."
 msgstr ""
 
-#: ../helpers/lh_binary_usb-hdd:89
-msgid ""
-"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
+#: ../scripts/build/lb_bootstrap_cdebootstrap:17
+msgid "bootstrap a Debian system with cdebootstrap(1)"
 msgstr ""
 
-#: ../helpers/lh_binary_usb-hdd:98
-msgid ""
-"FAT16 doesn't support partitions larger than 2GB, automatically enforcing "
-"FAT32"
+#: ../scripts/build/lb_bootstrap_cdebootstrap:35
+#: ../scripts/build/lb_bootstrap_debootstrap:35
+#: ../scripts/build/lb_bootstrap_copy:35
+msgid "Begin bootstrapping system..."
 msgstr ""
 
-#: ../helpers/lh_binary_usb-hdd:139 ../helpers/lh_source_usb-hdd:86
-msgid "Unsupported binary filesystem %s"
+#: ../scripts/build/lb_chroot_linux-image:17
+msgid "schedule kernel packages for installation"
 msgstr ""
 
-#: ../helpers/lh_chroot_symlinks:16
-msgid "convert symlinks"
+#: ../scripts/build/lb:17
+msgid "utility to build Debian Live systems"
 msgstr ""
 
-#: ../helpers/lh_chroot_symlinks:31
-msgid "Begin converting symlinks..."
+#: ../scripts/build/lb:62
+msgid "no such script"
 msgstr ""
 
-#: ../helpers/lh_bootstrap_copy:16
-msgid "bootstrap by copying the host system"
+#: ../scripts/build/lb:66
+msgid "[%s] %s"
 msgstr ""
 
-#: ../helpers/lh_bootstrap_copy:34 ../helpers/lh_bootstrap_cdebootstrap:34
-#: ../helpers/lh_bootstrap_debootstrap:34
-msgid "Begin bootstrapping system..."
+#: ../scripts/build/lb_chroot_live-packages:17
+msgid "schedule live packages for installation"
 msgstr ""
 
-#: ../helpers/lh_binary_grub:16
-msgid "installs grub into binary"
+#: ../scripts/build/lb_source:19 ../scripts/build/lb_build:19
+#: ../scripts/build/lb_bootstrap:19 ../scripts/build/lb_chroot:19
+#: ../scripts/build/lb_binary:19
+msgid "Automatically populating config tree."
 msgstr ""
 
-#: ../helpers/lh_binary_grub:31
-msgid "Begin installing grub..."
+#: ../scripts/build/lb_source:24
+msgid "build source images"
 msgstr ""
 
-#: ../helpers/lh_binary_grub:118
-msgid "Bootloader in this image type not yet supported by live-helper."
+#: ../scripts/build/lb_chroot_hosts:17
+msgid "manage /etc/hosts"
 msgstr ""
 
-#: ../helpers/lh_binary_grub:119
-msgid "This would produce a not bootable image, aborting (FIXME)."
+#: ../scripts/build/lb_chroot_hosts:32
+msgid "Configuring file /etc/hosts"
 msgstr ""
 
-#: ../helpers/lh_binary_grub:177
-msgid "Net cow not yet supported on grub"
+#: ../scripts/build/lb_chroot_hosts:68
+msgid "Deconfiguring file /etc/hosts"
 msgstr ""
 
-#: ../helpers/lh_chroot_local-hooks:16
-msgid "execute local hooks in chroot"
+#: ../scripts/build/lb_binary_grub2:17
+msgid "installs grub2 into binary"
 msgstr ""
 
-#: ../helpers/lh_chroot_local-hooks:26 ../helpers/lh_binary_local-hooks:26
-msgid "Begin executing local hooks..."
+#: ../scripts/build/lb_binary_grub2:32
+msgid "Begin installing grub2..."
 msgstr ""
 
-#: ../helpers/lh_chroot_preseed:16
-msgid "execute preseed in chroot"
+#: ../scripts/build/lb_binary_grub2:129 ../scripts/build/lb_binary_grub:155
+msgid "Bootloader in this image type not yet supported by live-build."
 msgstr ""
 
-#: ../helpers/lh_chroot_preseed:26
-msgid "Begin executing preseed..."
+#: ../scripts/build/lb_binary_grub2:130 ../scripts/build/lb_binary_grub:156
+msgid "This would produce a not bootable image, aborting (FIXME)."
 msgstr ""
 
-#: ../helpers/lh_chroot_hosts:16
-msgid "manage /etc/hosts"
+#: ../scripts/build/lb_binary_grub2:148 ../scripts/build/lb_binary_grub:174
+msgid "Net cow not yet supported on grub"
 msgstr ""
 
-#: ../helpers/lh_chroot_hosts:31
-msgid "Configuring file /etc/hosts"
+#: ../scripts/build/lb_chroot_task-lists:17
+msgid "install task lists into chroot"
 msgstr ""
 
-#: ../helpers/lh_chroot_hosts:67
-msgid "Deconfiguring file /etc/hosts"
+#: ../scripts/build/lb_source_hdd:17 ../scripts/build/lb_source_virtual-hdd:17
+msgid "build source image"
 msgstr ""
 
-#: ../helpers/lh_chroot_localization:16
-msgid "install localization packages into chroot"
+#: ../scripts/build/lb_source_hdd:37
+msgid "Begin building source hdd image..."
 msgstr ""
 
-#: ../helpers/lh_chroot_localization:26
-msgid "Begin installing localization packages..."
+#: ../scripts/build/lb_source_hdd:87 ../scripts/build/lb_binary_hdd:140
+msgid "Unsupported binary filesystem %s"
 msgstr ""
 
-#: ../helpers/lh_bootstrap_cdebootstrap:16
-msgid "bootstrap a Debian system with cdebootstrap(1)"
+#: ../scripts/build/lb_source_hdd:92
+msgid "!!! The following error/warning messages can be ignored !!!"
 msgstr ""
 
-#: ../helpers/lh_source_debian-live:16
-msgid "copy debian-live config into source"
+#: ../scripts/build/lb_source_hdd:125
+msgid "!!! The above error/warning messages can be ignored !!!"
 msgstr ""
 
-#: ../helpers/lh_source_debian-live:31
-msgid "Begin copying live-helper configuration..."
+#: ../scripts/build/lb_binary_grub:17
+msgid "installs grub into binary"
 msgstr ""
 
-#: ../helpers/lh_binary_yaboot:16
-msgid "installs yaboot into binary"
+#: ../scripts/build/lb_binary_grub:32
+msgid "Begin installing grub..."
 msgstr ""
 
-#: ../helpers/lh_binary_yaboot:31
-msgid "Begin installing yaboot..."
+#: ../scripts/build/lb_binary_local-includes:17
+#: ../scripts/build/lb_binary_includes:17
+msgid "copy files into binary"
 msgstr ""
 
-#: ../helpers/lh_binary_yaboot:126
-msgid "not yet supported, aborting (FIXME)."
+#: ../scripts/build/lb_binary_local-includes:27
+msgid "Begin copying binary local includes..."
 msgstr ""
 
-#: ../helpers/lh_binary_yaboot:184
-msgid "Net cow not yet supported on yaboot"
+#: ../scripts/build/lb_binary_win32-loader:17
+msgid "copy win32-loader into binary"
 msgstr ""
 
-#: ../helpers/lh_clean:27
-msgid "clean up system build directories"
+#: ../scripts/build/lb_binary_win32-loader:32
+msgid "Begin copying win32-loader..."
 msgstr ""
 
-#: ../helpers/lh_clean:40
-msgid "%s is not a good Debian Live working directory to clean."
+#: ../scripts/build/lb_binary_win32-loader:98
+msgid ""
+"win32-loader inclusion is set to true but not compatible with your "
+"architecture, ignoring."
 msgstr ""
 
-#: ../helpers/lh_clean:73
-msgid "Cleaning chroot"
+#: ../scripts/build/lb_binary_rootfs:17
+msgid "build rootfs image"
 msgstr ""
 
-#: ../helpers/lh_binary_chroot:16
-msgid "copy chroot into chroot"
+#: ../scripts/build/lb_binary_rootfs:27
+msgid "Begin building root filesystem image..."
 msgstr ""
 
-#: ../helpers/lh_binary_chroot:26
-msgid "Begin copying chroot..."
+#: ../scripts/build/lb_binary_rootfs:326
+msgid "Preparing squashfs image..."
 msgstr ""
 
-#: ../helpers/lh_binary_chroot:80 ../helpers/lh_source_tar:37
+#: ../scripts/build/lb_binary_rootfs:327 ../scripts/build/lb_binary_rootfs:475
+#: ../scripts/build/lb_binary_chroot:81 ../scripts/build/lb_source_tar:38
 msgid "This may take a while."
 msgstr ""
 
-#: ../helpers/lh_binary_chroot:100
-msgid "Excluded path does not exist: %s"
+#: ../scripts/build/lb_binary_iso:17
+msgid "build iso binary image"
 msgstr ""
 
-#: ../helpers/lh_binary_local-includes:16 ../helpers/lh_binary_includes:16
-msgid "copy files into binary"
+#: ../scripts/build/lb_binary_iso:41
+msgid "Begin building binary iso image..."
 msgstr ""
 
-#: ../helpers/lh_binary_local-includes:26
-msgid "Begin copying binary local includes..."
+#: ../scripts/build/lb_binary_iso:151
+msgid "Bootloader on your architecture not yet supported by live-build."
 msgstr ""
 
-#: ../helpers/lh_binary_debian-installer:16
-msgid "install debian-installer into binary"
+#: ../scripts/build/lb_binary_iso:152
+msgid ""
+"This will produce a most likely not bootable image (Continuing in 5 seconds)."
 msgstr ""
 
-#: ../helpers/lh_binary_debian-installer:46
-msgid "debian-installer flavour %s not supported."
+#: ../scripts/build/lb_testroot:17
+msgid "ensure that a system is built as root"
 msgstr ""
 
-#: ../helpers/lh_binary_debian-installer:51
-msgid "Begin installing debian-installer..."
+#: ../scripts/build/lb_testroot:30
+msgid "need root privileges"
 msgstr ""
 
-#: ../helpers/lh_binary_debian-installer:214
-msgid "Could not download file: %s"
+#: ../scripts/build/lb_chroot_includes:17
+msgid "copy files into chroot"
 msgstr ""
 
-#: ../helpers/lh_binary_debian-installer:306
-msgid "No daily-builds found for your architecture."
+#: ../scripts/build/lb_chroot_includes:27
+msgid "Begin copying chroot includes..."
 msgstr ""
 
-#: ../helpers/lh_binary_debian-installer:466
-msgid "Could not find cache/packages_bootstrap."
+#: ../scripts/build/lb_binary_tar:17
+msgid "build harddisk binary image"
 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."
+#: ../scripts/build/lb_binary_tar:32
+msgid "Begin building binary harddisk image..."
 msgstr ""
 
-#: ../helpers/lh_chroot_interactive:16
-msgid "make build interactive"
+#: ../scripts/build/lb_binary_syslinux:17
+msgid "installs syslinux into binary"
 msgstr ""
 
-#: ../helpers/lh_chroot_interactive:31
-msgid "Begin interactive build..."
+#: ../scripts/build/lb_binary_syslinux:32
+msgid "Begin installing syslinux..."
 msgstr ""
 
-#: ../helpers/lh_chroot_interactive:47
-msgid "Pausing build: starting interactive shell..."
+#: ../scripts/build/lb_binary_syslinux:108
+msgid "/usr/bin/syslinux - no such file."
 msgstr ""
 
-#: ../helpers/lh_chroot_interactive:51
-msgid "Pausing build: starting interactive X11..."
+#: ../scripts/build/lb_binary_syslinux:115
+msgid "/usr/lib/syslinux - no such directory"
 msgstr ""
 
-#: ../helpers/lh_chroot_interactive:55
-msgid "Pausing build: starting interactive Xnest..."
+#: ../scripts/build/lb_chroot_dpkg:17
+msgid "manage /sbin/dpkg"
 msgstr ""
 
-#: ../helpers/lh_chroot_cache:16
-msgid "cache chroot stage"
+#: ../scripts/build/lb_chroot_dpkg:32
+msgid "Configuring file /sbin/start-stop-daemon"
 msgstr ""
 
-#: ../helpers/lh_chroot_cache:26
-msgid "Begin caching chroot stage..."
+#: ../scripts/build/lb_chroot_dpkg:82
+msgid "Deconfiguring file /sbin/start-stop-daemon"
 msgstr ""
 
-#: ../helpers/lh_chroot_hostname:16
-msgid "manage /bin/hostname"
+#: ../scripts/build/lb_build:26
+msgid "Executing auto/build script."
 msgstr ""
 
-#: ../helpers/lh_chroot_hostname:31
-msgid "Configuring file /etc/hostname"
+#: ../scripts/build/lb_build:37
+msgid "build a Debian Live system"
 msgstr ""
 
-#: ../helpers/lh_chroot_hostname:48
-msgid "Configuring file /bin/hostname"
+#: ../scripts/build/lb_build:45
+msgid "No config/ directory; using defaults for all options"
 msgstr ""
 
-#: ../helpers/lh_chroot_hostname:65
-msgid "Deconfiguring file /etc/hostname"
+#: ../scripts/build/lb_build:50
+msgid "Cannot build live image from the root directory (/)"
 msgstr ""
 
-#: ../helpers/lh_chroot_hostname:73
-msgid "Deconfiguring file /bin/hostname"
+#: ../scripts/build/lb_build:56
+msgid "Cannot build live image from a directory containing spaces"
 msgstr ""
 
-#: ../helpers/lh_binary_manifest:16
-msgid "create manifest"
+#: ../scripts/build/lb_chroot_hooks:17
+msgid "execute hooks in chroot"
 msgstr ""
 
-#: ../helpers/lh_binary_manifest:26
-msgid "Begin creating manifest..."
+#: ../scripts/build/lb_source_checksums:17
+msgid "create source checksums"
 msgstr ""
 
-#: ../helpers/lh_chroot_sources:16
-msgid "manage /etc/apt/sources.list"
+#: ../scripts/build/lb_chroot_resolv:17
+msgid "manage /etc/resolv.conf"
 msgstr ""
 
-#: ../helpers/lh_chroot_sources:33
-msgid "Configuring file /etc/apt/sources.list"
+#: ../scripts/build/lb_chroot_resolv:32
+msgid "Configuring file /etc/resolv.conf"
 msgstr ""
 
-#: ../helpers/lh_chroot_sources:168
-msgid "GPG exited with error status %s"
+#: ../scripts/build/lb_chroot_resolv:71
+msgid "Deconfiguring file /etc/resolv.conf"
 msgstr ""
 
-#: ../helpers/lh_chroot_sources:212
-#, sh-format
-msgid ""
-"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
+#: ../scripts/build/lb_config:19
+msgid "Executing auto/config script."
 msgstr ""
 
-#: ../helpers/lh_chroot_sources:329
-msgid "Deconfiguring file /etc/apt/sources.list"
+#: ../scripts/build/lb_config:31
+msgid "create configuration for live-build(7)"
 msgstr ""
 
-#: ../helpers/lh_chroot_hooks:16
-msgid "execute hooks in chroot"
+#: ../scripts/build/lb_config:185 ../functions/arguments.sh:17
+msgid "terminating"
 msgstr ""
 
-#: ../helpers/lh_chroot_hooks:26
-msgid "Begin executing hooks..."
+#: ../scripts/build/lb_config:201
+msgid "%s: This is live-build version %s"
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:16
-msgid "encrypts rootfs"
+#: ../scripts/build/lb_config:876 ../functions/arguments.sh:77
+msgid "internal error %s"
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:33
-msgid "Encryption type %s not supported."
+#: ../scripts/build/lb_config:886
+msgid "Considering defaults defined in %s"
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:43
-msgid "Encryption not yet supported on %s filesystems."
+#: ../scripts/build/lb_config:1465
+msgid "Please install 'debconf-utils' in order to use this feature."
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:48
-msgid "Begin encrypting root filesystem image..."
+#: ../scripts/build/lb_binary_includes:32
+msgid "Begin copying binary includes..."
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:81
-msgid "Encrypting binary/%s/filesystem.%s with %s..."
+#: ../scripts/build/lb_binary_includes:53
+msgid "user specified includes not accessible in %s"
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:93
-msgid " ** Configuring encrypted filesystem **"
+#: ../scripts/build/lb_bootstrap:24
+msgid "bootstrap a Debian system"
 msgstr ""
 
-#: ../helpers/lh_binary_encryption:95
-msgid " (Passwords must be at least 20 characters long)"
+#: ../scripts/build/lb_binary_yaboot:17
+msgid "installs yaboot into binary"
 msgstr ""
 
-#: ../helpers/lh_build:27
-msgid "build a Debian Live system"
+#: ../scripts/build/lb_binary_yaboot:32
+msgid "Begin installing yaboot..."
 msgstr ""
 
-#: ../helpers/lh_build:35
-msgid "No config/ directory; using defaults for all options"
+#: ../scripts/build/lb_binary_yaboot:162
+msgid "not yet supported, aborting (FIXME)."
 msgstr ""
 
-#: ../helpers/lh_build:40
-msgid "Cannot build live image from the root directory (/)"
+#: ../scripts/build/lb_binary_yaboot:180
+msgid "Net cow not yet supported on yaboot"
 msgstr ""
 
-#: ../helpers/lh_build:46
-msgid "Cannot build live image from a directory containing spaces"
+#: ../scripts/build/lb_chroot_sysv-rc:17
+msgid "manage /usr/sbin/policy-rc.d"
 msgstr ""
 
-#: ../helpers/lh_binary_includes:31
-msgid "Begin copying binary includes..."
+#: ../scripts/build/lb_chroot_sysv-rc:32
+msgid "Configuring file /usr/sbin/policy-rc.d"
 msgstr ""
 
-#: ../helpers/lh_binary_includes:52
-msgid "user specified includes not accessible in %s"
+#: ../scripts/build/lb_chroot_sysv-rc:63
+msgid "Deconfiguring file /usr/sbin/policy-rc.d"
 msgstr ""
 
-#: ../helpers/lh_binary_includes:171
-msgid "win32-loader inclusion is enabled but not found, ignoring."
+#: ../scripts/build/lb_binary_package-lists:17
+msgid "install local packages into binary"
 msgstr ""
 
-#: ../helpers/lh_source_usb-hdd:16
-msgid "build source image"
+#: ../scripts/build/lb_binary_package-lists:27
+msgid "Begin installing local package lists..."
 msgstr ""
 
-#: ../helpers/lh_source_usb-hdd:36
-msgid "Begin building source usb-hdd image..."
+#: ../scripts/build/lb_chroot_proc:17
+msgid "mount /proc"
 msgstr ""
 
-#: ../helpers/lh_source_usb-hdd:91
-msgid "!!! The following error/warning messages can be ignored !!!"
+#: ../scripts/build/lb_chroot_proc:35
+msgid "Begin mounting /proc..."
 msgstr ""
 
-#: ../helpers/lh_source_usb-hdd:125
-msgid "!!! The above error/warning messages can be ignored !!!"
+#: ../scripts/build/lb_chroot_proc:63
+msgid "Begin unmounting /proc..."
 msgstr ""
 
-#: ../helpers/lh_binary_local-packageslists:16
-msgid "install local packages into binary"
+#: ../scripts/build/lb_chroot_hostname:17
+msgid "manage /bin/hostname"
 msgstr ""
 
-#: ../helpers/lh_binary_local-packageslists:26
-msgid "Begin installing local packages lists..."
+#: ../scripts/build/lb_chroot_hostname:32
+msgid "Configuring file /etc/hostname"
 msgstr ""
 
-#: ../helpers/lh_chroot_sysvinit:16
-msgid "configure sysvinit"
+#: ../scripts/build/lb_chroot_hostname:49
+msgid "Configuring file /bin/hostname"
 msgstr ""
 
-#: ../helpers/lh_chroot_sysvinit:26
-msgid "Configuring package sysvinit"
+#: ../scripts/build/lb_chroot_hostname:66
+msgid "Deconfiguring file /etc/hostname"
 msgstr ""
 
-#: ../helpers/lh_chroot_selinuxfs:16
-msgid "mount /selinux"
+#: ../scripts/build/lb_chroot_hostname:80
+msgid "Deconfiguring file /bin/hostname"
 msgstr ""
 
-#: ../helpers/lh_chroot_selinuxfs:36
-msgid "Begin mounting /selinux..."
+#: ../scripts/build/lb_binary_debian-installer:17
+msgid "install debian-installer into binary"
 msgstr ""
 
-#: ../helpers/lh_chroot_selinuxfs:65
-msgid "Begin unmounting /selinux..."
+#: ../scripts/build/lb_binary_debian-installer:52
+msgid "debian-installer flavour %s not supported."
 msgstr ""
 
-#: ../helpers/lh_binary_md5sum:16
-msgid "create binary md5sums"
+#: ../scripts/build/lb_binary_debian-installer:57
+msgid "Begin installing debian-installer..."
 msgstr ""
 
-#: ../helpers/lh_binary_md5sum:31
-msgid "Begin creating binary md5sum.txt..."
+#: ../scripts/build/lb_binary_debian-installer:234
+msgid "Could not download file: %s"
 msgstr ""
 
-#: ../helpers/lh_binary_iso:16
-msgid "build iso binary image"
+#: ../scripts/build/lb_binary_debian-installer:531
+msgid "Could not find packages in cache/packages.bootstrap."
 msgstr ""
 
-#: ../helpers/lh_binary_iso:31
-msgid "Begin building binary iso image..."
+#: ../scripts/build/lb_binary_debian-installer:532
+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_binary_iso:129
-msgid "Bootloader on your architecture not yet supported by live-helper."
+#: ../scripts/build/lb_binary_debian-installer:617
+msgid "Downloading udebs..."
 msgstr ""
 
-#: ../helpers/lh_binary_iso:130
+#: ../scripts/build/lb_binary_debian-installer:621
 msgid ""
-"This will produce a most likely not bootable image (Continuing in 5 seconds)."
+"Building in derivative mode in debian+ layout.. a lot of 404 errors are ok "
+"here."
 msgstr ""
 
-#: ../helpers/lh_testroot:16
-msgid "ensure that a system is built as root"
+#: ../scripts/build/lb_source_virtual-hdd:37
+msgid "Begin building source virtual-hdd image..."
 msgstr ""
 
-#: ../helpers/lh_testroot:29
-msgid "need root privileges"
+#: ../scripts/build/lb_chroot_hacks:17
+msgid "execute hacks in chroot"
 msgstr ""
 
-#: ../helpers/lh_binary_memtest:16
-msgid "installs a memtest into binary"
+#: ../scripts/build/lb_chroot_hacks:27
+msgid "Begin executing hacks..."
 msgstr ""
 
-#: ../helpers/lh_binary_memtest:31
-msgid "Begin installing memtest..."
+#: ../scripts/build/live-build:33
+msgid "live-build is a set of scripts to build Debian Live system images."
 msgstr ""
 
-#: ../helpers/lh_binary_memtest:47
-msgid "skipping binary_memtest, foreign architecture."
+#: ../scripts/build/live-build:35
+msgid ""
+"The idea behind live-build is a framework that uses a configuration "
+"directory to completely automate and customize all aspects of building a "
+"Live image."
 msgstr ""
 
-#: ../helpers/lh_binary_net:16
-msgid "build netboot binary image"
+#: ../scripts/build/live-build:37
+msgid ""
+"An introduction to live-build can be found in the live-build(7) manpage."
 msgstr ""
 
-#: ../helpers/lh_binary_net:36
-msgid "Begin building binary netboot image..."
+#: ../scripts/build/lb_chroot_devpts:17
+msgid "mount /dev/pts"
 msgstr ""
 
-#: ../helpers/lh_binary_net:93
-msgid "Invalid default kernel flavour for sparc \"%s\""
+#: ../scripts/build/lb_chroot_devpts:35
+msgid "Begin mounting /dev/pts..."
 msgstr ""
 
-#: ../helpers/lh_chroot_dpkg:16
-msgid "manage /sbin/dpkg"
+#: ../scripts/build/lb_chroot_devpts:60
+msgid "Begin unmounting /dev/pts..."
 msgstr ""
 
-#: ../helpers/lh_chroot_dpkg:31
-msgid "Configuring file /sbin/start-stop-daemon"
+#: ../scripts/build/lb_binary_virtual-hdd:17 ../scripts/build/lb_binary_hdd:17
+msgid "build binary image"
 msgstr ""
 
-#: ../helpers/lh_chroot_dpkg:60
-msgid "Deconfiguring file /sbin/start-stop-daemon"
+#: ../scripts/build/lb_binary_virtual-hdd:32
+msgid "Begin building binary virtual-hdd image..."
 msgstr ""
 
-#: ../helpers/lh_binary_disk:16
-msgid "install disk information into binary"
+#: ../scripts/build/lb_binary_virtual-hdd:67
+msgid "Creating virtual disk image..."
 msgstr ""
 
-#: ../helpers/lh_binary_disk:34 ../helpers/lh_source_disk:31
-msgid "Begin installing disk information..."
+#: ../scripts/build/lb_chroot:24
+msgid "customize the Debian system"
 msgstr ""
 
-#: ../helpers/lh_binary:16
-msgid "build binary images"
+#: ../scripts/build/lb_bootstrap_debootstrap:17
+msgid "bootstrap a Debian system with debootstrap(8)"
 msgstr ""
 
-#: ../helpers/lh_binary_linux-image:16
-msgid "install linux-image into binary"
+#: ../scripts/build/lb_bootstrap_debootstrap:126
+msgid "Running debootstrap (download-only)... "
 msgstr ""
 
-#: ../helpers/lh_binary_linux-image:26
-msgid "Begin install linux-image..."
+#: ../scripts/build/lb_bootstrap_debootstrap:142
+msgid "Running debootstrap... "
 msgstr ""
 
-#: ../helpers/lh_source_tar:16
-msgid "build source tarball"
+#: ../scripts/build/lb_bootstrap_debootstrap:152
+msgid "Bootstrap will be foreign"
 msgstr ""
 
-#: ../helpers/lh_source_tar:36
-msgid "Begin building source tarball..."
+#: ../scripts/build/lb_bootstrap_debootstrap:155
+msgid "Running debootstrap second stage under QEMU"
 msgstr ""
 
-#: ../helpers/lh_chroot_linux-image:16
-msgid "manage /etc/kernel-img.conf"
+#: ../scripts/build/lb_bootstrap_debootstrap:176
+msgid "Can't process file /usr/bin/debootstrap (FIXME)"
 msgstr ""
 
-#: ../helpers/lh_chroot_linux-image:31
-msgid "Configuring file /etc/kernel-img.conf"
+#: ../scripts/build/lb_binary_manifest:17
+msgid "create manifest"
 msgstr ""
 
-#: ../helpers/lh_chroot_linux-image:80
-msgid "Deconfiguring file /etc/kernel-img.conf"
+#: ../scripts/build/lb_binary_manifest:32
+msgid "Begin creating manifest..."
 msgstr ""
 
-#: ../helpers/lh_chroot_tasks:16
-msgid "install tasks into chroot"
+#: ../scripts/build/lb_source_disk:17
+msgid "install disk information into source"
 msgstr ""
 
-#: ../helpers/lh_chroot_tasks:26
-msgid "Begin installing tasks..."
+#: ../scripts/build/lb_chroot_tmpfs:17
+msgid "use tmpfs to speedup the build"
 msgstr ""
 
-#: ../helpers/lh_chroot_apt:16
-msgid "manage /etc/apt/apt.conf"
+#: ../scripts/build/lb_chroot_tmpfs:37
+msgid "Configuring tmpfs for /var/lib/dpkg"
 msgstr ""
 
-#: ../helpers/lh_chroot_apt:31
-msgid "Configuring file /etc/apt/apt.conf"
+#: ../scripts/build/lb_chroot_tmpfs:59
+msgid "Deconfiguring tmpfs for /var/lib/dpkg"
 msgstr ""
 
-#: ../helpers/lh_chroot_apt:156
-msgid "Deconfiguring file /etc/apt/apt.conf"
+#: ../scripts/build/lb_bootstrap_cache:17
+msgid "cache bootstrap stage"
 msgstr ""
 
-#: ../helpers/lh_source:16
-msgid "build source images"
+#: ../scripts/build/lb_bootstrap_cache:36
+msgid "Restoring bootstrap stage from cache..."
 msgstr ""
 
-#: ../helpers/lh_bootstrap_cache:16
-msgid "cache bootstrap stage"
+#: ../scripts/build/lb_bootstrap_cache:69
+msgid "Saving bootstrap stage to cache..."
 msgstr ""
 
-#: ../helpers/lh_bootstrap_cache:29
-msgid "Begin caching bootstrap stage..."
+#: ../scripts/build/lb_chroot_cache:17
+msgid "cache chroot stage"
 msgstr ""
 
-#: ../helpers/lh_chroot_debianchroot:16
-msgid "manage /etc/debian_chroot"
+#: ../scripts/build/lb_chroot_cache:33
+msgid "Restoring chroot stage from cache..."
 msgstr ""
 
-#: ../helpers/lh_chroot_debianchroot:31
-msgid "Configuring file /etc/debian_chroot"
+#: ../scripts/build/lb_chroot_cache:65
+msgid "Saving chroot stage to cache..."
 msgstr ""
 
-#: ../helpers/lh_chroot_debianchroot:56
-msgid "Deconfiguring file /etc/debian_chroot"
+#: ../scripts/build/lb_binary_linux-image:17
+msgid "install linux-image into binary"
 msgstr ""
 
-#: ../helpers/lh_chroot_packages:16
-msgid "queue install of packages into chroot"
+#: ../scripts/build/lb_binary_linux-image:32
+msgid "Begin install linux-image..."
 msgstr ""
 
-#: ../helpers/lh_chroot_packages:26
-msgid "Begin queueing installation of packages..."
+#: ../scripts/build/lb_source_debian-live:17
+msgid "copy debian-live config into source"
 msgstr ""
 
-#: ../helpers/lh_config:28
-msgid "create configuration for live-helper(7)"
+#: ../scripts/build/lb_source_debian-live:32
+msgid "Begin copying live-build configuration..."
 msgstr ""
 
-#: ../helpers/lh_config:152 ../functions/arguments.sh:16
-msgid "terminating"
+#: ../scripts/build/lb_source_net:17
+msgid "build source net image"
 msgstr ""
 
-#: ../helpers/lh_config:168
-msgid "%s: This is live-helper version %s"
+#: ../scripts/build/lb_source_net:37
+msgid "Begin building source netboot image..."
 msgstr ""
 
-#: ../helpers/lh_config:707 ../functions/arguments.sh:76
-msgid "internal error %s"
+#: ../scripts/build/lb_source_iso:17
+msgid "build iso source image"
 msgstr ""
 
-#: ../helpers/lh_config:717
-msgid "Considering defaults defined in %s"
+#: ../scripts/build/lb_source_iso:41
+msgid "Begin building source iso image..."
 msgstr ""
 
-#: ../helpers/lh_config:1197
-msgid "Please install 'debconf-utils' in order to use this feature."
+#: ../scripts/build/lb_binary_hdd:32
+msgid "Begin building binary hdd image..."
 msgstr ""
 
-#: ../helpers/lh_chroot_local-preseed:16
-msgid "execute local preseed in chroot"
+#: ../scripts/build/lb_binary_hdd:59
+msgid "Sparc only supports booting from ext2, ext3, ext4 or ufs."
 msgstr ""
 
-#: ../helpers/lh_chroot_local-preseed:26
-msgid "Begin executing local preseeds..."
+#: ../scripts/build/lb_binary_hdd:90
+msgid ""
+"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
 msgstr ""
 
-#: ../helpers/lh_chroot_hacks:16
-msgid "execute hacks in chroot"
+#: ../scripts/build/lb_binary_hdd:99
+msgid ""
+"FAT16 doesn't support partitions larger than 2GB, automatically enforcing "
+"FAT32"
 msgstr ""
 
-#: ../helpers/lh_chroot_hacks:26
-msgid "Begin executing hacks..."
+#: ../scripts/build/lb_binary:24
+msgid "build binary images"
 msgstr ""
 
-#: ../helpers/lh_binary_rootfs:16
-msgid "build rootfs image"
+#: ../scripts/build/lb_binary_chroot:17
+msgid "copy chroot into chroot"
 msgstr ""
 
-#: ../helpers/lh_binary_rootfs:26
-msgid "Begin building root filesystem image..."
+#: ../scripts/build/lb_binary_chroot:27
+msgid "Begin copying chroot..."
 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."
+#: ../scripts/build/lb_chroot_debianchroot:17
+msgid "manage /etc/debian_chroot"
 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."
+#: ../scripts/build/lb_chroot_debianchroot:32
+msgid "Configuring file /etc/debian_chroot"
 msgstr ""
 
-#: ../helpers/lh_source_iso:16
-msgid "build iso source image"
+#: ../scripts/build/lb_chroot_debianchroot:57
+msgid "Deconfiguring file /etc/debian_chroot"
 msgstr ""
 
-#: ../helpers/lh_source_iso:36
-msgid "Begin building source iso image..."
+#: ../scripts/build/lb_clean:19
+msgid "Executing auto/clean script."
 msgstr ""
 
-#: ../helpers/lh_chroot_devpts:16
-msgid "mount /dev/pts"
+#: ../scripts/build/lb_clean:30
+msgid "clean up system build directories"
 msgstr ""
 
-#: ../helpers/lh_chroot_devpts:34
-msgid "Begin mounting /dev/pts..."
+#: ../scripts/build/lb_clean:43
+msgid "%s is not a good Debian Live working directory to clean."
 msgstr ""
 
-#: ../helpers/lh_chroot_devpts:59
-msgid "Begin unmounting /dev/pts..."
+#: ../scripts/build/lb_clean:73
+msgid "Cleaning chroot"
 msgstr ""
 
-#: ../helpers/lh_chroot_install-packages:16
-msgid "install queued packages into chroot"
+#: ../scripts/build/lb_source_tar:17
+msgid "build source tarball"
 msgstr ""
 
-#: ../helpers/lh_chroot_install-packages:26
-msgid "Begin installing packages..."
+#: ../scripts/build/lb_source_tar:37
+msgid "Begin building source tarball..."
 msgstr ""
 
-#: ../helpers/lh_chroot_proc:16
-msgid "mount /proc"
+#: ../scripts/build/lb_chroot_sysfs:17
+msgid "mount /sys"
 msgstr ""
 
-#: ../helpers/lh_chroot_proc:34
-msgid "Begin mounting /proc..."
+#: ../scripts/build/lb_chroot_sysfs:35
+msgid "Begin mounting /sys..."
 msgstr ""
 
-#: ../helpers/lh_chroot_proc:62
-msgid "Begin unmounting /proc..."
+#: ../scripts/build/lb_chroot_sysfs:63
+msgid "Begin unmounting /sys..."
 msgstr ""
 
-#: ../helpers/lh_source_disk:16
-msgid "install disk information into source"
+#: ../scripts/build/lb_binary_memtest:17
+msgid "installs a memtest into binary"
 msgstr ""
 
-#: ../helpers/live-helper:32
-msgid "live-helper is a set of scripts to build Debian Live system images."
+#: ../scripts/build/lb_binary_memtest:32
+msgid "Begin installing memtest..."
 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."
+#: ../scripts/build/lb_binary_memtest:48
+msgid "skipping binary_memtest, foreign architecture."
 msgstr ""
 
-#: ../helpers/live-helper:36
-msgid ""
-"An introduction to live-helper can be found in the live-helper(7) manpage."
+#: ../scripts/build/lb_bootstrap_copy:17
+msgid "bootstrap by copying the host system"
 msgstr ""
 
-#: ../helpers/lh_chroot_sysfs:16
-msgid "mount /sys"
+#: ../scripts/build/lb_chroot_install-packages:17
+msgid "install queued packages into chroot"
 msgstr ""
 
-#: ../helpers/lh_chroot_sysfs:34
-msgid "Begin mounting /sys..."
+#: ../scripts/build/lb_binary_silo:17
+msgid "installs silo into binary"
 msgstr ""
 
-#: ../helpers/lh_chroot_sysfs:62
-msgid "Begin unmounting /sys..."
+#: ../scripts/build/lb_binary_silo:43
+msgid "Begin installing silo..."
 msgstr ""
 
-#: ../helpers/lh_chroot_local-packages:16
-msgid "queue install of local packages into chroot"
+#: ../scripts/build/lb_binary_silo:138
+msgid "Net cow not supported on silo"
 msgstr ""
 
-#: ../helpers/lh_chroot_local-packages:26
-msgid "Begin queueing installation of local packages..."
+#: ../scripts/build/lb_chroot_selinuxfs:17
+msgid "mount /selinux"
 msgstr ""
 
-#: ../helpers/lh_binary_local-hooks:16
-msgid "execute local hooks in binary"
+#: ../scripts/build/lb_chroot_selinuxfs:37
+msgid "Begin mounting /selinux..."
 msgstr ""
 
-#: ../helpers/lh_bootstrap_debootstrap:16
-msgid "bootstrap a Debian system with debootstrap(8)"
+#: ../scripts/build/lb_chroot_selinuxfs:66
+msgid "Begin unmounting /selinux..."
 msgstr ""
 
-#: ../helpers/lh_bootstrap_debootstrap:117
-msgid "Running debootstrap (download-only)... "
+#: ../scripts/build/lb_binary_checksums:17
+msgid "create binary checksums"
 msgstr ""
 
-#: ../helpers/lh_bootstrap_debootstrap:137
-msgid "Running debootstrap... "
+#: ../functions/losetup.sh:51
+msgid "Mounting %s with offset 0"
 msgstr ""
 
-#: ../helpers/lh_bootstrap_debootstrap:151
-msgid "Can't process file /usr/bin/debootstrap (FIXME)"
+#: ../functions/losetup.sh:58
+msgid "Mounting %s with offset %s"
 msgstr ""
 
-#: ../functions/echo.sh:242
+#: ../functions/echo.sh:243
 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
+#: ../functions/echo.sh:246
 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"
+#: ../functions/chroot.sh:17
+msgid "Executing: %s"
 msgstr ""
 
-#: ../functions/version.sh:18
-msgid "it under the terms of the GNU General Public License as published by"
+#: ../functions/conffile.sh:37
+msgid "Reading configuration file %s"
 msgstr ""
 
-#: ../functions/version.sh:19
-msgid "the Free Software Foundation, either version 3 of the License, or"
+#: ../functions/conffile.sh:40
+msgid "Failed to read configuration file %s"
 msgstr ""
 
-#: ../functions/version.sh:20
-msgid "(at your option) any later version."
+#: ../functions/help.sh:13
+msgid "%s - %s"
 msgstr ""
 
-#: ../functions/version.sh:22
-msgid "This program is distributed in the hope that it will be useful,"
+#: ../functions/help.sh:15 ../functions/usage.sh:15
+msgid "Usage:"
 msgstr ""
 
-#: ../functions/version.sh:23
-msgid "but WITHOUT ANY WARRANTY; without even the implied warranty of"
+#: ../functions/help.sh:23
+msgid "  %s [-h|--help]"
 msgstr ""
 
-#: ../functions/version.sh:24
-msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
+#: ../functions/help.sh:24
+msgid "  %s [-u|--usage]"
 msgstr ""
 
-#: ../functions/version.sh:25
-msgid "GNU General Public License for more details."
+#: ../functions/help.sh:25
+msgid "  %s [-v|--version]"
 msgstr ""
 
-#: ../functions/version.sh:27
-msgid "You should have received a copy of the GNU General Public License"
+#: ../functions/help.sh:34
+msgid "Report bugs to Debian Live project <http://live.debian.net/>."
 msgstr ""
 
-#: ../functions/version.sh:28
-msgid "along with this program. If not, see <http://www.gnu.org/licenses/>."
+#: ../functions/exit.sh:23
+msgid "Begin unmounting filesystems..."
 msgstr ""
 
-#: ../functions/version.sh:30
-msgid "On Debian systems, the complete text of the GNU General Public License"
+#: ../functions/exit.sh:43
+msgid "Saving caches..."
 msgstr ""
 
-#: ../functions/version.sh:31
-msgid "can be found in /usr/share/common-licenses/GPL-3 file."
+#: ../functions/exit.sh:61
+msgid "Setting up cleanup function"
 msgstr ""
 
-#: ../functions/version.sh:33
-msgid "Homepage: <http://debian-live.alioth.debian.org/>"
+#: ../functions/stagefile.sh:22
+msgid "skipping %s, already done"
 msgstr ""
 
-#: ../functions/usage.sh:14 ../functions/help.sh:14
-msgid "Usage:"
+#: ../functions/stagefile.sh:26
+msgid "forcing %s"
 msgstr ""
 
-#: ../functions/usage.sh:27
-msgid "Try \" %s--help\" for more information."
+#: ../functions/stagefile.sh:64
+msgid "%s: %s missing"
 msgstr ""
 
-#: ../functions/conffile.sh:36
-msgid "Reading configuration file %s"
+#: ../functions/stagefile.sh:66
+msgid "%s: one of %s is missing"
 msgstr ""
 
-#: ../functions/conffile.sh:39
-msgid "Failed to read configuration file %s"
+#: ../functions/breakpoints.sh:17
+msgid "Waiting at %s"
 msgstr ""
 
-#: ../functions/help.sh:12
-msgid "%s - %s"
+#: ../functions/version.sh:13
+msgid "%s, version %s"
 msgstr ""
 
-#: ../functions/help.sh:22
-msgid "  %s [-h|--help]"
+#: ../functions/version.sh:14
+msgid "This program is a part of %s"
 msgstr ""
 
-#: ../functions/help.sh:23
-msgid "  %s [-u|--usage]"
+#: ../functions/version.sh:16
+msgid "Copyright (C) 2006-2012 Daniel Baumann <daniel at debian.org>"
 msgstr ""
 
-#: ../functions/help.sh:24
-msgid "  %s [-v|--version]"
+#: ../functions/version.sh:18
+msgid "This program is free software: you can redistribute it and/or modify"
 msgstr ""
 
-#: ../functions/help.sh:33
-msgid ""
-"Report bugs to Debian Live project <http://debian-live.alioth.debian.org/>."
+#: ../functions/version.sh:19
+msgid "it under the terms of the GNU General Public License as published by"
 msgstr ""
 
-#: ../functions/chroot.sh:16
-msgid "Executing: %s"
+#: ../functions/version.sh:20
+msgid "the Free Software Foundation, either version 3 of the License, or"
 msgstr ""
 
-#: ../functions/packages.sh:23
-msgid "You need to install %s on your host system."
+#: ../functions/version.sh:21
+msgid "(at your option) any later version."
 msgstr ""
 
-#: ../functions/exit.sh:20
-msgid "Begin unmounting filesystems..."
+#: ../functions/version.sh:23
+msgid "This program is distributed in the hope that it will be useful,"
 msgstr ""
 
-#: ../functions/exit.sh:29
-msgid "Setting up cleanup function"
+#: ../functions/version.sh:24
+msgid "but WITHOUT ANY WARRANTY; without even the implied warranty of"
 msgstr ""
 
-#: ../functions/stagefile.sh:21
-msgid "skipping %s"
+#: ../functions/version.sh:25
+msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
 msgstr ""
 
-#: ../functions/stagefile.sh:25
-msgid "forcing %s"
+#: ../functions/version.sh:26
+msgid "GNU General Public License for more details."
 msgstr ""
 
-#: ../functions/stagefile.sh:63
-msgid "%s: %s missing"
+#: ../functions/version.sh:28
+msgid "You should have received a copy of the GNU General Public License"
 msgstr ""
 
-#: ../functions/stagefile.sh:65
-msgid "%s: one of %s is missing"
+#: ../functions/version.sh:29
+msgid "along with this program. If not, see <http://www.gnu.org/licenses/>."
 msgstr ""
 
-#: ../functions/architecture.sh:26
-msgid "skipping %s, foreign architecture."
+#: ../functions/version.sh:31
+msgid "The complete text of the GNU General Public License"
 msgstr ""
 
-#: ../functions/breakpoints.sh:16
-msgid "Waiting at %s"
+#: ../functions/version.sh:32
+msgid "can be found in /usr/share/common-licenses/GPL-3 file."
 msgstr ""
 
-#: ../functions/losetup.sh:24
-msgid "Mounting %s with offset 0"
+#: ../functions/version.sh:34
+msgid "Homepage: <http://live.debian.net/>"
 msgstr ""
 
-#: ../functions/losetup.sh:31
-msgid "Mounting %s with offset %s"
+#: ../functions/templates.sh:22
+msgid "%s templates not accessible in %s nor config/templates"
 msgstr ""
 
-#: ../functions/defaults.sh:97
+#: ../functions/defaults.sh:166
 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
+#: ../functions/defaults.sh:256
 msgid "Can't process file /sbin/fdisk"
 msgstr ""
 
-#: ../functions/defaults.sh:175
+#: ../functions/defaults.sh:272
 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
+#: ../functions/defaults.sh:985
 msgid ""
 "You have placed some preseeding files into config/binary_debian-installer "
 "but you didn't specify the default preseeding file through "
@@ -1038,55 +1006,89 @@ msgid ""
 "take up a preseeding file by default."
 msgstr ""
 
-#: ../functions/defaults.sh:769
+#: ../functions/defaults.sh:1234
+msgid "Aborting build, please get a new version of live-build."
+msgstr ""
+
+#: ../functions/defaults.sh:1240
+msgid "Aborting build, please repopulate the config tree."
+msgstr ""
+
+#: ../functions/defaults.sh:1244
 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)."
+"This config tree does not specify a format version or has an unknown version "
+"number."
 msgstr ""
 
-#: ../functions/defaults.sh:775
+#: ../functions/defaults.sh:1245
 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)."
+"Continuing build, but it could lead to errors or different results. Please "
+"repopulate the config tree."
 msgstr ""
 
-#: ../functions/defaults.sh:785
-msgid "You selected LB_PACKAGES_LISTS='%s' and LB_APT='aptitude'"
+#: ../functions/defaults.sh:1254
+msgid "You selected LB_PACKAGE_LISTS='%s' and LB_APT='aptitude'"
 msgstr ""
 
-#: ../functions/defaults.sh:794
+#: ../functions/defaults.sh:1263
 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 "
+"You have selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
+"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
+"cached. This configuration is potentially unsafe as the bootstrap packages "
 "are re-used when integrating the Debian Installer."
 msgstr ""
 
-#: ../functions/defaults.sh:805
+#: ../functions/defaults.sh:1274
 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
+#: ../functions/defaults.sh:1284
 msgid ""
 "You have selected a combination of bootloader and image type that is "
-"currently not supported by live-helper. Please use either another bootloader "
+"currently not supported by live-build. Please use either another bootloader "
 "or a different image type."
 msgstr ""
 
-#: ../functions/templates.sh:21
-msgid "templates not accessible in %s nor config/templates"
+#: ../functions/defaults.sh:1293
+msgid ""
+"You have specified a value of LB_ISO_APPLICATION that is too long; the "
+"maximum length is 128 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1298
+msgid ""
+"You have specified a value of LB_ISO_PREPARER that is too long; the maximum "
+"length is 128 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1303
+msgid ""
+"You have specified a value of LB_ISO_PUBLISHER that is too long; the maximum "
+"length is 128 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1308
+msgid ""
+"You have specified a value of LB_ISO_VOLUME that is too long; the maximum "
+"length is 32 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1315
+msgid ""
+"You have selected hook to minimise image size but you are still including "
+"package indices with your value of LB_APT_INDICES."
+msgstr ""
+
+#: ../functions/usage.sh:28
+msgid "Try \"%s --help\" for more information."
+msgstr ""
+
+#: ../functions/packages.sh:24
+msgid "You need to install %s on your host system."
 msgstr ""
 
-#: ../functions/templates.sh:30
-msgid "%s templates not accessible in %s"
+#: ../functions/architectures.sh:45
+msgid "skipping %s, foreign architecture(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
index fdf1b98..ff92404 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,979 +7,899 @@ 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"
+"POT-Creation-Date: 2012-06-05 20:32+0200\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"
+"Language: \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"
+#: ../scripts/build/lb_chroot_apt:17
+msgid "manage /etc/apt/apt.conf"
+msgstr "configura o arquivo /etc/apt/apt.conf"
 
-#: ../helpers/lh:41
-msgid "no such helper"
-msgstr "helper não encontrado"
+#: ../scripts/build/lb_chroot_apt:32
+msgid "Configuring file /etc/apt/apt.conf"
+msgstr "Configurando o arquivo /etc/apt/apt.conf"
 
-#: ../helpers/lh_binary:16
-msgid "build binary images"
-msgstr "constrói imagens binárias"
+#: ../scripts/build/lb_chroot_apt:229
+msgid "Deconfiguring file /etc/apt/apt.conf"
+msgstr "Desconfigurando o arquivo /etc/apt/apt.conf"
 
-#: ../helpers/lh_binary_chroot:16
-msgid "copy chroot into chroot"
-msgstr "copia o chroot dentro de chroot"
+#: ../scripts/build/lb_chroot_package-lists:17
+#, fuzzy
+msgid "queue install of package lists into chroot"
+msgstr "pôe na fila as listas de pacotes a serem instalados no chroot"
 
-#: ../helpers/lh_binary_chroot:26
-msgid "Begin copying chroot..."
-msgstr "Iniciando cópia do chroot..."
+#: ../scripts/build/lb_binary_net:17
+msgid "build netboot binary image"
+msgstr "constrói imagem de rede (netboot) binária"
 
-#: ../helpers/lh_binary_chroot:80 ../helpers/lh_source_tar:37
-msgid "This may take a while."
-msgstr "Isto pode levar algum tempo."
+#: ../scripts/build/lb_binary_net:37
+msgid "Begin building binary netboot image..."
+msgstr "Iniciando a construção da imagem binária netboot..."
 
-#: ../helpers/lh_binary_chroot:100
-msgid "Excluded path does not exist: %s"
-msgstr "Caminho excluído não existe: %s"
+#: ../scripts/build/lb_binary_net:98
+msgid "Invalid default kernel flavour for sparc \"%s\""
+msgstr "Kernel 'flavour' padrão inválido para sparc \"%s\""
 
-#: ../helpers/lh_binary_debian-installer:16
-msgid "install debian-installer into binary"
-msgstr "instala o debian-installer dentro do binário"
+#: ../scripts/build/lb_chroot_local-patches:17
+msgid "apply local patches against chroot"
+msgstr "aplica patches locais no chroot"
 
-#: ../helpers/lh_binary_debian-installer:46
-msgid "debian-installer flavour %s not supported."
-msgstr "debian-installer 'flavour' %s não suportado."
+#: ../scripts/build/lb_chroot_local-patches:27
+msgid "Begin applying chroot local patches..."
+msgstr "Iniciando aplicação de patches locais do chroot..."
 
-#: ../helpers/lh_binary_debian-installer:51
-msgid "Begin installing debian-installer..."
-msgstr "Iniciando instalação do debian-installer..."
+#: ../scripts/build/lb_chroot_local-patches:54
+msgid "Applying patch %s..."
+msgstr "Aplicando patch %s..."
 
-#: ../helpers/lh_binary_debian-installer:214
-msgid "Could not download file: %s"
-msgstr "Não foi possível fazer download do arquivo: %s"
+#: ../scripts/build/lb_chroot_preseed:17
+msgid "execute local preseed in chroot"
+msgstr "executa preseed local no chroot"
 
-#: ../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."
+#: ../scripts/build/lb_chroot_preseed:27
+msgid "Begin executing local preseeds..."
+msgstr "Iniciando execução das preseeds locais..."
 
-#: ../helpers/lh_binary_debian-installer:466
-msgid "Could not find cache/packages_bootstrap."
-msgstr "Não encontrei cache/packages_bootstrap."
+#: ../scripts/build/lb_chroot_archives:17
+msgid "manage /etc/apt/sources.list"
+msgstr "gerencia /etc/apt/sources.list"
 
-#: ../helpers/lh_binary_debian-installer:467
+#: ../scripts/build/lb_chroot_archives:47
+msgid "Configuring file /etc/apt/sources.list"
+msgstr "Configurando o arquivo /etc/apt/sources.list"
+
+#: ../scripts/build/lb_chroot_archives:375
+msgid "GPG exited with error status %s"
+msgstr "GPG saiu com estado de erro %s"
+
+#: ../scripts/build/lb_chroot_archives:423
+#, sh-format
 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."
+"Local packages must be named with suffix '_all.deb' or '_$architecture.deb'."
 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."
+"Pacotes locais devem ser nomeados com o sufixo '_all.deb' ou _$arquitetura."
+"deb'."
 
-#: ../helpers/lh_binary_disk:16
-msgid "install disk information into binary"
-msgstr "Iniciando a instalação da informação do disco no binário..."
+#: ../scripts/build/lb_chroot_archives:570
+msgid "Deconfiguring file /etc/apt/sources.list"
+msgstr "Desconfigurando o arquivo /etc/apt/sources.list"
 
-#: ../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..."
+#: ../scripts/build/lb_chroot_upstart:17
+#, fuzzy
+msgid "manage /sbin/initctl"
+msgstr "gerencia /sbin/dpkg"
 
-#: ../helpers/lh_binary_encryption:16
-msgid "encrypts rootfs"
-msgstr "encripta o rootfs"
+#: ../scripts/build/lb_chroot_upstart:32
+#, fuzzy
+msgid "Configuring file /sbin/initctl"
+msgstr "Configurando o arquivo /bin/hostname"
 
-#: ../helpers/lh_binary_encryption:33
-msgid "Encryption type %s not supported."
-msgstr "Encriptação do tipo %s não é suportada."
+#: ../scripts/build/lb_chroot_upstart:63
+#, fuzzy
+msgid "Deconfiguring file /sbin/initctl"
+msgstr "Desconfigurando o arquivo /bin/hostname"
 
-#: ../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."
+#: ../scripts/build/lb_binary_hooks:17
+#, fuzzy
+msgid "execute hooks in binary"
+msgstr "executa hooks locais no binário"
 
-#: ../helpers/lh_binary_encryption:48
-msgid "Begin encrypting root filesystem image..."
-msgstr "Iniciando encriptação do sistema de arquivo raiz na imagem..."
+#: ../scripts/build/lb_binary_hooks:27 ../scripts/build/lb_chroot_hooks:27
+msgid "Begin executing hooks..."
+msgstr "Iniciando a execução dos hooks..."
 
-#: ../helpers/lh_binary_encryption:81
-msgid "Encrypting binary/%s/filesystem.%s with %s..."
-msgstr "Encriptando binary/%s/filesystem.%s com %s..."
+#: ../scripts/build/lb_chroot_interactive:17
+msgid "make build interactive"
+msgstr "faz a construção ser interativa"
 
-#: ../helpers/lh_binary_encryption:93
-msgid " ** Configuring encrypted filesystem **"
-msgstr " ** Configurando sistemas de arquivos encriptado **"
+#: ../scripts/build/lb_chroot_interactive:32
+msgid "Begin interactive build..."
+msgstr "Iniciando construção interativa..."
 
-#: ../helpers/lh_binary_encryption:95
-msgid " (Passwords must be at least 20 characters long)"
-msgstr " (Senhas devem conter ao menos 20 caracteres)"
+#: ../scripts/build/lb_chroot_interactive:48
+msgid "Pausing build: starting interactive shell..."
+msgstr "Pausando construção: iniciando shell interativo..."
 
-#: ../helpers/lh_binary_grub:16
-msgid "installs grub into binary"
-msgstr "instala grub no binário"
+#: ../scripts/build/lb_chroot_interactive:52
+msgid "Pausing build: starting interactive X11..."
+msgstr "Pausando construção: iniciando modo gráfico (X11) interativo..."
 
-#: ../helpers/lh_binary_grub:31
-msgid "Begin installing grub..."
-msgstr "Iniciando instalação do grub..."
+#: ../scripts/build/lb_chroot_interactive:56
+msgid "Pausing build: starting interactive Xnest..."
+msgstr "Pausando construção: iniciando Xnest interativo..."
 
-#: ../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"
+#: ../scripts/build/lb_source_debian:17
+msgid "debian sources"
+msgstr "fontes debian"
 
-#: ../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)."
+#: ../scripts/build/lb_source_debian:32
+msgid "Begin downloading sources..."
+msgstr "Início do download das fontes..."
 
-#: ../helpers/lh_binary_grub:177
-msgid "Net cow not yet supported on grub"
-msgstr "Net cow ainda não é suportado no grub"
+#: ../scripts/build/lb_binary_disk:17
+msgid "install disk information into binary"
+msgstr "Iniciando a instalação da informação do disco no binário..."
 
-#: ../helpers/lh_binary_includes:16 ../helpers/lh_binary_local-includes:16
-msgid "copy files into binary"
-msgstr "copia arquivos dentro do binário"
+#: ../scripts/build/lb_binary_disk:35 ../scripts/build/lb_source_disk:36
+msgid "Begin installing disk information..."
+msgstr "Iniciando a instalação da informação do disco..."
 
-#: ../helpers/lh_binary_includes:31
-msgid "Begin copying binary includes..."
-msgstr "Início da cópia dos 'includes' locais..."
+#: ../scripts/build/lb_bootstrap_cdebootstrap:17
+msgid "bootstrap a Debian system with cdebootstrap(1)"
+msgstr "realiza o bootstrap no sistema Debian com cdebootstrap(1)"
 
-#: ../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"
+#: ../scripts/build/lb_bootstrap_cdebootstrap:35
+#: ../scripts/build/lb_bootstrap_debootstrap:35
+#: ../scripts/build/lb_bootstrap_copy:35
+msgid "Begin bootstrapping system..."
+msgstr "Iniciando bootstrap no sistema..."
 
-#: ../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."
+#: ../scripts/build/lb_chroot_linux-image:17
+msgid "schedule kernel packages for installation"
+msgstr ""
 
-#: ../helpers/lh_binary_iso:16
-msgid "build iso binary image"
-msgstr "constrói a imagem iso binária"
+#: ../scripts/build/lb:17
+msgid "utility to build Debian Live systems"
+msgstr "utilitário para construir sistemas Debian Live"
 
-#: ../helpers/lh_binary_iso:31
-msgid "Begin building binary iso image..."
-msgstr "Iniciando a construção da imagem iso binária..."
+#: ../scripts/build/lb:62
+#, fuzzy
+msgid "no such script"
+msgstr "helper não encontrado"
 
-#: ../helpers/lh_binary_iso:121
-msgid "Bootloader on your architecture not yet supported by live-helper."
+#: ../scripts/build/lb:66
+msgid "[%s] %s"
 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)."
+#: ../scripts/build/lb_chroot_live-packages:17
+msgid "schedule live packages for installation"
 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"
+#: ../scripts/build/lb_source:19 ../scripts/build/lb_build:19
+#: ../scripts/build/lb_bootstrap:19 ../scripts/build/lb_chroot:19
+#: ../scripts/build/lb_binary:19
+msgid "Automatically populating config tree."
+msgstr ""
 
-#: ../helpers/lh_binary_linux-image:26
-msgid "Begin install linux-image..."
-msgstr "Iniciando instalação do linux-image..."
+#: ../scripts/build/lb_source:24
+msgid "build source images"
+msgstr "constrói imagens fonte"
 
-#: ../helpers/lh_binary_local-hooks:16
-msgid "execute local hooks in binary"
-msgstr "executa hooks locais no binário"
+#: ../scripts/build/lb_chroot_hosts:17
+msgid "manage /etc/hosts"
+msgstr "gerencia /etc/hosts"
 
-#: ../helpers/lh_binary_local-hooks:26 ../helpers/lh_chroot_local-hooks:26
-msgid "Begin executing local hooks..."
-msgstr "Iniciando execução de hooks locais..."
+#: ../scripts/build/lb_chroot_hosts:32
+msgid "Configuring file /etc/hosts"
+msgstr "Configurando o arquivo /etc/hosts"
 
-#: ../helpers/lh_binary_local-includes:26
-msgid "Begin copying binary local includes..."
-msgstr "Iniciando cópia dos 'includes' locais binários..."
+#: ../scripts/build/lb_chroot_hosts:68
+msgid "Deconfiguring file /etc/hosts"
+msgstr "Desconfigurando o arquivo /etc/hosts"
 
-#: ../helpers/lh_binary_local-packageslists:16
-msgid "install local packages into binary"
-msgstr "instala pacotes locais dentro do binário"
+#: ../scripts/build/lb_binary_grub2:17
+#, fuzzy
+msgid "installs grub2 into binary"
+msgstr "instala grub no binário"
 
-#: ../helpers/lh_binary_local-packageslists:26
-msgid "Begin installing local packages lists..."
-msgstr "Iniciando instalação das listas de pacotes locais..."
+#: ../scripts/build/lb_binary_grub2:32
+#, fuzzy
+msgid "Begin installing grub2..."
+msgstr "Iniciando instalação do grub..."
 
-#: ../helpers/lh_binary_manifest:16
-msgid "create manifest"
-msgstr "cria manifesto"
+#: ../scripts/build/lb_binary_grub2:129 ../scripts/build/lb_binary_grub:155
+#, fuzzy
+msgid "Bootloader in this image type not yet supported by live-build."
+msgstr ""
+"O carregador de boot nesta imagem não é ainda suportado pelo live-helper"
 
-#: ../helpers/lh_binary_manifest:26
-msgid "Begin creating manifest..."
-msgstr "Iniciando a criação do manifesto..."
+#: ../scripts/build/lb_binary_grub2:130 ../scripts/build/lb_binary_grub:156
+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_md5sum:16
-msgid "create binary md5sums"
-msgstr "cria md5sum.txt do binário"
+#: ../scripts/build/lb_binary_grub2:148 ../scripts/build/lb_binary_grub:174
+msgid "Net cow not yet supported on grub"
+msgstr "Net cow ainda não é suportado no grub"
 
-#: ../helpers/lh_binary_md5sum:31
-msgid "Begin creating binary md5sum.txt..."
-msgstr "Iniciando a criação do md5sum.txt do binário..."
+#: ../scripts/build/lb_chroot_task-lists:17
+#, fuzzy
+msgid "install task lists into chroot"
+msgstr "instala as tasks dentro do chroot"
 
-#: ../helpers/lh_binary_memtest:16
-msgid "installs a memtest into binary"
-msgstr "instala um teste de memória dentro do binário"
+#: ../scripts/build/lb_source_hdd:17 ../scripts/build/lb_source_virtual-hdd:17
+msgid "build source image"
+msgstr "constrói imagem fonte"
 
-#: ../helpers/lh_binary_memtest:31
-msgid "Begin installing memtest..."
-msgstr "Iniciando a instalação do memtest..."
+#: ../scripts/build/lb_source_hdd:37
+#, fuzzy
+msgid "Begin building source hdd image..."
+msgstr "Iniciando construção da imagem fonte usb-hdd..."
 
-#: ../helpers/lh_binary_memtest:47
-msgid "skipping binary_memtest, foreign architecture."
-msgstr "pulando teste de memória, arquitetura estranha."
+#: ../scripts/build/lb_source_hdd:87 ../scripts/build/lb_binary_hdd:140
+msgid "Unsupported binary filesystem %s"
+msgstr "Sistema de arquivos binário %s não suportado"
 
-#: ../helpers/lh_binary_net:16
-msgid "build netboot binary image"
-msgstr "constrói imagem de rede (netboot) binária"
+#: ../scripts/build/lb_source_hdd:92
+msgid "!!! The following error/warning messages can be ignored !!!"
+msgstr "!!! As seguintes mensagens de erro/aviso não podem ser ignoradas !!!"
 
-#: ../helpers/lh_binary_net:36
-msgid "Begin building binary netboot image..."
-msgstr "Iniciando a construção da imagem binária netboot..."
+#: ../scripts/build/lb_source_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_binary_net:93
-msgid "Invalid default kernel flavour for sparc \"%s\""
-msgstr "Kernel 'flavour' padrão inválido para sparc \"%s\""
+#: ../scripts/build/lb_binary_grub:17
+msgid "installs grub into binary"
+msgstr "instala grub no binário"
+
+#: ../scripts/build/lb_binary_grub:32
+msgid "Begin installing grub..."
+msgstr "Iniciando instalação do grub..."
+
+#: ../scripts/build/lb_binary_local-includes:17
+#: ../scripts/build/lb_binary_includes:17
+msgid "copy files into binary"
+msgstr "copia arquivos dentro do binário"
 
-#: ../helpers/lh_binary_rootfs:16
+#: ../scripts/build/lb_binary_local-includes:27
+msgid "Begin copying binary local includes..."
+msgstr "Iniciando cópia dos 'includes' locais binários..."
+
+#: ../scripts/build/lb_binary_win32-loader:17
+#, fuzzy
+msgid "copy win32-loader into binary"
+msgstr "copia arquivos dentro do binário"
+
+#: ../scripts/build/lb_binary_win32-loader:32
+#, fuzzy
+msgid "Begin copying win32-loader..."
+msgstr "Início da cópia dos 'includes' locais..."
+
+#: ../scripts/build/lb_binary_win32-loader:98
+#, fuzzy
+msgid ""
+"win32-loader inclusion is set to true but not compatible with your "
+"architecture, ignoring."
+msgstr ""
+"a inclusão do win32-loader está ativada, mas ele não foi encontrado, "
+"ignorando."
+
+#: ../scripts/build/lb_binary_rootfs:17
 msgid "build rootfs image"
 msgstr "constrói imagem rootfs"
 
-#: ../helpers/lh_binary_rootfs:26
+#: ../scripts/build/lb_binary_rootfs:27
 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."
+#: ../scripts/build/lb_binary_rootfs:326
+msgid "Preparing squashfs image..."
 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."
+#: ../scripts/build/lb_binary_rootfs:327 ../scripts/build/lb_binary_rootfs:475
+#: ../scripts/build/lb_binary_chroot:81 ../scripts/build/lb_source_tar:38
+msgid "This may take a while."
+msgstr "Isto pode levar algum tempo."
 
-#: ../helpers/lh_binary_silo:16
-msgid "installs silo into binary"
-msgstr "instala silo no binário"
+#: ../scripts/build/lb_binary_iso:17
+msgid "build iso binary image"
+msgstr "constrói a imagem iso binária"
 
-#: ../helpers/lh_binary_silo:42
-msgid "Begin installing silo..."
-msgstr "Iniciando a instalação do silo..."
+#: ../scripts/build/lb_binary_iso:41
+msgid "Begin building binary iso image..."
+msgstr "Iniciando a construção da imagem iso binária..."
 
-#: ../helpers/lh_binary_silo:172
-msgid "Net cow not supported on silo"
-msgstr "Net cow não é suportado no silo"
+#: ../scripts/build/lb_binary_iso:151
+#, fuzzy
+msgid "Bootloader on your architecture not yet supported by live-build."
+msgstr ""
+"O carregador de boot na sua arquitetura ainda não é suportado pelo live-"
+"helper."
 
-#: ../helpers/lh_binary_syslinux:16
-msgid "installs syslinux into binary"
-msgstr "instala syslinux no binário"
+#: ../scripts/build/lb_binary_iso:152
+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_syslinux:31
-msgid "Begin installing syslinux..."
-msgstr "Iniciando instalação do syslinux..."
+#: ../scripts/build/lb_testroot:17
+msgid "ensure that a system is built as root"
+msgstr "certifique-se de que o sistema é construído como super-usuário"
 
-#: ../helpers/lh_binary_syslinux:250
-msgid "%s doen't exist"
-msgstr "%s não existe"
+#: ../scripts/build/lb_testroot:30
+msgid "need root privileges"
+msgstr "necessita de priviĺégios de super-usuário"
+
+#: ../scripts/build/lb_chroot_includes:17
+#, fuzzy
+msgid "copy files into chroot"
+msgstr "copia arquivos locais no chroot"
 
-#: ../helpers/lh_binary_syslinux:453 ../helpers/lh_binary_syslinux:477
-msgid "Unsupported net filesystem"
-msgstr "Sistema de arquivos de rede não suportado"
+#: ../scripts/build/lb_chroot_includes:27
+#, fuzzy
+msgid "Begin copying chroot includes..."
+msgstr "Iniciando cópia dos arquivos (includes) locais do chroot..."
 
-#: ../helpers/lh_binary_tar:16
+#: ../scripts/build/lb_binary_tar:17
 msgid "build harddisk binary image"
 msgstr "constrói imagem harddisk binária"
 
-#: ../helpers/lh_binary_tar:31
+#: ../scripts/build/lb_binary_tar:32
 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..."
+#: ../scripts/build/lb_binary_syslinux:17
+msgid "installs syslinux into binary"
+msgstr "instala syslinux no binário"
 
-#: ../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)"
+#: ../scripts/build/lb_binary_syslinux:32
+msgid "Begin installing syslinux..."
+msgstr "Iniciando instalação do syslinux..."
 
-#: ../helpers/lh_binary_usb-hdd:89
-msgid ""
-"FAT16 doesn't support files larger than 2GB, automatically enforcing FAT32."
+#: ../scripts/build/lb_binary_syslinux:108
+msgid "/usr/bin/syslinux - no such file."
 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"
+#: ../scripts/build/lb_binary_syslinux:115
+msgid "/usr/lib/syslinux - no such directory"
 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)"
+#: ../scripts/build/lb_chroot_dpkg:17
+msgid "manage /sbin/dpkg"
+msgstr "gerencia /sbin/dpkg"
 
-#: ../helpers/lh_bootstrap_debootstrap:117
-msgid "Running debootstrap (download-only)... "
-msgstr "Executando debootstrap (download-only)..."
+#: ../scripts/build/lb_chroot_dpkg:32
+msgid "Configuring file /sbin/start-stop-daemon"
+msgstr "Configurando o arquivo /sbin/start-stop-daemon"
 
-#: ../helpers/lh_bootstrap_debootstrap:137
-msgid "Running debootstrap... "
-msgstr "Executando debootstrap..."
+#: ../scripts/build/lb_chroot_dpkg:82
+msgid "Deconfiguring file /sbin/start-stop-daemon"
+msgstr "Desconfigurando o arquivo /sbin/start-stop-daemon"
 
-#: ../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)"
+#: ../scripts/build/lb_build:26
+msgid "Executing auto/build script."
+msgstr ""
 
-#: ../helpers/lh_build:27
+#: ../scripts/build/lb_build:37
 msgid "build a Debian Live system"
 msgstr "constrói um sistema Debian Live"
 
-#: ../helpers/lh_build:35
+#: ../scripts/build/lb_build:45
 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
+#: ../scripts/build/lb_build:50
 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
+#: ../scripts/build/lb_build:56
 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"
+#: ../scripts/build/lb_chroot_hooks:17
+msgid "execute hooks in chroot"
+msgstr "executa hooks in chroot"
 
-#: ../helpers/lh_chroot_apt:16
-msgid "manage /etc/apt/apt.conf"
-msgstr "configura o arquivo /etc/apt/apt.conf"
+#: ../scripts/build/lb_source_checksums:17
+#, fuzzy
+msgid "create source checksums"
+msgstr "cria md5sum.txt da fonte"
 
-#: ../helpers/lh_chroot_apt:31
-msgid "Configuring file /etc/apt/apt.conf"
-msgstr "Configurando o arquivo /etc/apt/apt.conf"
+#: ../scripts/build/lb_chroot_resolv:17
+msgid "manage /etc/resolv.conf"
+msgstr "gerencia /etc/resolv.conf"
 
-#: ../helpers/lh_chroot_apt:156
-msgid "Deconfiguring file /etc/apt/apt.conf"
-msgstr "Desconfigurando o arquivo /etc/apt/apt.conf"
+#: ../scripts/build/lb_chroot_resolv:32
+msgid "Configuring file /etc/resolv.conf"
+msgstr "Configurando arquivo /etc/resolv.conf"
 
-#: ../helpers/lh_chroot_cache:16
-msgid "cache chroot stage"
-msgstr "inicia cache do chroot..."
+#: ../scripts/build/lb_chroot_resolv:71
+msgid "Deconfiguring file /etc/resolv.conf"
+msgstr "Desconfigurando o arquivo /etc/resolv.conf"
 
-#: ../helpers/lh_chroot_cache:26
-msgid "Begin caching chroot stage..."
-msgstr "Iniciando o cache do chroot..."
+#: ../scripts/build/lb_config:19
+msgid "Executing auto/config script."
+msgstr ""
 
-#: ../helpers/lh_chroot_debianchroot:16
-msgid "manage /etc/debian_chroot"
-msgstr "configura o arquivo /etc/debian_chroot"
+#: ../scripts/build/lb_config:31
+#, fuzzy
+msgid "create configuration for live-build(7)"
+msgstr "cria configuração para o live-helper(7)"
 
-#: ../helpers/lh_chroot_debianchroot:31
-msgid "Configuring file /etc/debian_chroot"
-msgstr "Configurando o arquivo /etc/debian_chroot"
+#: ../scripts/build/lb_config:185 ../functions/arguments.sh:17
+msgid "terminating"
+msgstr "finalizando"
 
-#: ../helpers/lh_chroot_debianchroot:56
-msgid "Deconfiguring file /etc/debian_chroot"
-msgstr "Desconfigurando o arquivo /etc/debian_chroot"
+#: ../scripts/build/lb_config:201
+#, fuzzy
+msgid "%s: This is live-build version %s"
+msgstr "%s: Esta é o live-helper versão %s"
 
-#: ../helpers/lh_chroot_devpts:16
-msgid "mount /dev/pts"
-msgstr "monta /dev/pts..."
+#: ../scripts/build/lb_config:876 ../functions/arguments.sh:77
+msgid "internal error %s"
+msgstr "erro interno %s"
 
-#: ../helpers/lh_chroot_devpts:34
-msgid "Begin mounting /dev/pts..."
-msgstr "Montando /dev/pts..."
+#: ../scripts/build/lb_config:886
+msgid "Considering defaults defined in %s"
+msgstr "Considerando valores padrão definidos em %s"
 
-#: ../helpers/lh_chroot_devpts:59
-msgid "Begin unmounting /dev/pts..."
-msgstr "Desmontando /dev/pts..."
+#: ../scripts/build/lb_config:1465
+msgid "Please install 'debconf-utils' in order to use this feature."
+msgstr "Por favor instale 'debconf-utils' para poder usar essa funcionalidade."
 
-#: ../helpers/lh_chroot_dpkg:16
-msgid "manage /sbin/dpkg"
-msgstr "gerencia /sbin/dpkg"
+#: ../scripts/build/lb_binary_includes:32
+msgid "Begin copying binary includes..."
+msgstr "Início da cópia dos 'includes' locais..."
 
-#: ../helpers/lh_chroot_dpkg:31
-msgid "Configuring file /sbin/start-stop-daemon"
-msgstr "Configurando o arquivo /sbin/start-stop-daemon"
+#: ../scripts/build/lb_binary_includes:53
+msgid "user specified includes not accessible in %s"
+msgstr "'includes' específicos do usuário não acessível em %s"
 
-#: ../helpers/lh_chroot_dpkg:60
-msgid "Deconfiguring file /sbin/start-stop-daemon"
-msgstr "Desconfigurando o arquivo /sbin/start-stop-daemon"
+#: ../scripts/build/lb_bootstrap:24
+msgid "bootstrap a Debian system"
+msgstr "'bootstrap' um sistema Debian"
 
-#: ../helpers/lh_chroot_hacks:16
-msgid "execute hacks in chroot"
-msgstr "executa hacks no chroot"
+#: ../scripts/build/lb_binary_yaboot:17
+msgid "installs yaboot into binary"
+msgstr "instala yaboot no binário"
 
-#: ../helpers/lh_chroot_hacks:26
-msgid "Begin executing hacks..."
-msgstr "Iniciando a execução dos hacks..."
+#: ../scripts/build/lb_binary_yaboot:32
+msgid "Begin installing yaboot..."
+msgstr "Iniciando instalação do yaboot..."
 
-#: ../helpers/lh_chroot_hooks:16
-msgid "execute hooks in chroot"
-msgstr "executa hooks in chroot"
+#: ../scripts/build/lb_binary_yaboot:162
+msgid "not yet supported, aborting (FIXME)."
+msgstr "ainda não suportado, abortando (FIXME)."
 
-#: ../helpers/lh_chroot_hooks:26
-msgid "Begin executing hooks..."
-msgstr "Iniciando a execução dos hooks..."
+#: ../scripts/build/lb_binary_yaboot:180
+msgid "Net cow not yet supported on yaboot"
+msgstr "Net cow não é suportada pelo yaboot"
+
+#: ../scripts/build/lb_chroot_sysv-rc:17
+msgid "manage /usr/sbin/policy-rc.d"
+msgstr "gerencia /usr/sbin/policy-rc.d"
 
-#: ../helpers/lh_chroot_hostname:16
+#: ../scripts/build/lb_chroot_sysv-rc:32
+msgid "Configuring file /usr/sbin/policy-rc.d"
+msgstr "Configurando o arquivo /usr/sbin/policy-rc.d"
+
+#: ../scripts/build/lb_chroot_sysv-rc:63
+msgid "Deconfiguring file /usr/sbin/policy-rc.d"
+msgstr "Desconfigurando o arquivo /usr/sbin/policy-rc.d"
+
+#: ../scripts/build/lb_binary_package-lists:17
+msgid "install local packages into binary"
+msgstr "instala pacotes locais dentro do binário"
+
+#: ../scripts/build/lb_binary_package-lists:27
+#, fuzzy
+msgid "Begin installing local package lists..."
+msgstr "Iniciando instalação das listas de pacotes locais..."
+
+#: ../scripts/build/lb_chroot_proc:17
+msgid "mount /proc"
+msgstr "monta /proc"
+
+#: ../scripts/build/lb_chroot_proc:35
+msgid "Begin mounting /proc..."
+msgstr "Iniciando montagem de /proc..."
+
+#: ../scripts/build/lb_chroot_proc:63
+msgid "Begin unmounting /proc..."
+msgstr "Desmontando /proc..."
+
+#: ../scripts/build/lb_chroot_hostname:17
 msgid "manage /bin/hostname"
 msgstr "gerencia /bin/hostname"
 
-#: ../helpers/lh_chroot_hostname:31
+#: ../scripts/build/lb_chroot_hostname:32
 msgid "Configuring file /etc/hostname"
 msgstr "Configurando o arquivo /etc/hostname"
 
-#: ../helpers/lh_chroot_hostname:48
+#: ../scripts/build/lb_chroot_hostname:49
 msgid "Configuring file /bin/hostname"
 msgstr "Configurando o arquivo /bin/hostname"
 
-#: ../helpers/lh_chroot_hostname:65
+#: ../scripts/build/lb_chroot_hostname:66
 msgid "Deconfiguring file /etc/hostname"
 msgstr "Desconfigurando o arquivo /etc/hostname"
 
-#: ../helpers/lh_chroot_hostname:73
+#: ../scripts/build/lb_chroot_hostname:80
 msgid "Deconfiguring file /bin/hostname"
 msgstr "Desconfigurando o arquivo /bin/hostname"
 
-#: ../helpers/lh_chroot_hosts:16
-msgid "manage /etc/hosts"
-msgstr "gerencia /etc/hosts"
+#: ../scripts/build/lb_binary_debian-installer:17
+msgid "install debian-installer into binary"
+msgstr "instala o debian-installer dentro do binário"
 
-#: ../helpers/lh_chroot_hosts:31
-msgid "Configuring file /etc/hosts"
-msgstr "Configurando o arquivo /etc/hosts"
+#: ../scripts/build/lb_binary_debian-installer:52
+msgid "debian-installer flavour %s not supported."
+msgstr "debian-installer 'flavour' %s não suportado."
 
-#: ../helpers/lh_chroot_hosts:67
-msgid "Deconfiguring file /etc/hosts"
-msgstr "Desconfigurando o arquivo /etc/hosts"
+#: ../scripts/build/lb_binary_debian-installer:57
+msgid "Begin installing debian-installer..."
+msgstr "Iniciando instalação do debian-installer..."
 
-#: ../helpers/lh_chroot_install-packages:16
-msgid "install queued packages into chroot"
-msgstr "instala pacotes da fila dentro do chroot"
+#: ../scripts/build/lb_binary_debian-installer:234
+msgid "Could not download file: %s"
+msgstr "Não foi possível fazer download do arquivo: %s"
 
-#: ../helpers/lh_chroot_install-packages:26
-msgid "Begin installing packages..."
-msgstr "Iniciando a instalação de pacotes..."
+#: ../scripts/build/lb_binary_debian-installer:531
+#, fuzzy
+msgid "Could not find packages in cache/packages.bootstrap."
+msgstr "Não encontrei cache/packages_bootstrap."
 
-#: ../helpers/lh_chroot_interactive:16
-msgid "make build interactive"
-msgstr "faz a construção ser interativa"
+#: ../scripts/build/lb_binary_debian-installer:532
+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_chroot_interactive:31
-msgid "Begin interactive build..."
-msgstr "Iniciando construção interativa..."
+#: ../scripts/build/lb_binary_debian-installer:617
+#, fuzzy
+msgid "Downloading udebs..."
+msgstr "Início do download das fontes..."
 
-#: ../helpers/lh_chroot_interactive:47
-msgid "Pausing build: starting interactive shell..."
-msgstr "Pausando construção: iniciando shell interativo..."
+#: ../scripts/build/lb_binary_debian-installer:621
+msgid ""
+"Building in derivative mode in debian+ layout.. a lot of 404 errors are ok "
+"here."
+msgstr ""
 
-#: ../helpers/lh_chroot_interactive:51
-msgid "Pausing build: starting interactive X11..."
-msgstr "Pausando construção: iniciando modo gráfico (X11) interativo..."
+#: ../scripts/build/lb_source_virtual-hdd:37
+#, fuzzy
+msgid "Begin building source virtual-hdd image..."
+msgstr "Iniciando construção da imagem fonte usb-hdd..."
 
-#: ../helpers/lh_chroot_interactive:55
-msgid "Pausing build: starting interactive Xnest..."
-msgstr "Pausando construção: iniciando Xnest interativo..."
+#: ../scripts/build/lb_chroot_hacks:17
+msgid "execute hacks in chroot"
+msgstr "executa hacks no chroot"
 
-#: ../helpers/lh_chroot_linux-image:16
-msgid "manage /etc/kernel-img.conf"
-msgstr "gerencia /etc/kernel-img.conf"
+#: ../scripts/build/lb_chroot_hacks:27
+msgid "Begin executing hacks..."
+msgstr "Iniciando a execução dos hacks..."
 
-#: ../helpers/lh_chroot_linux-image:31
-msgid "Configuring file /etc/kernel-img.conf"
-msgstr "Configurando o arquivo /etc/kernel-img.conf"
+#: ../scripts/build/live-build:33
+#, fuzzy
+msgid "live-build 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/lh_chroot_linux-image:80
-msgid "Deconfiguring file /etc/kernel-img.conf"
-msgstr "Desconfigurando o arquivo /etc/kernel-img.conf"
+#: ../scripts/build/live-build:35
+#, fuzzy
+msgid ""
+"The idea behind live-build 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/lh_chroot_local-hooks:16
-msgid "execute local hooks in chroot"
-msgstr "executa hooks locais no chroot"
+#: ../scripts/build/live-build:37
+#, fuzzy
+msgid ""
+"An introduction to live-build can be found in the live-build(7) manpage."
+msgstr ""
+"Uma introdução ao live-helper pode ser encontrado na página de manual do "
+"live-helper(7)"
 
-#: ../helpers/lh_chroot_local-includes:16
-msgid "copy local files into chroot"
-msgstr "copia arquivos locais no chroot"
+#: ../scripts/build/lb_chroot_devpts:17
+msgid "mount /dev/pts"
+msgstr "monta /dev/pts..."
 
-#: ../helpers/lh_chroot_local-includes:26
-msgid "Begin copying chroot local includes..."
-msgstr "Iniciando cópia dos arquivos (includes) locais do chroot..."
+#: ../scripts/build/lb_chroot_devpts:35
+msgid "Begin mounting /dev/pts..."
+msgstr "Montando /dev/pts..."
 
-#: ../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"
+#: ../scripts/build/lb_chroot_devpts:60
+msgid "Begin unmounting /dev/pts..."
+msgstr "Desmontando /dev/pts..."
 
-#: ../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..."
+#: ../scripts/build/lb_binary_virtual-hdd:17 ../scripts/build/lb_binary_hdd:17
+msgid "build binary image"
+msgstr "constrói imagem binária"
 
-#: ../helpers/lh_chroot_local-patches:16
-msgid "apply local patches against chroot"
-msgstr "aplica patches locais no chroot"
+#: ../scripts/build/lb_binary_virtual-hdd:32
+#, fuzzy
+msgid "Begin building binary virtual-hdd image..."
+msgstr "Iniciando a construção da imagem binária usb-hdd..."
 
-#: ../helpers/lh_chroot_local-patches:26
-msgid "Begin applying chroot local patches..."
-msgstr "Iniciando aplicação de patches locais do chroot..."
+#: ../scripts/build/lb_binary_virtual-hdd:67
+#, fuzzy
+msgid "Creating virtual disk image..."
+msgstr "Iniciando instalação do linux-image..."
 
-#: ../helpers/lh_chroot_local-patches:53
-msgid "Applying patch %s..."
-msgstr "Aplicando patch %s..."
+#: ../scripts/build/lb_chroot:24
+msgid "customize the Debian system"
+msgstr "customiza o sistema Debian"
 
-#: ../helpers/lh_chroot_local-preseed:16
-msgid "execute local preseed in chroot"
-msgstr "executa preseed local no chroot"
+#: ../scripts/build/lb_bootstrap_debootstrap:17
+msgid "bootstrap a Debian system with debootstrap(8)"
+msgstr "realiza o bootstrap no sistema Debian com debootstrap(8)"
 
-#: ../helpers/lh_chroot_local-preseed:26
-msgid "Begin executing local preseeds..."
-msgstr "Iniciando execução das preseeds locais..."
+#: ../scripts/build/lb_bootstrap_debootstrap:126
+msgid "Running debootstrap (download-only)... "
+msgstr "Executando debootstrap (download-only)..."
 
-#: ../helpers/lh_chroot_localization:16
-msgid "install localization packages into chroot"
-msgstr "instala pacotes de localização no chroot"
+#: ../scripts/build/lb_bootstrap_debootstrap:142
+msgid "Running debootstrap... "
+msgstr "Executando debootstrap..."
 
-#: ../helpers/lh_chroot_localization:26
-msgid "Begin installing localization packages..."
-msgstr "Iniciando a instalação dos pacotes de localização..."
+#: ../scripts/build/lb_bootstrap_debootstrap:152
+msgid "Bootstrap will be foreign"
+msgstr ""
 
-#: ../helpers/lh_chroot_packages:16
-msgid "queue install of packages into chroot"
-msgstr "põe na fila os pacotes a serem instalados no chroot"
+#: ../scripts/build/lb_bootstrap_debootstrap:155
+#, fuzzy
+msgid "Running debootstrap second stage under QEMU"
+msgstr "Executando debootstrap (download-only)..."
 
-#: ../helpers/lh_chroot_packages:26
-msgid "Begin queueing installation of packages..."
-msgstr "Colocando na fila os pacotes para instalação..."
+#: ../scripts/build/lb_bootstrap_debootstrap:176
+msgid "Can't process file /usr/bin/debootstrap (FIXME)"
+msgstr "Não posso processar o arquivo /usr/bin/debootstrap (FIXME)"
 
-#: ../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"
+#: ../scripts/build/lb_binary_manifest:17
+msgid "create manifest"
+msgstr "cria manifesto"
 
-#: ../helpers/lh_chroot_packageslists:26
-msgid "Begin queueing installation of packages lists..."
-msgstr "Colocando na fila as listas de pacotes para instalação..."
+#: ../scripts/build/lb_binary_manifest:32
+msgid "Begin creating manifest..."
+msgstr "Iniciando a criação do manifesto..."
 
-#: ../helpers/lh_chroot_preseed:16
-msgid "execute preseed in chroot"
-msgstr "executa preseed no chroot"
+#: ../scripts/build/lb_source_disk:17
+msgid "install disk information into source"
+msgstr "instala informação do disco dentro da fonte"
 
-#: ../helpers/lh_chroot_preseed:26
-msgid "Begin executing preseed..."
-msgstr "Iniciando execução da preseed..."
+#: ../scripts/build/lb_chroot_tmpfs:17
+msgid "use tmpfs to speedup the build"
+msgstr ""
 
-#: ../helpers/lh_chroot_proc:16
-msgid "mount /proc"
-msgstr "monta /proc"
+#: ../scripts/build/lb_chroot_tmpfs:37
+msgid "Configuring tmpfs for /var/lib/dpkg"
+msgstr ""
 
-#: ../helpers/lh_chroot_proc:34
-msgid "Begin mounting /proc..."
-msgstr "Iniciando montagem de /proc..."
+#: ../scripts/build/lb_chroot_tmpfs:59
+msgid "Deconfiguring tmpfs for /var/lib/dpkg"
+msgstr ""
 
-#: ../helpers/lh_chroot_proc:62
-msgid "Begin unmounting /proc..."
-msgstr "Desmontando /proc..."
+#: ../scripts/build/lb_bootstrap_cache:17
+msgid "cache bootstrap stage"
+msgstr "Faz o cache do bootstrap"
 
-#: ../helpers/lh_chroot_resolv:16
-msgid "manage /etc/resolv.conf"
-msgstr "gerencia /etc/resolv.conf"
+#: ../scripts/build/lb_bootstrap_cache:36
+#, fuzzy
+msgid "Restoring bootstrap stage from cache..."
+msgstr "Iniciando cache da bootstrap..."
 
-#: ../helpers/lh_chroot_resolv:31
-msgid "Configuring file /etc/resolv.conf"
-msgstr "Configurando arquivo /etc/resolv.conf"
+#: ../scripts/build/lb_bootstrap_cache:69
+#, fuzzy
+msgid "Saving bootstrap stage to cache..."
+msgstr "Iniciando cache da bootstrap..."
 
-#: ../helpers/lh_chroot_resolv:66
-msgid "Deconfiguring file /etc/resolv.conf"
-msgstr "Desconfigurando o arquivo /etc/resolv.conf"
+#: ../scripts/build/lb_chroot_cache:17
+msgid "cache chroot stage"
+msgstr "inicia cache do chroot..."
 
-#: ../helpers/lh_chroot_selinuxfs:16
-msgid "mount /selinux"
-msgstr "monta /selinux"
+#: ../scripts/build/lb_chroot_cache:33
+#, fuzzy
+msgid "Restoring chroot stage from cache..."
+msgstr "Iniciando o cache do chroot..."
 
-#: ../helpers/lh_chroot_selinuxfs:36
-msgid "Begin mounting /selinux..."
-msgstr "Montando /selinux..."
+#: ../scripts/build/lb_chroot_cache:65
+#, fuzzy
+msgid "Saving chroot stage to cache..."
+msgstr "Iniciando o cache do chroot..."
 
-#: ../helpers/lh_chroot_selinuxfs:65
-msgid "Begin unmounting /selinux..."
-msgstr "Desmontando /selinux..."
+#: ../scripts/build/lb_binary_linux-image:17
+msgid "install linux-image into binary"
+msgstr "instala linux-image dentro do binário"
 
-#: ../helpers/lh_chroot_sources:16
-msgid "manage /etc/apt/sources.list"
-msgstr "gerencia /etc/apt/sources.list"
+#: ../scripts/build/lb_binary_linux-image:32
+msgid "Begin install linux-image..."
+msgstr "Iniciando instalação do linux-image..."
 
-#: ../helpers/lh_chroot_sources:33
-msgid "Configuring file /etc/apt/sources.list"
-msgstr "Configurando o arquivo /etc/apt/sources.list"
+#: ../scripts/build/lb_source_debian-live:17
+msgid "copy debian-live config into source"
+msgstr "copia configuração do debian-live dentro da fonte"
 
-#: ../helpers/lh_chroot_sources:168
-msgid "GPG exited with error status %s"
-msgstr "GPG saiu com estado de erro %s"
+#: ../scripts/build/lb_source_debian-live:32
+#, fuzzy
+msgid "Begin copying live-build configuration..."
+msgstr "Iniciando cópia da configuração do live-helper..."
 
-#: ../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'."
+#: ../scripts/build/lb_source_net:17
+msgid "build source net image"
+msgstr "constrói imagem fonte netboot"
 
-#: ../helpers/lh_chroot_sources:329
-msgid "Deconfiguring file /etc/apt/sources.list"
-msgstr "Desconfigurando o arquivo /etc/apt/sources.list"
+#: ../scripts/build/lb_source_net:37
+msgid "Begin building source netboot image..."
+msgstr "Iniciando construção da imagem fonte netboot..."
 
-#: ../helpers/lh_chroot_symlinks:16
-msgid "convert symlinks"
-msgstr "converte ligações simbólicas"
+#: ../scripts/build/lb_source_iso:17
+msgid "build iso source image"
+msgstr "Iniciando a construção da imagem fonte iso..."
 
-#: ../helpers/lh_chroot_symlinks:31
-msgid "Begin converting symlinks..."
-msgstr "Iniciando conversão das ligações simbólicas..."
+#: ../scripts/build/lb_source_iso:41
+msgid "Begin building source iso image..."
+msgstr "Iniciando a construção da imagem fonte iso..."
 
-#: ../helpers/lh_chroot_sysfs:16
-msgid "mount /sys"
-msgstr "monta /sys"
+#: ../scripts/build/lb_binary_hdd:32
+#, fuzzy
+msgid "Begin building binary hdd image..."
+msgstr "Iniciando a construção da imagem binária usb-hdd..."
 
-#: ../helpers/lh_chroot_sysfs:34
-msgid "Begin mounting /sys..."
-msgstr "Montando /sys..."
+#: ../scripts/build/lb_binary_hdd:59
+#, fuzzy
+msgid "Sparc only supports booting from ext2, ext3, ext4 or ufs."
+msgstr ""
+"Sparc somente suporta o carregamento do sistema com ext2, ext3 (or ufs)"
 
-#: ../helpers/lh_chroot_sysfs:62
-msgid "Begin unmounting /sys..."
-msgstr "Desmontando /sys..."
+#: ../scripts/build/lb_binary_hdd:90
+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_chroot_sysv-rc:16
-msgid "manage /usr/sbin/policy-rc.d"
-msgstr "gerencia /usr/sbin/policy-rc.d"
+#: ../scripts/build/lb_binary_hdd:99
+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_chroot_sysv-rc:31
-msgid "Configuring file /usr/sbin/policy-rc.d"
-msgstr "Configurando o arquivo /usr/sbin/policy-rc.d"
+#: ../scripts/build/lb_binary:24
+msgid "build binary images"
+msgstr "constrói imagens binárias"
 
-#: ../helpers/lh_chroot_sysv-rc:65
-msgid "Deconfiguring file /usr/sbin/policy-rc.d"
-msgstr "Desconfigurando o arquivo /usr/sbin/policy-rc.d"
+#: ../scripts/build/lb_binary_chroot:17
+msgid "copy chroot into chroot"
+msgstr "copia o chroot dentro de chroot"
 
-#: ../helpers/lh_chroot_sysvinit:16
-msgid "configure sysvinit"
-msgstr "configura sysvinit"
+#: ../scripts/build/lb_binary_chroot:27
+msgid "Begin copying chroot..."
+msgstr "Iniciando cópia do chroot..."
 
-#: ../helpers/lh_chroot_sysvinit:26
-msgid "Configuring package sysvinit"
-msgstr "Configurando o pacote sysvinit"
+#: ../scripts/build/lb_chroot_debianchroot:17
+msgid "manage /etc/debian_chroot"
+msgstr "configura o arquivo /etc/debian_chroot"
 
-#: ../helpers/lh_chroot_tasks:16
-msgid "install tasks into chroot"
-msgstr "instala as tasks dentro do chroot"
+#: ../scripts/build/lb_chroot_debianchroot:32
+msgid "Configuring file /etc/debian_chroot"
+msgstr "Configurando o arquivo /etc/debian_chroot"
+
+#: ../scripts/build/lb_chroot_debianchroot:57
+msgid "Deconfiguring file /etc/debian_chroot"
+msgstr "Desconfigurando o arquivo /etc/debian_chroot"
 
-#: ../helpers/lh_chroot_tasks:26
-msgid "Begin installing tasks..."
-msgstr "Iniciando instalação das tasks..."
+#: ../scripts/build/lb_clean:19
+msgid "Executing auto/clean script."
+msgstr ""
 
-#: ../helpers/lh_clean:27
+#: ../scripts/build/lb_clean:30
 msgid "clean up system build directories"
 msgstr "limpa os diretórios de construção do sistema"
 
-#: ../helpers/lh_clean:40
+#: ../scripts/build/lb_clean:43
 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
+#: ../scripts/build/lb_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
+#: ../scripts/build/lb_source_tar:17
 msgid "build source tarball"
 msgstr "constrói o tarball fonte"
 
-#: ../helpers/lh_source_tar:36
+#: ../scripts/build/lb_source_tar:37
 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."
+#: ../scripts/build/lb_chroot_sysfs:17
+msgid "mount /sys"
+msgstr "monta /sys"
 
-#: ../functions/breakpoints.sh:16
-msgid "Waiting at %s"
-msgstr "Esperando em %s"
+#: ../scripts/build/lb_chroot_sysfs:35
+msgid "Begin mounting /sys..."
+msgstr "Montando /sys..."
 
-#: ../functions/chroot.sh:16
-msgid "Executing: %s"
-msgstr "Executando: %s"
+#: ../scripts/build/lb_chroot_sysfs:63
+msgid "Begin unmounting /sys..."
+msgstr "Desmontando /sys..."
 
-#: ../functions/conffile.sh:36
-msgid "Reading configuration file %s"
-msgstr "Lendo arquivo de configuração %s"
+#: ../scripts/build/lb_binary_memtest:17
+msgid "installs a memtest into binary"
+msgstr "instala um teste de memória dentro do binário"
 
-#: ../functions/conffile.sh:39
-msgid "Failed to read configuration file %s"
-msgstr "Falha ao ler o arquivo de configuração %s"
+#: ../scripts/build/lb_binary_memtest:32
+msgid "Begin installing memtest..."
+msgstr "Iniciando a instalação do memtest..."
 
-#: ../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."
+#: ../scripts/build/lb_binary_memtest:48
+msgid "skipping binary_memtest, foreign architecture."
+msgstr "pulando teste de memória, arquitetura estranha."
 
-#: ../functions/defaults.sh:159
-msgid "Can't process file /sbin/fdisk"
-msgstr "Não posso processar o arquivo /sbin/fdisk"
+#: ../scripts/build/lb_bootstrap_copy:17
+msgid "bootstrap by copying the host system"
+msgstr "realiza o bootstrap copiando o sistema hospedeiro"
 
-#: ../functions/defaults.sh:175
-msgid "Can't process file /sbin/losetup"
-msgstr "Não posso processar o arquivo /sbin/losetup"
+#: ../scripts/build/lb_chroot_install-packages:17
+msgid "install queued packages into chroot"
+msgstr "instala pacotes da fila dentro do chroot"
 
-#: ../functions/defaults.sh:246
-msgid "Can't determine architecture, assuming i386"
-msgstr "Não conheço a arquitetura, assumindo i386"
+#: ../scripts/build/lb_binary_silo:17
+msgid "installs silo into binary"
+msgstr "instala silo no binário"
 
-#: ../functions/defaults.sh:453
-msgid "Architecture not yet supported (FIXME)"
-msgstr "Arquitetura ainda não suportada (FIXME)"
+#: ../scripts/build/lb_binary_silo:43
+msgid "Begin installing silo..."
+msgstr "Iniciando a instalação do silo..."
 
-#: ../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."
+#: ../scripts/build/lb_binary_silo:138
+msgid "Net cow not supported on silo"
+msgstr "Net cow não é suportado no silo"
 
-#: ../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 ""
+#: ../scripts/build/lb_chroot_selinuxfs:17
+msgid "mount /selinux"
+msgstr "monta /selinux"
 
-#: ../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 ""
+#: ../scripts/build/lb_chroot_selinuxfs:37
+msgid "Begin mounting /selinux..."
+msgstr "Montando /selinux..."
 
-#: ../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'"
+#: ../scripts/build/lb_chroot_selinuxfs:66
+msgid "Begin unmounting /selinux..."
+msgstr "Desmontando /selinux..."
 
-#: ../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 ""
+#: ../scripts/build/lb_binary_checksums:17
+#, fuzzy
+msgid "create binary checksums"
+msgstr "cria md5sum.txt do binário"
 
-#: ../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/losetup.sh:51
+msgid "Mounting %s with offset 0"
+msgstr "Montando %s com offset 0"
 
-#: ../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/losetup.sh:58
+msgid "Mounting %s with offset %s"
+msgstr "Montando %s com offset %s"
 
-#: ../functions/echo.sh:242
+#: ../functions/echo.sh:243
 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."
@@ -987,7 +907,7 @@ 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
+#: ../functions/echo.sh:246
 msgid ""
 "If the following stage fails, the most likely cause of the problem is with "
 "your mirror configuration or a caching proxy."
@@ -995,142 +915,274 @@ 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/chroot.sh:17
+msgid "Executing: %s"
+msgstr "Executando: %s"
 
-#: ../functions/exit.sh:29
-msgid "Setting up cleanup function"
-msgstr "Setando função para limpeza"
+#: ../functions/conffile.sh:37
+msgid "Reading configuration file %s"
+msgstr "Lendo arquivo de configuração %s"
+
+#: ../functions/conffile.sh:40
+msgid "Failed to read configuration file %s"
+msgstr "Falha ao ler o arquivo de configuração %s"
 
-#: ../functions/help.sh:12
+#: ../functions/help.sh:13
 msgid "%s - %s"
 msgstr "%s - %s"
 
-#: ../functions/help.sh:14 ../functions/usage.sh:14
+#: ../functions/help.sh:15 ../functions/usage.sh:15
 msgid "Usage:"
 msgstr "Utilização:"
 
-#: ../functions/help.sh:22
+#: ../functions/help.sh:23
 msgid "  %s [-h|--help]"
 msgstr "  %s [-h|--help]"
 
-#: ../functions/help.sh:23
+#: ../functions/help.sh:24
 msgid "  %s [-u|--usage]"
 msgstr "  %s [-u|--usage]"
 
-#: ../functions/help.sh:24
+#: ../functions/help.sh:25
 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/>."
+#: ../functions/help.sh:34
+#, fuzzy
+msgid "Report bugs to Debian Live project <http://live.debian.net/>."
 msgstr ""
-"Reporte bugs para o projeto Debian Live <http://debian-live.alioth.debian.org/>."
+"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/exit.sh:23
+msgid "Begin unmounting filesystems..."
+msgstr "Desmontando sistemas de arquivos..."
 
-#: ../functions/losetup.sh:31
-msgid "Mounting %s with offset %s"
-msgstr "Montando %s com offset %s"
+#: ../functions/exit.sh:43
+#, fuzzy
+msgid "Saving caches..."
+msgstr "Aplicando patch %s..."
 
-#: ../functions/packages.sh:23
-msgid "You need to install %s on your host system."
-msgstr "Você precisa instalar %s no seu sistema."
+#: ../functions/exit.sh:61
+msgid "Setting up cleanup function"
+msgstr "Setando função para limpeza"
 
-#: ../functions/stagefile.sh:21
-msgid "skipping %s"
+#: ../functions/stagefile.sh:22
+#, fuzzy
+msgid "skipping %s, already done"
 msgstr "skipping %s"
 
-#: ../functions/stagefile.sh:25
+#: ../functions/stagefile.sh:26
 msgid "forcing %s"
 msgstr "forçando %s"
 
-#: ../functions/stagefile.sh:63
+#: ../functions/stagefile.sh:64
 msgid "%s: %s missing"
 msgstr "%s: %s está faltando"
 
-#: ../functions/stagefile.sh:65
+#: ../functions/stagefile.sh:66
 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/breakpoints.sh:17
+msgid "Waiting at %s"
+msgstr "Esperando em %s"
 
-#: ../functions/version.sh:12
+#: ../functions/version.sh:13
 msgid "%s, version %s"
 msgstr "%s, versão %s"
 
-#: ../functions/version.sh:13
+#: ../functions/version.sh:14
 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>"
+#: ../functions/version.sh:16
+#, fuzzy
+msgid "Copyright (C) 2006-2012 Daniel Baumann <daniel at debian.org>"
 msgstr "Copyright (C) 2006-2009 Daniel Baumann <daniel at debian.org>"
 
-#: ../functions/version.sh:17
+#: ../functions/version.sh:18
 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
+#: ../functions/version.sh:19
 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
+#: ../functions/version.sh:20
 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
+#: ../functions/version.sh:21
 msgid "(at your option) any later version."
 msgstr "(por sua opção) qualquer outra versão posterior."
 
-#: ../functions/version.sh:22
+#: ../functions/version.sh:23
 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
+#: ../functions/version.sh:24
 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
+#: ../functions/version.sh:25
 msgid "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
-msgstr "COMERCIALIZAÇÃO ou ADEQUAÇÃO A QUALQUER PROPÓSITO EM PARTICULAR."
-"Consulte a"
+msgstr ""
+"COMERCIALIZAÇÃO ou ADEQUAÇÃO A QUALQUER PROPÓSITO EM PARTICULAR.Consulte a"
 
-#: ../functions/version.sh:25
+#: ../functions/version.sh:26
 msgid "GNU General Public License for more details."
 msgstr "Licença Pública Geral GNU para obter mais detalhes."
 
-#: ../functions/version.sh:27
+#: ../functions/version.sh:28
 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
+#: ../functions/version.sh:29
 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/>."
+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"
+#: ../functions/version.sh:31
+#, fuzzy
+msgid "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
+#: ../functions/version.sh:32
 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/>"
+#: ../functions/version.sh:34
+#, fuzzy
+msgid "Homepage: <http://live.debian.net/>"
 msgstr "Homepage: <http://debian-live.alioth.debian.org/>"
+
+#: ../functions/templates.sh:22
+#, fuzzy
+msgid "%s templates not accessible in %s nor config/templates"
+msgstr "templates não acessíveis em %s ou não encontrados em config/templates"
+
+#: ../functions/defaults.sh:166
+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:256
+msgid "Can't process file /sbin/fdisk"
+msgstr "Não posso processar o arquivo /sbin/fdisk"
+
+#: ../functions/defaults.sh:272
+msgid "Can't process file /sbin/losetup"
+msgstr "Não posso processar o arquivo /sbin/losetup"
+
+#: ../functions/defaults.sh:985
+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 "
+"deLB_DEBIAN_INSTALLER_PRESEEDFILE. Isso significa que o instalador do Debian "
+"não utilizará um arquivo de preseeding por padrão."
+
+#: ../functions/defaults.sh:1234
+msgid "Aborting build, please get a new version of live-build."
+msgstr ""
+
+#: ../functions/defaults.sh:1240
+msgid "Aborting build, please repopulate the config tree."
+msgstr ""
+
+#: ../functions/defaults.sh:1244
+msgid ""
+"This config tree does not specify a format version or has an unknown version "
+"number."
+msgstr ""
+
+#: ../functions/defaults.sh:1245
+msgid ""
+"Continuing build, but it could lead to errors or different results. Please "
+"repopulate the config tree."
+msgstr ""
+
+#: ../functions/defaults.sh:1254
+#, fuzzy
+msgid "You selected LB_PACKAGE_LISTS='%s' and LB_APT='aptitude'"
+msgstr "Você selecionou LB_PACKAGES_LISTS='%s' e LB_APT='aptitude'"
+
+#: ../functions/defaults.sh:1263
+#, fuzzy
+msgid ""
+"You have selected values of LB_CACHE, LB_CACHE_PACKAGES, LB_CACHE_STAGES and "
+"LB_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being "
+"cached. This configuration is potentially unsafe as the bootstrap packages "
+"are re-used 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."
+
+#: ../functions/defaults.sh:1274
+msgid ""
+"You have selected values of LB_BOOTLOADER and LB_BINARY_FILESYSTEM which are "
+"incompatible - syslinux only supports FAT filesystems."
+msgstr ""
+
+#: ../functions/defaults.sh:1284
+msgid ""
+"You have selected a combination of bootloader and image type that is "
+"currently not supported by live-build. Please use either another bootloader "
+"or a different image type."
+msgstr ""
+
+#: ../functions/defaults.sh:1293
+msgid ""
+"You have specified a value of LB_ISO_APPLICATION that is too long; the "
+"maximum length is 128 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1298
+msgid ""
+"You have specified a value of LB_ISO_PREPARER that is too long; the maximum "
+"length is 128 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1303
+msgid ""
+"You have specified a value of LB_ISO_PUBLISHER that is too long; the maximum "
+"length is 128 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1308
+msgid ""
+"You have specified a value of LB_ISO_VOLUME that is too long; the maximum "
+"length is 32 characters."
+msgstr ""
+
+#: ../functions/defaults.sh:1315
+msgid ""
+"You have selected hook to minimise image size but you are still including "
+"package indices with your value of LB_APT_INDICES."
+msgstr ""
+
+#: ../functions/usage.sh:28
+#, fuzzy
+msgid "Try \"%s --help\" for more information."
+msgstr "Tente \" %s--help\" para mais informação."
+
+#: ../functions/packages.sh:24
+msgid "You need to install %s on your host system."
+msgstr "Você precisa instalar %s no seu sistema."
+
+#: ../functions/architectures.sh:45
+#, fuzzy
+msgid "skipping %s, foreign architecture(s)."
+msgstr "pulando %s, arquitetura estranha."

-- 
live-build



More information about the debian-live-changes mailing list