Changeset 7787 for branches/gajim_0.11/src/groupchat_control.py
- Timestamp:
- 01/06/07 12:00:50 (23 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11/src/groupchat_control.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11/src/groupchat_control.py
r7677 r7787 879 879 for old_file in files: 880 880 if os.path.exists(old_file): 881 if os.path.exists(files[old_file]): 882 # Windows require this 883 os.remove(files[old_file]) 881 884 os.rename(old_file, files[old_file]) 882 885 self.print_conversation(s, 'info') … … 1258 1261 elif command == 'chat' or command == 'query': 1259 1262 self.print_conversation(_('Usage: /%s <nickname>, opens a private chat' 1260 ' window tothe specified occupant.') % command, 'info')1263 ' window with the specified occupant.') % command, 'info') 1261 1264 elif command == 'clear': 1262 1265 self.print_conversation( … … 1287 1290 elif command == 'msg': 1288 1291 s = _('Usage: /%s <nickname> [message], opens a private message window' 1289 ' and sends message to the occupant specified by nickname.') % \1292 ' and sends message to the occupant specified by nickname.') % \ 1290 1293 command 1291 1294 self.print_conversation(s, 'info')
