summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-07-01 21:38:57 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-07-01 21:38:57 +0000
commitd6f35c362901080cca8dd1f90dd5ab2e0a7ba8c4 (patch)
tree4e4555c512b3512ff75c6d2f7ce8eba700f60cff /src
parent33c291c9a945da009ab6849855dc3c66ecc103fa (diff)
downloadpoezio-d6f35c362901080cca8dd1f90dd5ab2e0a7ba8c4.tar.gz
poezio-d6f35c362901080cca8dd1f90dd5ab2e0a7ba8c4.tar.bz2
poezio-d6f35c362901080cca8dd1f90dd5ab2e0a7ba8c4.tar.xz
poezio-d6f35c362901080cca8dd1f90dd5ab2e0a7ba8c4.zip
Update the /join command help message
Diffstat (limited to 'src')
-rw-r--r--src/gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui.py b/src/gui.py
index e7fd8ea8..5f6ac2f0 100644
--- a/src/gui.py
+++ b/src/gui.py
@@ -58,7 +58,7 @@ class Gui(object):
self.commands = {
'help': (self.command_help, u'\_o< KOIN KOIN KOIN'),
- 'join': (self.command_join, _("Usage: /join [room_name][/nick] [password]\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). You can also provide a password to join the room.\nExamples:\n/join room@server.tld\n/join room@server.tld/ John\n/join /me_again\n/join\n/join room@server.tld/my_nick password\n/join / pass")),
+ 'join': (self.command_join, _("Usage: /join [room_name][@server][/nick] [password]\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). You can also provide a room_name without specifying a server, the server of the room you're currently in will be used. You can also provide a password to join the room.\nExamples:\n/join room@server.tld\n/join room@server.tld/John\n/join room2\n/join /me_again\n/join\n/join room@server.tld/my_nick password\n/join / password")),
'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_right, _("Usage: /next\nNext: Go to the next room.")),