diff options
author | Dave Hodgins <davidwhodgins@mageia.org> | 2013-09-22 18:32:38 -0400 |
---|---|---|
committer | Dave Hodgins <davidwhodgins@mageia.org> | 2013-09-22 18:32:38 -0400 |
commit | eadcbb24ca4bab34bb2c7c5c615f479aaf0bab84 (patch) | |
tree | 1444792c9346d8b935a7444742fd2aec401aa704 | |
parent | 8ff9a4a7d30023a908f2d250cfdf7024536a066e (diff) | |
download | copyiso2usb-eadcbb24ca4bab34bb2c7c5c615f479aaf0bab84.tar copyiso2usb-eadcbb24ca4bab34bb2c7c5c615f479aaf0bab84.tar.gz copyiso2usb-eadcbb24ca4bab34bb2c7c5c615f479aaf0bab84.tar.bz2 copyiso2usb-eadcbb24ca4bab34bb2c7c5c615f479aaf0bab84.tar.xz copyiso2usb-eadcbb24ca4bab34bb2c7c5c615f479aaf0bab84.zip |
fix getting translated variables for NoUSBDrives msg
-rwxr-xr-x | usr/sbin/copyiso2usb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/sbin/copyiso2usb b/usr/sbin/copyiso2usb index 916397e..19127bc 100755 --- a/usr/sbin/copyiso2usb +++ b/usr/sbin/copyiso2usb @@ -35,7 +35,7 @@ Newline="\n" TitleString=$(gettext "Copy iso image to usb drive") SelectISO=$(gettext "Select iso image to be copied to a usb drive") NoISOFound=$(eval_gettext "No iso images found.\${Newline}\${Newline}If an iso has been recently downloaded, please run /etc/cron.daily/mlocate.cron\${Newline}so that this script can find them using the locate command.") -NoUSBDrives=$(gettext "No usb drives found.\${Newline}\${Newline}Please insert a usb drive, and then rerun this script.") +NoUSBDrives=$(eval_gettext "No usb drives found.\${Newline}\${Newline}Please insert a usb drive, and then rerun this script.") SelectUSBDrive=$(gettext "Select usb drive to copy the iso image to") CopyCancelled=$(gettext "Copy cancelled. Exiting.") Waitmlocate=$(gettext "Running /etc/cron.daily/mlocate.cron. Please wait for 'rc=0' before continuing.") |