summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-11 13:08:42 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-02-11 13:08:42 +0000
commite6d1b3f1fe92e8555673107894803919f2966481 (patch)
tree70a0f784f81001f4bb587d8d1dab15644c400e18 /src
parentc638055b244780fd7c3700165aace9b6bfceae92 (diff)
downloadpoezio-e6d1b3f1fe92e8555673107894803919f2966481.tar.gz
poezio-e6d1b3f1fe92e8555673107894803919f2966481.tar.bz2
poezio-e6d1b3f1fe92e8555673107894803919f2966481.tar.xz
poezio-e6d1b3f1fe92e8555673107894803919f2966481.zip
fix rotation with /prev /next
Diffstat (limited to 'src')
-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]"')),