# HG changeset patch # User Paul Issott # Date 1389801861 0 # Node ID 9238434166c49ac827fd3599b3193551b9047a67 # Parent c89875017506cd1ffbd60beae4403bf421e2c038 Tiny edits diff -r c89875017506 -r 9238434166c4 README --- a/README Tue Jan 14 17:51:54 2014 -0200 +++ b/README Wed Jan 15 16:04:21 2014 +0000 @@ -2,7 +2,7 @@ ================================================================================ -TazIRC provides a small command line IRC client and a IRC Log Bot. Both are +TazIRC provides a small command line IRC client and an IRC Log Bot. Both are entirely written in SHell script and use Busybox nc and libtaz functions. TazIRC can connect to all standardized IRC daemons, handle cmdline options and doesn't have a configuration file. Run tazirc/tazirc-lb without arguments to diff -r c89875017506 -r 9238434166c4 tazirc --- a/tazirc Tue Jan 14 17:51:54 2014 -0200 +++ b/tazirc Wed Jan 15 16:04:21 2014 +0000 @@ -1,6 +1,6 @@ #!/bin/sh # -# TazIRC - SliTaz IRC client: Keep it small! Maybe use a plugins system +# TazIRC - SliTaz IRC client: Keep it small! Maybe use a plugins system. # We use a single temporary text file to send commands to the IRC server # and handle custom user commands such /q to quit. # @@ -19,11 +19,11 @@ colorize 30 "TazIRC - SliTaz IRC Client" } -# Handle ask mode now. So we set $host $nick and optionnaly $chan +# Handle ask mode now. So we set $host $nick and optionally $chan # Ask only for a nick: tazirc --ask --host=irc.freenode.net --chan=slitaz if [ "$ask" ]; then logo - gettext "Auto-join a channel is optionnal"; echo "" + gettext "Auto-join a channel is optional"; echo "" newline if [ "$host" ]; then gettext "IRC server : "; echo "$host" @@ -81,7 +81,7 @@ } # -# Start: send login commands to connect to server then handle commands +# Start: send login commands to connect to server, then handle commands # # Hello World! @@ -127,7 +127,7 @@ boldify "$(gettext 'Joining:') #$chan" echo "JOIN #$chan" >> ${send} ;; /QUIT|/quit|/q) - boldify "$(gettext 'Diconnecting from:') $host" + boldify "$(gettext 'Disconnecting from:') $host" echo "QUIT" >> ${send} sleep 1 && rm -f ${send} && break ;; /*) diff -r c89875017506 -r 9238434166c4 tazirc-lb --- a/tazirc-lb Tue Jan 14 17:51:54 2014 -0200 +++ b/tazirc-lb Wed Jan 15 16:04:21 2014 +0000 @@ -21,7 +21,7 @@ --nick= $(gettext "Set the Bot IRC nickname") --mode= $(gettext "Use specified mode. Default: +i") --port= $(gettext "Use specified port. Default: 6667") - --dest= $(gettext "Logs files destination path") + --dest= $(gettext "Log files destination path") EOT exit 0