summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-08-04 17:22:25 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-08-04 17:22:25 +0200
commit9426b259027a1bb4afb23008daa61e22a0cbff8d (patch)
tree1c848a863bac023db9b0099e768e83637cad1804 /src
parent8da125bbc51480fcfa664bd409924192479c5912 (diff)
downloadpoezio-9426b259027a1bb4afb23008daa61e22a0cbff8d.tar.gz
poezio-9426b259027a1bb4afb23008daa61e22a0cbff8d.tar.bz2
poezio-9426b259027a1bb4afb23008daa61e22a0cbff8d.tar.xz
poezio-9426b259027a1bb4afb23008daa61e22a0cbff8d.zip
Fix 2 typos
Diffstat (limited to 'src')
-rw-r--r--src/tabs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabs.py b/src/tabs.py
index 92cdc094..8f715349 100644
--- a/src/tabs.py
+++ b/src/tabs.py
@@ -403,7 +403,7 @@ class MucTab(ChatTab):
self.commands['kick'] = (self.command_kick, _("Usage: /kick <nick> [reason]\nKick: Kick the user with the specified nickname. You also can give an optional reason."), None)
self.commands['topic'] = (self.command_topic, _("Usage: /topic <subject>\nTopic: Change the subject of the room"), self.completion_topic)
self.commands['query'] = (self.command_query, _('Usage: /query <nick> [message]\nQuery: Open a private conversation with <nick>. This nick has to be present in the room you\'re currently in. If you specified a message after the nickname, it will immediately be sent to this user'), None)
- self.commands['part'] = (self.command_part, _("Usage: /part [message]\n Part: disconnect from a room. You can specify an optional message."), None)
+ self.commands['part'] = (self.command_part, _("Usage: /part [message]\nPart: disconnect from a room. You can specify an optional message."), None)
self.commands['nick'] = (self.command_nick, _("Usage: /nick <nickname>\nNick: Change your nickname in the current room"), None)
self.commands['recolor'] = (self.command_recolor, _('Usage: /recolor\nRecolor: Re-assign a color to all participants of the current room, based on the last time they talked. Use this if the participants currently talking have too many identical colors.'), None)
self.commands['cycle'] = (self.command_cycle, _('Usage: /cycle [message]\nCycle: Leaves the current room and rejoin it immediately'), None)
@@ -983,7 +983,7 @@ class PrivateTab(ChatTab):
# commands
#self.commands['info'] = (self.command_info, _('Usage: /info\nInfo: Display some information about the user in the MUC: '), None)
self.commands['unquery'] = (self.command_unquery, _("Usage: /unquery\nUnquery: close the tab"), None)
- self.commands['part'] = (self.command_unquery, _("Usage: /part\Part: close the tab"), None)
+ self.commands['part'] = (self.command_unquery, _("Usage: /part\nPart: close the tab"), None)
self.resize()
def completion(self):