slitaz-tools rev 549

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sun Mar 06 19:58:55 2011 +0000 (2011-03-06)
parents f9fdfd864400
children 0f8c0385c52a
files installer/slitaz-installer tinyutils/bootfloppybox tinyutils/desktopbox tinyutils/editor tinyutils/hwsetup tinyutils/mountbox tinyutils/scpbox tinyutils/sshbox tinyutils/tazfile tinyutils/tazx tinyutils/wifibox
line diff
     1.1 --- a/installer/slitaz-installer	Fri Feb 25 01:43:27 2011 +0100
     1.2 +++ b/installer/slitaz-installer	Sun Mar 06 19:58:55 2011 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  #!/bin/sh
     1.5  # slitaz-installer - SliTaz GNU/Linux installer.
     1.6  #
     1.7 -# So this is SliTaz installer using dialog boxes. All the comments are in
     1.8 +# So this is the SliTaz installer using dialog boxes. All the comments are in
     1.9  # English but displayed messages are in French. The script starts with a
    1.10  # few main variables, then all the functions and then a sequence of functions.
    1.11  #
    1.12 @@ -261,7 +261,7 @@
    1.13  Here you can format the /home partition: $HOME_DEV
    1.14  
    1.15  SliTaz uses ext3 by default but another filesystem can be used if wanted, \
    1.16 -for this please adjust /etc/fstab after installation.
    1.17 +for this please adjust your /etc/fstab after installation.
    1.18  
    1.19  \Z2Do you want to format (Option): $HOME_DEV\Zn" 18 70
    1.20  	retval=$?
    1.21 @@ -879,7 +879,7 @@
    1.22  	set_messages
    1.23  
    1.24  	echo "XXX" && echo 10
    1.25 -	echo -e "\nSearch for /etc/slitaz-release"
    1.26 +	echo -e "\nSearching for /etc/slitaz-release"
    1.27  	echo "XXX"
    1.28  	if [ -f etc/slitaz-release ]; then
    1.29  		release=`cat etc/slitaz-release`
    1.30 @@ -1019,7 +1019,7 @@
    1.31  		do
    1.32  			pct=$(($pct+$onepkg))
    1.33  			echo "XXX" && echo $pct
    1.34 -			echo -e "\nInstallation of: $pkg..."
    1.35 +			echo -e "\nInstalling: $pkg..."
    1.36  			echo "XXX"
    1.37  			# Log please.
    1.38  			echo "get-install: $pkg" >>$LOG
     2.1 --- a/tinyutils/bootfloppybox	Fri Feb 25 01:43:27 2011 +0100
     2.2 +++ b/tinyutils/bootfloppybox	Sun Mar 06 19:58:55 2011 +0000
     2.3 @@ -435,13 +435,13 @@
     2.4  		ln -s $i /tmp/rootfs$$/$n
     2.5  		n=$(($n + 1))
     2.6  	done
     2.7 -	echo "Unpack rootfs..."
     2.8 +	echo "Unpacking rootfs..."
     2.9  	( zcat $rootfs 2> /dev/null | unlzma -c $rootfs ) | \
    2.10  		( cd /tmp/rootfs$$/fs ; cpio -idm > /dev/null )
    2.11  	if [ $(unlzma -c $rootfs 2> /dev/null| wc -c) -gt $(stat -c %s $rootfs) ]; then
    2.12  		if [ $(du -ck $rootfs $bzimage | awk 'END { print $1 }') -gt 15296 ]; then
    2.13  	# The rootfs.gz file is too big, extract a minimum bootfs with busybox stuff
    2.14 -			echo "Extract bootfs..."
    2.15 +			echo "Extracting bootfs..."
    2.16  			mv /tmp/rootfs$$/fs /tmp/rootfs$$/fs0
    2.17  			for i in lib bin sbin usr/bin usr/sbin ; do
    2.18  				mkdir -p /tmp/rootfs$$/fs/$i
    2.19 @@ -486,7 +486,7 @@
    2.20  		fi
    2.21  	else
    2.22  	# This is a loram rootfs.gz, extract loram bootstrap
    2.23 -		echo "Split loram rootfs..."
    2.24 +		echo "Splitting loram rootfs..."
    2.25  		offset=$(awk '/07070100/ { o+=index($0,"07070100"); print o/4 ; exit } { o+=1+length() }' < $rootfs)
    2.26  		dd if=$rootfs skip=$(($offset / 1024)) bs=4k count=1 2> /dev/null | \
    2.27  		dd skip=$(($offset % 1024)) bs=4 of=/tmp/rootfs$$/1/root 2> /dev/null
    2.28 @@ -497,7 +497,7 @@
    2.29  	# Create extra rootfs floppies
    2.30  	for i in /tmp/rootfs$$/[1-9]*/root* ; do
    2.31  		[ -f $i ] || continue
    2.32 -		echo "Create floppies for rootfs $(basename $(dirname $i) )..."
    2.33 +		echo "Creating floppies for rootfs $(basename $(dirname $i) )..."
    2.34  		case "$(dd if=$i bs=1 count=4 2> /dev/null)" in
    2.35  		0707) cat $i ;;
    2.36  		*)    zcat $i 2> /dev/null || unlzma -c $i ;;
    2.37 @@ -523,7 +523,7 @@
    2.38  		esac
    2.39  		shift 2
    2.40  	done
    2.41 -	echo "Create /init ..."
    2.42 +	echo "Creating /init ..."
    2.43  	base=100
    2.44  	set -- $selection
    2.45  	for i in /tmp/rootfs$$/[1-9]* ; do
    2.46 @@ -541,7 +541,7 @@
    2.47  	done | buildinit /tmp/rootfs$$/fs
    2.48  	cmdline="$(grep append /tmp/iso$$/boot/isolinux/isolinux.cfg | tail -n 1 | sed 's/.*gz //')"
    2.49  	( cd /tmp/rootfs$$/fs ; find | cpio -o -H newc ) | lzma e /tmp/rootfs$$/rootfs -si
    2.50 -	echo "Create first stage boot floppies..."
    2.51 +	echo "Creating first stage boot floppies..."
    2.52  	floppyset $bzimage /tmp/rootfs$$/rootfs "$cmdline"
    2.53  	base=100
    2.54  	for i in /tmp/rootfs$$/[1-9]* ; do
     3.1 --- a/tinyutils/desktopbox	Fri Feb 25 01:43:27 2011 +0100
     3.2 +++ b/tinyutils/desktopbox	Sun Mar 06 19:58:55 2011 +0000
     3.3 @@ -11,7 +11,7 @@
     3.4  GLADE_XML=/usr/share/slitaz/glade
     3.5  MESSAGES=/usr/share/slitaz/messages
     3.6  
     3.7 -# Export script path and other if needed so we can use them in 'quote'.
     3.8 +# Export script path and others if needed so we can use them in 'quote'.
     3.9  export BIN=$0
    3.10  export AUTOSTART_SCRIPT=$HOME/.config/openbox/autostart.sh
    3.11  
    3.12 @@ -39,7 +39,7 @@
    3.13    logout       Prompt for X session exit or system halt/reboot.\n"
    3.14  }
    3.15  
    3.16 -# Openbox autostart functions, first column is used for icon
    3.17 +# Openbox autostart functions, first column is used for icons
    3.18  autostart_list()
    3.19  {
    3.20  	# Enabled
    3.21 @@ -57,7 +57,7 @@
    3.22  	done
    3.23  }
    3.24  
    3.25 -# Enable or disbale autostarted applications.
    3.26 +# Enable or disable autostarted applications.
    3.27  autostart_actions()
    3.28  {
    3.29  	if grep -q "^$APPLICATION" $AUTOSTART_SCRIPT; then
    3.30 @@ -309,7 +309,7 @@
    3.31  </window>"
    3.32  		export DESKTOP_DIALOG=${DESKTOP_DIALOG}${TAZUSB_DIALOG}${ACTIONS} ;;
    3.33  	notify)
    3.34 -		# Nofification message without window decoration.
    3.35 +		# Notification message without window decoration.
    3.36  		MSG="$2"
    3.37  		SEC=$3
    3.38  		[ -z $SEC ] && SEC=4
    3.39 @@ -371,8 +371,8 @@
    3.40  		;;
    3.41  	tazapps)
    3.42  		# Default applications configuration script. System wide config file
    3.43 -		# is /etc/slitaz/applications.conf and each user can have personnal
    3.44 -		# settings. System wide for root and personnal config for user.
    3.45 +		# is /etc/slitaz/applications.conf and each user can have personal
    3.46 +		# settings. System wide for root and personal config for user.
    3.47  		export CONFIG="$HOME/.config/slitaz/applications.conf"
    3.48  		if [ ! -f $CONFIG ]; then
    3.49  			mkdir -p $HOME/.config/slitaz
     4.1 --- a/tinyutils/editor	Fri Feb 25 01:43:27 2011 +0100
     4.2 +++ b/tinyutils/editor	Sun Mar 06 19:58:55 2011 +0000
     4.3 @@ -1,5 +1,5 @@
     4.4  #!/bin/sh
     4.5 -# Lauch SliTaz default Text Editor.
     4.6 +# Launch SliTaz default Text Editor.
     4.7  #
     4.8  . /etc/slitaz/applications.conf
     4.9  
     5.1 --- a/tinyutils/hwsetup	Fri Feb 25 01:43:27 2011 +0100
     5.2 +++ b/tinyutils/hwsetup	Sun Mar 06 19:58:55 2011 +0000
     5.3 @@ -20,13 +20,13 @@
     5.4  
     5.5  \033[1mCommands: \033[0m
     5.6    usage		Print this short usage.
     5.7 -  printer	Paraller and USB Printer setup.
     5.8 +  printer	Parallel and USB Printer setup.
     5.9    scanner	USB Scanner setup.
    5.10    webcam	Integrated and USB webcam setup.
    5.11    camera	Digital Camera setup.
    5.12    bluetooth	Bluetooth setup.
    5.13    3g-modem	3g-modem setup.
    5.14 -  firewall	start/stop firewall.
    5.15 +  firewall	Start/stop firewall.
    5.16    nvidia	Nvidia (non-free/free) setup.
    5.17    ati		ATI (non-free/free) setup.
    5.18  
    5.19 @@ -135,7 +135,7 @@
    5.20  	for pkg in $1 ; do
    5.21  	   # Avoid reinstall
    5.22  		if [ ! -d /var/lib/tazpkg/installed/"$pkg" ]; then
    5.23 -			echo "installing pkg: $pkg"
    5.24 +			echo "Installing pkg: $pkg"
    5.25  			tazpkg get-install "$pkg" --forced
    5.26  			if tazpkg list-files "$pkg" | grep -q "/etc/udev" ; then
    5.27  			   UDEV_RULES="yes"
    5.28 @@ -151,7 +151,7 @@
    5.29  	for pkg in $1 ; do
    5.30  	   # Avoid reinstall
    5.31  		if [ ! -d /var/lib/tazpkg/installed/"$pkg" ]; then
    5.32 -			echo -n " Would you like to install pkg: $pkg (y/N) ? "; read anser
    5.33 +			echo -n "Would you like to install pkg: $pkg (y/N) ? "; read anser
    5.34  			if [ "$anser" == "y" ]; then
    5.35  				tazpkg get-install "$pkg" --forced
    5.36  				if tazpkg list-files "$pkg" | grep -q "/etc/udev" ; then
    5.37 @@ -215,7 +215,7 @@
    5.38  
    5.39  confirm_device()
    5.40  {
    5.41 -	echo -n " Which no. is your $DEVICE shown in the above lines (1,2,3,none);  ? "; read choice
    5.42 +	echo -n "Which no. is your $DEVICE shown in the above lines (1,2,3,none);  ? "; read choice
    5.43  
    5.44  	case "$choice" in
    5.45  	 [nN*]) DETECTED="no" ;;
    5.46 @@ -239,7 +239,7 @@
    5.47  	if [ "$HP" == "1" ]; then
    5.48  	 	install "hplip"
    5.49  		echo ""
    5.50 -		echo -n " Do you want to use hp-setup utility (y/N) ? "; read choice
    5.51 +		echo -n "Do you want to use hp-setup utility (y/N) ? "; read choice
    5.52  		if [ "$choice" == "y" ]; then
    5.53  		  hp-setup
    5.54  		fi
    5.55 @@ -256,7 +256,7 @@
    5.56  			chgrp $grp /dev/bus/usb/*$busno/*$deviceno
    5.57  			echo "========================================"
    5.58  			echo -e "\033[1m Verify $DEVICE Permissions \033[0m "
    5.59 -			echo " Your $DEVICE must be in $grp group with 666 permissions"
    5.60 +			echo "Your $DEVICE must be in $grp group with 666 permissions"
    5.61  			ls -l /dev/bus/usb/*$busno/*$deviceno
    5.62  			echo "========================================"
    5.63  		fi
    5.64 @@ -282,7 +282,7 @@
    5.65  {
    5.66  
    5.67  	if [ "$UDEV_RULES" == "yes" ]; then
    5.68 -		echo "new udev rules are added by a package"
    5.69 +		echo "New udev rules are added by a package"
    5.70  		udevadm trigger
    5.71  		sleep 2
    5.72  	fi
    5.73 @@ -475,7 +475,7 @@
    5.74  			#lpinfo -v
    5.75  			if [ "$DETECTED" == "yes" ]; then
    5.76  			    echo ""
    5.77 -				echo -n " Do you want to start cups (y/N) ? "; read anser
    5.78 +				echo -n "Do you want to start cups (y/N) ? "; read anser
    5.79  				echo ""
    5.80  				if [ "$anser" == "y" ]; then
    5.81  						/etc/init.d/cupsd start
    5.82 @@ -484,7 +484,7 @@
    5.83  				else
    5.84  					echo ""
    5.85  					echo "===================================="
    5.86 -						echo -e "Start \033[1m cups \033[0m using :"
    5.87 +						echo -e "Starting \033[1m cups \033[0m using :"
    5.88  						echo "/etc/init.d/cupsd start"
    5.89  						echo "browser http://localhost:631/"
    5.90  					echo "===================================="
    5.91 @@ -502,7 +502,7 @@
    5.92  		  	if [ "$DETECTED" == "yes" ]; then
    5.93  		  	    #hputil
    5.94  				echo ""
    5.95 -				echo -n " Do you want to start scanner (y/N) ? "; read anser
    5.96 +				echo -n "Do you want to start scanner (y/N) ? "; read anser
    5.97  				echo ""
    5.98  				if [ "$anser" == "y" ]; then
    5.99  						sane-find-scanner # to verify scanner has been found
   5.100 @@ -531,14 +531,14 @@
   5.101  
   5.102  				if [ -d /var/lib/tazpkg/installed/mplayer-svn ]; then
   5.103  					echo ""
   5.104 -					echo -n " Would you like to test webcam (y/N) ? "; read anser
   5.105 +					echo -n "Would you like to test webcam (y/N) ? "; read anser
   5.106  					echo ""
   5.107  					if [ "$anser" == "y" ]; then
   5.108  						mplayer tv:// -tv driver=v4l2:width=320:height=240:device=/dev/video0 -vo x11 &
   5.109  					fi
   5.110  				else
   5.111  				    echo ""
   5.112 -					echo -n " Would you like to test webcam by installing mplayer-svn (y/N) ? "; read anser
   5.113 +					echo -n "Would you like to test webcam by installing mplayer-svn (y/N) ? "; read anser
   5.114  					echo ""
   5.115  					if [ "$anser" == "y" ]; then
   5.116  						install mplayer-svn
   5.117 @@ -546,7 +546,7 @@
   5.118  					else
   5.119  						echo ""
   5.120  		       			echo "============================"
   5.121 -						echo "webcam is set up; please use mplayer-svn/fswebcam/amsn/skype to view"
   5.122 +						echo "Webcam is set up; please use mplayer-svn/fswebcam/amsn/skype to view"
   5.123  						echo "============================"
   5.124  		       		fi
   5.125  				fi
   5.126 @@ -561,12 +561,12 @@
   5.127  
   5.128  			if [ "$DETECTED" == "yes" ]; then
   5.129  				echo ""
   5.130 -				echo -n " Do you want to check if gphoto2 can talk to your camera (y/N) ? "; read anser
   5.131 +				echo -n "Do you want to check if gphoto2 can talk to your camera (y/N) ? "; read anser
   5.132  				echo ""
   5.133  				if [ "$anser" == "y" ]; then
   5.134  					# Show if the camera is detected
   5.135  					gphoto2 --auto-detect
   5.136 -					echo -e " Do you want to test importing photos (y/N) ? "; read choice
   5.137 +					echo -e "Do you want to test importing photos (y/N) ? "; read choice
   5.138  					if [ "$choice" == "y" ]; then
   5.139  						mkdir -p ~/Images/Photos
   5.140  						cd ~/Images/Photos
   5.141 @@ -577,7 +577,7 @@
   5.142  				else
   5.143  					echo ""
   5.144  					echo "===================================="
   5.145 -					echo "camera is set up; please use gphoto2 to import photos"
   5.146 +					echo "Camera is set up; please use gphoto2 to import photos"
   5.147  					echo "Quick start guide: http://www.gphoto.org/doc/manual/using-gphoto2.html"
   5.148  					echo "===================================="
   5.149  				fi
   5.150 @@ -589,7 +589,7 @@
   5.151  			load_modules
   5.152  			udev
   5.153  
   5.154 -			echo -n " Do you want to see if the bluetooth is working (y/N) ? "; read anser
   5.155 +			echo -n "Do you want to see if the bluetooth is working (y/N) ? "; read anser
   5.156  			echo ""
   5.157  			if [ "$anser" == "y" ]; then
   5.158  				# sanity check: btusb is not loaded automagically for unknown reasons
   5.159 @@ -630,7 +630,7 @@
   5.160  		 		echo " hcitool scan # for scanning remote devices"
   5.161  		 		echo " bluez-simple-agent # pairing with remote bluetooth devices"
   5.162  		 		echo ""
   5.163 -		 		echo -e " You can manually edit the configuration files in \033[1m /etc/bluetooth \033[0m if need be"
   5.164 +		 		echo -e "You can manually edit the configuration files in \033[1m /etc/bluetooth \033[0m if need be"
   5.165  				echo ""
   5.166  		    	echo "========================================"
   5.167  		    fi
   5.168 @@ -641,13 +641,13 @@
   5.169  				udev
   5.170  				echo ""
   5.171  		       	echo "===================================="
   5.172 -		       	echo "list detected devices"
   5.173 +		       	echo "List detected devices"
   5.174  		       	# ls /dev/ttyUSB* /dev/ttyACM* /dev/modem
   5.175  
   5.176  		       	if [ -n "`ls /dev/ttyUSB*`" -o -n "`ls /dev/ttyACM*`" ] ; then
   5.177  				    echo "Detected Modem at:"
   5.178  				    echo "`ls /dev/ttyUSB*`"
   5.179 -					echo -n " Do you want to configure wvdial (y/N) ? "; read anser
   5.180 +					echo -n "Do you want to configure wvdial (y/N) ? "; read anser
   5.181  					echo ""
   5.182  					if [ "$anser" == "y" ]; then
   5.183  						wvdialbox
   5.184 @@ -657,7 +657,7 @@
   5.185  						echo -e "Edit \033[1m /etc/wvdial.conf \033[0m  for phone number, login name, password and pin"
   5.186  						echo "wvdial dialername"
   5.187  						#nameserver `tail -30 /var/log/messages| grep DNS| sed 's/*\([.0-9]*\)$/\1/'` >/etc/resolv.conf
   5.188 -						echo -e " Add DNS adress of your provider in : \033[1m /etc/resolv.conf  \033[0m "
   5.189 +						echo -e "Add DNS adress of your provider in : \033[1m /etc/resolv.conf  \033[0m "
   5.190  						echo "===================================="
   5.191  					 fi
   5.192  		       	 else
   5.193 @@ -677,7 +677,7 @@
   5.194  				 		nmap localhost
   5.195  				 		echo "===================================="
   5.196  				 	fi
   5.197 -				 	echo "adding firewall daemon to start automatically at boot"
   5.198 +				 	echo "Adding firewall daemon to start automatically at boot"
   5.199  				 	run_daemon_startup "firewall"
   5.200  				 	echo "===================================="
   5.201  				 fi
   5.202 @@ -691,7 +691,7 @@
   5.203  				fi
   5.204  				load_modules
   5.205  				#xorg
   5.206 -				echo -n " Do you want to configure X using non-free nvidia driver (y/N) ? "; read anser
   5.207 +				echo -n "Do you want to configure X using non-free nvidia driver (y/N) ? "; read anser
   5.208  				echo ""
   5.209  				if [ "$anser" == "y" ]; then
   5.210  					echo "Your previous config is in /etc/X11/xorg.conf.d/60-Device.conf"
   5.211 @@ -702,7 +702,7 @@
   5.212  					rm /tmp/xorg.conf.nvidia /root/xorg.conf.new
   5.213  
   5.214  					if ! grep -q "NoLogo" /etc/X11/xorg.conf.d/55-DeviceTweaks.conf ; then
   5.215 -						echo "adding to xorg.conf: Option \"NoLogo\" \"True\""
   5.216 +						echo "Adding to xorg.conf: Option \"NoLogo\" \"True\""
   5.217  						sed -i 's/BoardName\(.*\)/Boardname \1 \n  Option "NoLogo" "True" /' /etc/X11/xorg.conf.d/55-DeviceTweaks.conf
   5.218  					fi
   5.219  
   5.220 @@ -730,7 +730,7 @@
   5.221  				fi
   5.222  				load_modules
   5.223  				#xorg
   5.224 -				echo -n " Do you want to configure X using free nvidia driver (y/N) ? "; read anser
   5.225 +				echo -n "Do you want to configure X using free nvidia driver (y/N) ? "; read anser
   5.226  				echo ""
   5.227  				if [ "$anser" == "y" ]; then
   5.228  					echo ""
   5.229 @@ -759,7 +759,7 @@
   5.230  				fi
   5.231  				load_modules
   5.232  				#xorg
   5.233 -				echo -n " Do you want to configure X using non-free catalyst ati(radeon) driver (y/N) ? "; read anser
   5.234 +				echo -n "Do you want to configure X using non-free catalyst ati(radeon) driver (y/N) ? "; read anser
   5.235  				echo ""
   5.236  				if [ "$anser" == "y" ]; then
   5.237  					echo "Your previous config is in /etc/X11/xorg.conf.d/60-Device.conf"
   5.238 @@ -791,7 +791,7 @@
   5.239  				fi
   5.240  				load_modules
   5.241  				#xorg
   5.242 -				echo -n " Do you want to configure X using free ati (radeon) driver (y/N) ? "; read anser
   5.243 +				echo -n "Do you want to configure X using free ati (radeon) driver (y/N) ? "; read anser
   5.244  				echo ""
   5.245  				if [ "$anser" == "y" ]; then
   5.246  					echo ""
   5.247 @@ -840,11 +840,11 @@
   5.248  			elif [ "$CONFIRM_SUGGESTED" == "yes" ]; then
   5.249  				echo ""
   5.250  				echo "===================================="
   5.251 -				echo "Following optional packages can be installed:"
   5.252 +				echo "The following optional packages can be installed:"
   5.253  				echo ""
   5.254  				echo "$SUGGESTED"
   5.255  				echo "===================================="
   5.256 -				echo -n " Do you want to install all/few/no optional dependencies (all|few|N) ? "; read anser
   5.257 +				echo -n "Do you want to install all/few/no optional dependencies (all|few|N) ? "; read anser
   5.258  			fi
   5.259  
   5.260  			install "$DEPENDS"
     6.1 --- a/tinyutils/mountbox	Fri Feb 25 01:43:27 2011 +0100
     6.2 +++ b/tinyutils/mountbox	Sun Mar 06 19:58:55 2011 +0000
     6.3 @@ -57,7 +57,7 @@
     6.4  </vbox>
     6.5  </window>'
     6.6  
     6.7 -# Mount and umount buttons with fiel for devive and mount point.
     6.8 +# Mount and umount buttons with fields for device and mount points.
     6.9  MAIN_DIALOG='
    6.10  <window title="Mountbox" icon-name="media-flash">
    6.11  <vbox>
     7.1 --- a/tinyutils/scpbox	Fri Feb 25 01:43:27 2011 +0100
     7.2 +++ b/tinyutils/scpbox	Sun Mar 06 19:58:55 2011 +0000
     7.3 @@ -1,6 +1,6 @@
     7.4  #!/bin/sh
     7.5  # 
     7.6 -# Gtkdialog box interafce for secure file transfer with scp from Dropbear.
     7.7 +# Gtkdialog box interface for secure file transfer with scp from Dropbear.
     7.8  # - SliTaz GNU/Linux 2008-2010.
     7.9  #
    7.10  VERSION=20100314
     8.1 --- a/tinyutils/sshbox	Fri Feb 25 01:43:27 2011 +0100
     8.2 +++ b/tinyutils/sshbox	Sun Mar 06 19:58:55 2011 +0000
     8.3 @@ -1,6 +1,6 @@
     8.4  #! /bin/sh
     8.5  # 
     8.6 -# Gtkdialog box interafce for SSH connexions.
     8.7 +# Gtkdialog box interface for SSH connections.
     8.8  #
     8.9  # Manage profile in .prf files store in $HOME/.sshbox 
    8.10  # (c) 2009 SliTaz GNU/Linux - GNU gpl v3
    8.11 @@ -17,7 +17,7 @@
    8.12  # Create $CONFIG_DIR if it doesn't exist.
    8.13  [ -d $HOME/$CONFIG_DIR/session ] || mkdir -p $CONFIG_DIR/session
    8.14  
    8.15 -# Set locale message if message file exist and $LANG is set.
    8.16 +# Set locale message if message file exists and $LANG is set.
    8.17  # Default: English 
    8.18  if [ -f /usr/share/locale/${LANG%%_*}/LC_MESSAGES/sshbox.msg ]; then
    8.19  	. /usr/share/locale/${LANG%%_*}/LC_MESSAGES/sshbox.msg 
    8.20 @@ -83,7 +83,7 @@
    8.21  
    8.22  gtk_manage_session(){
    8.23  	
    8.24 -	# Read th config file if exist
    8.25 +	# Read the config file if it exists
    8.26  	[ -f "$CONFIG_DIR/session/$SESSION.conf" ] && . "$CONFIG_DIR/session/$SESSION.conf"
    8.27  	
    8.28  	export GTK_MANAGE_SESSION="
    8.29 @@ -297,7 +297,7 @@
    8.30  }
    8.31  
    8.32  read_last_connection(){	
    8.33 -	#Read last connexion
    8.34 +	# Read last connection
    8.35  	[ -f $CONFIG_DIR/last ] &&  . $CONFIG_DIR/last
    8.36  }	
    8.37  
    8.38 @@ -311,7 +311,7 @@
    8.39  	
    8.40  	read_settings
    8.41  	
    8.42 -	#TODO: Move this to another place
    8.43 +	# TODO: Move this to another place
    8.44  	# Save last used profile and start ssh connection
    8.45  	echo "HOSTNAME=$SSH_HOST" > $CONFIG_DIR/last
    8.46  	echo "USERNAME=$SSH_USER" >> $CONFIG_DIR/last
    8.47 @@ -321,7 +321,7 @@
    8.48  	
    8.49  	[ ! -z $SSH_PORT ] && SSH_OPTION="-p $SSH_PORT"
    8.50  	
    8.51 -	#  set terminal options
    8.52 +	# set terminal options
    8.53  	if [ "$XTERM" ==  "sakura" ]; then
    8.54  		OPTION="--title $SSH_USER@$SSH_HOST"
    8.55  	else 
     9.1 --- a/tinyutils/tazfile	Fri Feb 25 01:43:27 2011 +0100
     9.2 +++ b/tinyutils/tazfile	Sun Mar 06 19:58:55 2011 +0000
     9.3 @@ -1,8 +1,8 @@
     9.4  #!/bin/sh
     9.5  # Tazfile - Tiny autonomus zone files locator.
     9.6  #
     9.7 -# This is a lightweight files locator for *.tazpkg files, all written in
     9.8 -# SHell script. It works well with Busybox ash shell and bash. Tazfile let you
     9.9 +# This is a lightweight files locator for *.tazpkg files written in
    9.10 +# SHell script. It works well with Busybox ash shell and bash. Tazfile lets you
    9.11  # create and explore a files list database.
    9.12  #
    9.13  # (C) 2008 SliTaz - GNU General Public License v3.
    9.14 @@ -66,7 +66,7 @@
    9.15  	if [ ! -f "$FILES_LIST" ]; then
    9.16  		echo -e "
    9.17  Unable to find the list : $FILES_LIST\n
    9.18 -You must probably run 'tazfile recharge' as root to get the last list of 
    9.19 +You must probably run 'tazfile recharge' as root to get the latest list of 
    9.20  files available on the mirror.\n"
    9.21  		exit 0
    9.22  	fi
    10.1 --- a/tinyutils/tazx	Fri Feb 25 01:43:27 2011 +0100
    10.2 +++ b/tinyutils/tazx	Sun Mar 06 19:58:55 2011 +0000
    10.3 @@ -92,7 +92,7 @@
    10.4  	# This file will not be erased by any updates." > /etc/X11/xorg.conf
    10.5  }
    10.6  
    10.7 -# Install xorg server
    10.8 +# Install xorg server.
    10.9  install_xorg()
   10.10  {
   10.11  	tazpkg recharge
    11.1 --- a/tinyutils/wifibox	Fri Feb 25 01:43:27 2011 +0100
    11.2 +++ b/tinyutils/wifibox	Sun Mar 06 19:58:55 2011 +0000
    11.3 @@ -304,7 +304,7 @@
    11.4  EOT
    11.5  }
    11.6  
    11.7 -# Independant dialog to connect on a wireless network. If encryption
    11.8 +# Independent dialog to connect to a wireless network. If encryption
    11.9  # is on we ask for the security key.
   11.10  connect_to_essid()
   11.11  {
   11.12 @@ -574,7 +574,7 @@
   11.13  				<label>
   11.14  \"
   11.15  Some Wireless Adapters need non-free firmware. Please install the
   11.16 -firmware before loading the corresponding module. Note you can use 
   11.17 +firmware before loading the corresponding module. Note that you can use 
   11.18  Tazhw to automatically detect your PCI, PCMCIA or USB Wireless adapter.
   11.19  \"
   11.20  				</label>