tazirc diff tazirc @ rev 12

Tiny edits
author Paul Issott <paul@slitaz.org>
date Wed Jan 15 16:04:21 2014 +0000 (2014-01-15)
parents 1b813a8d6daf
children
line diff
     1.1 --- a/tazirc	Tue Jan 14 23:43:51 2014 +0100
     1.2 +++ b/tazirc	Wed Jan 15 16:04:21 2014 +0000
     1.3 @@ -1,6 +1,6 @@
     1.4  #!/bin/sh
     1.5  #
     1.6 -# TazIRC - SliTaz IRC client: Keep it small! Maybe use a plugins system
     1.7 +# TazIRC - SliTaz IRC client: Keep it small! Maybe use a plugins system.
     1.8  # We use a single temporary text file to send commands to the IRC server
     1.9  # and handle custom user commands such /q to quit.
    1.10  #
    1.11 @@ -19,11 +19,11 @@
    1.12  	colorize 30 "TazIRC - SliTaz IRC Client"
    1.13  }
    1.14  
    1.15 -# Handle ask mode now. So we set $host $nick and optionnaly $chan
    1.16 +# Handle ask mode now. So we set $host $nick and optionally $chan
    1.17  # Ask only for a nick: tazirc --ask --host=irc.freenode.net --chan=slitaz
    1.18  if [ "$ask" ]; then
    1.19  	logo
    1.20 -	gettext "Auto-join a channel is optionnal"; echo ""
    1.21 +	gettext "Auto-join a channel is optional"; echo ""
    1.22  	newline
    1.23  	if [ "$host" ]; then
    1.24  		gettext "IRC server : "; echo "$host"
    1.25 @@ -81,7 +81,7 @@
    1.26  }
    1.27  
    1.28  #
    1.29 -# Start: send login commands to connect to server then handle commands
    1.30 +# Start: send login commands to connect to server, then handle commands
    1.31  #
    1.32  
    1.33  # Hello World!
    1.34 @@ -127,7 +127,7 @@
    1.35  			boldify "$(gettext 'Joining:') #$chan"
    1.36  			echo "JOIN #$chan" >> ${send} ;;
    1.37  		/QUIT|/quit|/q)
    1.38 -			boldify "$(gettext 'Diconnecting from:') $host"
    1.39 +			boldify "$(gettext 'Disconnecting from:') $host"
    1.40  			echo "QUIT" >> ${send}
    1.41  			sleep 1 && rm -f ${send} && break ;;
    1.42  		/*)