Changeset 7787 for branches/gajim_0.11/src/filetransfers_window.py
- Timestamp:
- 01/06/07 12:00:50 (2 years ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11/src/filetransfers_window.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11/src/filetransfers_window.py
r7659 r7787 202 202 self.window.present() 203 203 self.window.window.focus() 204 dialogs.InformationDialog(_('File transfer cancel ed'), _('Connection with peer cannot be established.'))204 dialogs.InformationDialog(_('File transfer cancelled'), _('Connection with peer cannot be established.')) 205 205 self.tree.get_selection().unselect_all() 206 206 … … 210 210 self.window.present() 211 211 self.window.window.focus() 212 dialogs.InformationDialog(_('File transfer cancel ed'),212 dialogs.InformationDialog(_('File transfer cancelled'), 213 213 _('Connection with peer cannot be established.')) 214 214 self.tree.get_selection().unselect_all() … … 225 225 if error_msg: 226 226 sectext += '\n\t' + _('Error message: %s') % error_msg 227 dialogs.ErrorDialog(_('File transfer stopped by the contact of the other side'), \228 sectext)227 dialogs.ErrorDialog(_('File transfer stopped by the contact at the other ' 228 'end'), sectext) 229 229 self.tree.get_selection().unselect_all() 230 230
