flavors-stable diff proxy/rootfs/usr/bin/tazctl @ rev 162

Tiny edits
author Paul Issott <paul@slitaz.org>
date Fri Mar 23 21:42:52 2012 +0000 (2012-03-23)
parents b51b9432c525
children
line diff
     1.1 --- a/proxy/rootfs/usr/bin/tazctl	Thu Mar 15 00:56:34 2012 +0100
     1.2 +++ b/proxy/rootfs/usr/bin/tazctl	Fri Mar 23 21:42:52 2012 +0000
     1.3 @@ -95,7 +95,7 @@
     1.4       	 --backtitle "$backtitle" --extra-button --extra-label "${BTN_DHCP:-Use DHCP server}"\
     1.5        	--form "Here is a possible piece of a configuration program." \
     1.6  		15 55 0 \
     1.7 -    	"IP Adress:" 1 1 "$IP" 1 20 20 0 \
     1.8 +    	"IP Address:" 1 1 "$IP" 1 20 20 0 \
     1.9      	"Network mask:"      2 1 "$NETMASK"  2 20  20 0 \
    1.10      	"Default gateway:"      3 1 "$GATEWAY"  3 20  20 0 \
    1.11      	"DNS server(s):"     4 1 "$DNS_SERVER" 4 20 20 0 \
    1.12 @@ -139,10 +139,10 @@
    1.13   	until [ $ret -eq 1 ];do
    1.14      	$DIALOG --title "$MENU_TITLE" \
    1.15          	--backtitle "$BACKTITLE" --clear \
    1.16 -        	--cancel-label "Quitter" \
    1.17 +        	--cancel-label "Quit" \
    1.18          	--colors \
    1.19          	--menu "$TAZ_CMD_MSG" 15 50 40\
    1.20 -        	"adress"  	"  Network settings" \
    1.21 +        	"address"  	"  Network settings" \
    1.22          	"hostname"  	"  Set your hostname" \
    1.23          	2> $OUT
    1.24      	ret=$?
    1.25 @@ -163,8 +163,8 @@
    1.26  	PASSWORD=`$DIALOG --backtitle "$BACKTITLE" --title "Set password" --clear \
    1.27   		--separate-widget "$SEP" \
    1.28   		--insecure --passwordbox "Enter new password for user below: \n\n" 10 50 \
    1.29 -		--title "Confirme password" \
    1.30 -        --insecure --passwordbox "Confirme new password for user below: \n\n"	10 50 2>&1 1>&3`
    1.31 +		--title "Confirm password" \
    1.32 +        --insecure --passwordbox "Confirm new password for user below: \n\n"	10 50 2>&1 1>&3`
    1.33  	ret=$?
    1.34  	exec 3>&-
    1.35  	if [ -z "${PASSWORD}" ]; then
    1.36 @@ -173,7 +173,7 @@
    1.37  		PASS1="$(echo $PASSWORD | cut -d ' ' -f1)"
    1.38  		PASS2="$(echo $PASSWORD | cut -d ' ' -f2)"
    1.39  		if [ "$PASS1" != "$PASS2" ]; then
    1.40 -			msg "Passwords don't match.\nNothing change."
    1.41 +			msg "Passwords don't match.\nNothing changed."
    1.42  		else
    1.43  			echo  "root:$PASS1" | chpasswd
    1.44  		fi
    1.45 @@ -189,12 +189,12 @@
    1.46  until [ $retval -eq 1 ];do
    1.47  	$DIALOG --title "$MENU_TITLE" \
    1.48  		--backtitle "$BACKTITLE" --clear \
    1.49 -		--cancel-label "Quitter" \
    1.50 +		--cancel-label "Quit" \
    1.51  		--colors \
    1.52  		--menu "$TAZ_CMD_MSG" 15 50 40\
    1.53  		"keymap"  		"  Keyboard mapping" \
    1.54  		"locale"      	"  Language setting" \
    1.55 -		"network"   	"  Netwok configuration" \
    1.56 +		"network"   	"  Network configuration" \
    1.57  		"password" 		"  Change root password" \
    1.58  		2> $OUT
    1.59