summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui.py b/src/gui.py
index f6f0a5e2..d5cb33de 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -174,8 +174,8 @@ class Gui(object):
'join': (self.command_join, _('Usage: /join [room_name][/nick]\nJoin: Join the specified room. You can specify a nickname after a slash (/). If no nickname is specified, you will use the default_nick in the configuration file. You can omit the room name: you will then join the room you\'re looking at (useful if you were kicked). Examples:\n/join room@server.tld\n/join room@server.tld/John\n/join /me_again\n/join')),
'quit': (self.command_quit, _('Usage: /quit\nQuit: Just disconnect from the server and exit poezio.')),
'exit': (self.command_quit, _('Usage: /exit\nExit: Just disconnect from the server and exit poezio.')),
- 'next': (self.rotate_rooms_left, _('Usage: /next\nNext: Go to the next room.')),
- 'prev': (self.rotate_rooms_right, _('Usage: /prev\nPrev: Go to the previous room.')),
+ 'next': (self.rotate_rooms_right, _('Usage: /next\nNext: Go to the next room.')),
+ 'prev': (self.rotate_rooms_left, _('Usage: /prev\nPrev: Go to the previous room.')),
'part': (self.command_part, _('Usage: /part [message]\nPart: disconnect from a room. You can specify an optional message.')),
'show': (self.command_show, _(u'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')),
'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]"')),