diff options
author | Tiago Bortoletto Vaz <tiagovaz@safernet.org.br> | 2008-08-14 15:08:09 -0300 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-08-14 21:50:37 +0200 |
commit | 985ad93f4af8b052679bc5aad716acd32d2d6d24 (patch) | |
tree | 9c4e5531fe05ee74a5111ba084d0c0d4652c09a0 | |
parent | 887bc98bcba19d1689aa544ccb6ce1a4e8b7d54c (diff) | |
download | vyos-live-build-985ad93f4af8b052679bc5aad716acd32d2d6d24.tar.gz vyos-live-build-985ad93f4af8b052679bc5aad716acd32d2d6d24.zip |
Making lh_chroot_interactive and lh_source_usb-hdd messages translatable.
-rwxr-xr-x | helpers/lh_chroot_interactive | 6 | ||||
-rwxr-xr-x | helpers/lh_source_usb-hdd | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/helpers/lh_chroot_interactive b/helpers/lh_chroot_interactive index cb821ceb3..3f2281662 100755 --- a/helpers/lh_chroot_interactive +++ b/helpers/lh_chroot_interactive @@ -49,15 +49,15 @@ Create_lockfile .lock case "${LH_INTERACTIVE}" in enabled|shell) - echo "Pausing build: starting interactive shell..." + Echo_message "Pausing build: starting interactive shell..." Chroot "/bin/bash --login" ;; x11) - echo "Pausing build: starting interactive X11..." + Echo_message "Pausing build: starting interactive X11..." Chroot "startx" ;; xnest) - echo "Pausing build: starting interactive Xnest..." + Echo_message "Pausing build: starting interactive Xnest..." #Chroot "" # FIXME ;; esac diff --git a/helpers/lh_source_usb-hdd b/helpers/lh_source_usb-hdd index 71c5eac74..128366790 100755 --- a/helpers/lh_source_usb-hdd +++ b/helpers/lh_source_usb-hdd @@ -93,7 +93,7 @@ case "${LH_BINARY_FILESYSTEM}" in ;; esac -echo "!!! The following error/warning messages can be ignored !!!" +Echo_warning "!!! The following error/warning messages can be ignored !!!" Losetup $FREELO source.img 0 Chroot "parted -s ${FREELO} mklabel msdos" || true Chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true @@ -127,7 +127,7 @@ cp -r source/* source.tmp ${LH_ROOT_COMMAND} umount source.tmp rmdir source.tmp ${LH_LOSETUP} -d ${FREELO} -echo "!!! The above error/warning messages can be ignored !!!" +Echo_warning "!!! The above error/warning messages can be ignored !!!" if [ -n "${MAKEDEV}" ] then |