From 91ced4d39113cdfcd6693ee4b15660c6c3d1a678 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 25 Sep 2016 07:37:58 +0200 Subject: Normalise the user-facing name of MUC from chatroom to room everywhere. --- poezio/core/core.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'poezio/core/core.py') diff --git a/poezio/core/core.py b/poezio/core/core.py index 6d20fdf7..2ec71cb2 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -541,7 +541,7 @@ class Core(object): 'It seems that it is the first time you start poezio.\n' 'The online help is here http://doc.poez.io/\n' 'No room is joined by default, but you can join poezio’s' - ' chatroom (with /join poezio@muc.poez.io), where you can' + ' room (with /join poezio@muc.poez.io), where you can' ' ask for help or tell us how great it is.', 'Help') self.refresh_window() @@ -1319,7 +1319,7 @@ class Core(object): Disable private tabs when leaving a room """ if reason is None: - reason = '\x195}You left the chatroom\x193}' + reason = '\x195}You left the room\x193}' for tab in self.get_tabs(tabs.PrivateTab): if tab.name.startswith(room_name): tab.deactivate(reason=reason) @@ -1329,7 +1329,7 @@ class Core(object): Enable private tabs when joining a room """ if reason is None: - reason = '\x195}You joined the chatroom\x193}' + reason = '\x195}You joined the room\x193}' for tab in self.get_tabs(tabs.PrivateTab): if tab.name.startswith(room_name): tab.activate(reason=reason) @@ -1844,7 +1844,7 @@ class Core(object): completion=self.completion.theme) self.register_command('list', self.command.list, usage='[server]', - desc="Get the list of public chatrooms" + desc="Get the list of public rooms" " on the specified server.", shortdesc='List the rooms.', completion=self.completion.list) -- cgit v1.2.3