tazirc rev 12

Tiny edits
author Paul Issott <paul@slitaz.org>
date Wed Jan 15 16:04:21 2014 +0000 (2014-01-15)
parents c89875017506
children 7a4aef5f8a91
files README tazirc tazirc-lb
line diff
     1.1 --- a/README	Tue Jan 14 17:51:54 2014 -0200
     1.2 +++ b/README	Wed Jan 15 16:04:21 2014 +0000
     1.3 @@ -2,7 +2,7 @@
     1.4  ================================================================================
     1.5  
     1.6  
     1.7 -TazIRC provides a small command line IRC client and a IRC Log Bot. Both are 
     1.8 +TazIRC provides a small command line IRC client and an IRC Log Bot. Both are 
     1.9  entirely written in SHell script and use Busybox nc and libtaz functions.
    1.10  TazIRC can connect to all standardized IRC daemons, handle cmdline options and
    1.11  doesn't have a configuration file. Run tazirc/tazirc-lb without arguments to 
     2.1 --- a/tazirc	Tue Jan 14 17:51:54 2014 -0200
     2.2 +++ b/tazirc	Wed Jan 15 16:04:21 2014 +0000
     2.3 @@ -1,6 +1,6 @@
     2.4  #!/bin/sh
     2.5  #
     2.6 -# TazIRC - SliTaz IRC client: Keep it small! Maybe use a plugins system
     2.7 +# TazIRC - SliTaz IRC client: Keep it small! Maybe use a plugins system.
     2.8  # We use a single temporary text file to send commands to the IRC server
     2.9  # and handle custom user commands such /q to quit.
    2.10  #
    2.11 @@ -19,11 +19,11 @@
    2.12  	colorize 30 "TazIRC - SliTaz IRC Client"
    2.13  }
    2.14  
    2.15 -# Handle ask mode now. So we set $host $nick and optionnaly $chan
    2.16 +# Handle ask mode now. So we set $host $nick and optionally $chan
    2.17  # Ask only for a nick: tazirc --ask --host=irc.freenode.net --chan=slitaz
    2.18  if [ "$ask" ]; then
    2.19  	logo
    2.20 -	gettext "Auto-join a channel is optionnal"; echo ""
    2.21 +	gettext "Auto-join a channel is optional"; echo ""
    2.22  	newline
    2.23  	if [ "$host" ]; then
    2.24  		gettext "IRC server : "; echo "$host"
    2.25 @@ -81,7 +81,7 @@
    2.26  }
    2.27  
    2.28  #
    2.29 -# Start: send login commands to connect to server then handle commands
    2.30 +# Start: send login commands to connect to server, then handle commands
    2.31  #
    2.32  
    2.33  # Hello World!
    2.34 @@ -127,7 +127,7 @@
    2.35  			boldify "$(gettext 'Joining:') #$chan"
    2.36  			echo "JOIN #$chan" >> ${send} ;;
    2.37  		/QUIT|/quit|/q)
    2.38 -			boldify "$(gettext 'Diconnecting from:') $host"
    2.39 +			boldify "$(gettext 'Disconnecting from:') $host"
    2.40  			echo "QUIT" >> ${send}
    2.41  			sleep 1 && rm -f ${send} && break ;;
    2.42  		/*)
     3.1 --- a/tazirc-lb	Tue Jan 14 17:51:54 2014 -0200
     3.2 +++ b/tazirc-lb	Wed Jan 15 16:04:21 2014 +0000
     3.3 @@ -21,7 +21,7 @@
     3.4    --nick=    $(gettext "Set the Bot IRC nickname")
     3.5    --mode=    $(gettext "Use specified mode. Default: +i")
     3.6    --port=    $(gettext "Use specified port. Default: 6667")
     3.7 -  --dest=    $(gettext "Logs files destination path")
     3.8 +  --dest=    $(gettext "Log files destination path")
     3.9  
    3.10  EOT
    3.11  	exit 0