summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-10-31 19:03:49 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-10-31 19:03:49 +0000
commit4ecda478ec4424f2f0200104d0692ddafa081ce9 (patch)
treee2ef4642039d81f2cb84bb73c19efb0b6e0f4623
parent6f274225b6c0cdd99fea752688615a574bd2ddd0 (diff)
downloadpoezio-4ecda478ec4424f2f0200104d0692ddafa081ce9.tar.gz
poezio-4ecda478ec4424f2f0200104d0692ddafa081ce9.tar.bz2
poezio-4ecda478ec4424f2f0200104d0692ddafa081ce9.tar.xz
poezio-4ecda478ec4424f2f0200104d0692ddafa081ce9.zip
link mauve: fix a incoherence on '/help show' message
-rw-r--r--src/gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui.py b/src/gui.py
index 21517da0..d3f58460 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -105,7 +105,7 @@ class Gui(object):
'ignore': (self.command_ignore, _("Usage: /ignore <nickname> \nIgnore: Ignore a specified nickname.")),
'unignore': (self.command_unignore, _("Usage: /unignore <nickname>\nUnignore: Remove the specified nickname from the ignore list.")),
'part': (self.command_part, _("Usage: /part [message]\n Part: disconnect from a room. You can specify an optional message.")),
- 'show': (self.command_show, _("Usage: /show <availability> [status]\nShow: Change your availability and (optionaly) your status. The <availability> argument is one of \"avail, available, ok, here, chat, away, afk, dnd, busy, xa\" and the optional [message] argument will be your status message")),
+ 'show': (self.command_show, _("Usage: /show <availability> [status]\nShow: Change your availability and (optionaly) your status. The <availability> argument is one of \"avail, available, ok, here, chat, away, afk, dnd, busy, xa\" and the optional [status] argument will be your status message")),
'away': (self.command_away, _("Usage: /away [message]\nAway: Sets your availability to away and (optional) sets your status message. This is equivalent to '/show away [message]'")),
'busy': (self.command_busy, _("Usage: /busy [message]\nBusy: Sets your availability to busy and (optional) sets your status message. This is equivalent to '/show busy [message]'")),
'avail': (self.command_avail, _("Usage: /avail [message]\nAvail: Sets your availability to available and (optional) sets your status message. This is equivalent to '/show available [message]'")),