slitaz-boot-scripts diff etc/init.d/i18n.sh @ rev 107

Fix typos
author Mike D. Smith <MikeDSmith25@gmail.com>
date Sat Jul 19 06:54:49 2008 +0000 (2008-07-19)
parents 4c2fb6625173
children ae0a8f86229a
line diff
     1.1 --- a/etc/init.d/i18n.sh	Sun May 18 17:37:24 2008 +0200
     1.2 +++ b/etc/init.d/i18n.sh	Sat Jul 19 06:54:49 2008 +0000
     1.3 @@ -8,7 +8,7 @@
     1.4  #
     1.5  echo "Cheking if /etc/locale.conf exist... "
     1.6  if [ -s "/etc/locale.conf" ]; then
     1.7 -	echo -n "Locale configuration file exist... "
     1.8 +	echo -n "Locale configuration file exists... "
     1.9  	status
    1.10  else
    1.11  	tazlocale
    1.12 @@ -35,19 +35,19 @@
    1.13  	KEYMAP=`cat /etc/keymap.conf`
    1.14  	case "$KEYMAP" in
    1.15  		fr-latin1|be-latin1)
    1.16 -			echo -n "Setting time zone to Europe/Paris... "
    1.17 +			echo -n "Setting timezone to Europe/Paris... "
    1.18  			echo "Europe/Paris" > /etc/TZ && status
    1.19  			;;
    1.20  		fr_CH-latin1|de_CH-latin1)
    1.21 -			echo -n "Setting time zone to Europe/Zurich... "
    1.22 +			echo -n "Setting timezone to Europe/Zurich... "
    1.23  			echo "Europe/Zurich" > /etc/TZ && status
    1.24  			;;
    1.25  		cf)
    1.26 -			echo -n "Setting time zone to America/Montreal... "
    1.27 +			echo -n "Setting timezone to America/Montreal... "
    1.28  			echo "America/Montreal" > /etc/TZ && status
    1.29  			;;
    1.30  		*)
    1.31 -			echo -n "Setting default time zone to UTC... "
    1.32 +			echo -n "Setting default timezone to UTC... "
    1.33  			echo "UTC" > /etc/TZ && status
    1.34  			;;
    1.35  	esac