Ticket #2814: string_typos.diff
| File string_typos.diff, 10.9 kB (added by Yavor Doganov <yavor@…>, 2 years ago) |
|---|
-
src/config.py
2332 2332 self.room_jid = room_jid 2333 2333 self.remove_button = {} 2334 2334 self.affiliation_treeview = {} 2335 self.list_init = {} # list at the begin ing2335 self.list_init = {} # list at the beginning 2336 2336 ui_list = {'outcast': _('Ban List'), 2337 2337 'member': _('Member List'), 2338 2338 'owner': _('Owner List'), … … 3115 3115 self.show_vcard_checkbutton.hide() 3116 3116 img = self.xml.get_widget('finish_image') 3117 3117 img.set_from_stock(gtk.STOCK_DIALOG_ERROR, gtk.ICON_SIZE_DIALOG) 3118 finish_text = '<big><b>%s</b></big>\n\n%s' % (_('An error occur ed during '3118 finish_text = '<big><b>%s</b></big>\n\n%s' % (_('An error occurred during ' 3119 3119 'account creation') , reason) 3120 3120 self.finish_label.set_markup(finish_text) 3121 3121 self.notebook.set_current_page(3) # show finish page -
src/roster_window.py
3956 3956 pritext = _('You are about to create a metacontact. Are you sure you want' 3957 3957 ' to continue?') 3958 3958 sectext = _('Metacontacts are a way to regroup several contacts in one ' 3959 'line. General y it is used when the same person has several Jabber '3959 'line. Generally it is used when the same person has several Jabber ' 3960 3960 'accounts or transport accounts.') 3961 3961 dlg = dialogs.ConfirmationDialogCheck(pritext, sectext, 3962 3962 _('Do _not ask me again'), on_response_ok = merge_contacts) -
src/gajim-remote.py
211 211 ], 212 212 213 213 'get_unread_msgs_number': [ 214 _('Returns number of unread edmessages'),214 _('Returns number of unread messages'), 215 215 [ ] 216 216 ], 217 217 'start_chat': [ -
src/dialogs.py
905 905 def __init__(self, port): 906 906 ErrorDialog(_('Unable to bind to port %s.') % port, 907 907 _('Maybe you have another running instance of Gajim. ' 908 'File Transfer will be cancel ed.'))908 'File Transfer will be cancelled.')) 909 909 910 910 class ConfirmationDialog(HigDialog): 911 911 '''HIG compliant confirmation dialog.''' -
src/gajim.py
44 44 import gtk 45 45 except RuntimeError, msg: 46 46 if str(msg) == 'could not open display': 47 print >> sys.stderr, _('Gajim needs X server to run. Quiting...')47 print >> sys.stderr, _('Gajim needs X server to run. Quiting...') 48 48 sys.exit() 49 49 pritext = '' 50 50 if gtk.pygtk_version < (2, 6, 0): -
src/filetransfers_window.py
201 201 has been canceled''' 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 207 207 def show_send_error(self, file_props): … … 209 209 has been canceled''' 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() 215 215 -
src/common/helpers.py
349 349 elif chatstate == 'composing': 350 350 return _('is composing a message...') 351 351 elif chatstate == 'paused': 352 #paused means he or she was compo ing but has stopped for a while352 #paused means he or she was composing but has stopped for a while 353 353 return _('paused composing a message') 354 354 elif chatstate == 'gone': 355 355 return _('has closed the chat window or tab') -
src/common/config.py
216 216 'hide_chat_banner': [opt_bool, False, _('Hides the banner in two persons chat window')], 217 217 'hide_groupchat_occupants_list': [opt_bool, False, _('Hides the group chat occupants list in group chat window.')], 218 218 'chat_merge_consecutive_nickname': [opt_bool, False, _('In a chat, show the nickname at the beginning of a line only when it\'s not the same person talking than in previous message.')], 219 'chat_merge_consecutive_nickname_indent': [opt_str, ' ', _('Indentation when using merge consecutive nick ame.')],219 'chat_merge_consecutive_nickname_indent': [opt_str, ' ', _('Indentation when using merge consecutive nickname.')], 220 220 'gc_nicknames_colors': [ opt_str, '#a34526:#c000ff:#0012ff:#388a99:#045723:#7c7c7c:#ff8a00:#94452d:#244b5a:#32645a', _('List of colors that will be used to color nicknames in group chats.'), True ], 221 221 'ctrl_tab_go_to_next_composing': [opt_bool, True, _('Ctrl-Tab go to next composing tab when none is unread.')], 222 222 'confirm_metacontacts': [ opt_str, '', _('Should we show the confirm metacontacts creation dialog or not? Empty string means we never show the dialog.')], 223 'enable_negative_priority': [ opt_bool, False, _('If True, you will be able to set a negative priority to your account in account modification window. BE CAREFUL L, when you are logged in with a negative priority, you will NOT receive any message from your server.')],223 'enable_negative_priority': [ opt_bool, False, _('If True, you will be able to set a negative priority to your account in account modification window. BE CAREFUL, when you are logged in with a negative priority, you will NOT receive any message from your server.')], 224 224 } 225 225 226 226 __options_per_key = { -
src/common/optparser.py
299 299 300 300 def update_config_to_01014(self): 301 301 '''apply indeces to the logs database''' 302 print _('migrating logs database to ind eces')302 print _('migrating logs database to indices') 303 303 con = sqlite.connect(logger.LOG_DB_PATH) 304 304 cur = con.cursor() 305 305 # apply indeces -
src/chat_control.py
49 49 ##!/bin/sh 50 50 #LANG=$(for i in *.po; do j=${i/.po/}; echo -n "_('"$j"')":" '"$j"', " ; done) 51 51 #echo "{_('en'):'en'",$LANG"}" 52 langs = {_('English'): 'en', _('Bulgarian'): 'bg', _('Briton'): 'br', _('Czech'): 'cs', _('German'): 'de', _('Greek'): 'el', _('Esperanto'): 'eo', _('Spanish'): 'es', _('Basc'): 'eu', _('French'): 'fr', _('Croatian'): 'hr', _('Italian'): 'it', _('Nor vegian b'): 'nb', _('Dutch'): 'nl', _('Norvegian'): 'no', _('Polish'): 'pl', _('Portuguese'): 'pt', _('Brazilian Portuguese'): 'pt_BR', _('Russian'): 'ru', _('Slovak'): 'sk', _('Swedish'): 'sv', _('Chinese (Ch)'): 'zh_CN'}52 langs = {_('English'): 'en', _('Bulgarian'): 'bg', _('Briton'): 'br', _('Czech'): 'cs', _('German'): 'de', _('Greek'): 'el', _('Esperanto'): 'eo', _('Spanish'): 'es', _('Basc'): 'eu', _('French'): 'fr', _('Croatian'): 'hr', _('Italian'): 'it', _('Norwegian b'): 'nb', _('Dutch'): 'nl', _('Norwegian'): 'no', _('Polish'): 'pl', _('Portuguese'): 'pt', _('Brazilian Portuguese'): 'pt_BR', _('Russian'): 'ru', _('Slovak'): 'sk', _('Swedish'): 'sv', _('Chinese (Ch)'): 'zh_CN'} 53 53 54 54 55 55 ################################################################################ -
data/glade/advanced_notifications_window.glade
282 282 Contact Change Status 283 283 Group Chat Message Highlight 284 284 Group Chat Message Received 285 File Transfer t Resquest286 File Transfer tStarted287 File Transfer tFinished</property>285 File Transfer Request 286 File Transfer Started 287 File Transfer Finished</property> 288 288 <property name="add_tearoffs">False</property> 289 289 <property name="focus_on_click">True</property> 290 290 <signal name="changed" handler="on_event_combobox_changed" last_modification_time="Sun, 09 Jul 2006 01:54:11 GMT"/> -
data/glade/filetransfers.glade
81 81 <widget class="GtkButton" id="cleanup_button"> 82 82 <property name="visible">True</property> 83 83 <property name="sensitive">False</property> 84 <property name="tooltip" translatable="yes">Removes completed, cancel ed and failed file transfers from the list</property>84 <property name="tooltip" translatable="yes">Removes completed, cancelled and failed file transfers from the list</property> 85 85 <property name="can_default">True</property> 86 86 <property name="can_focus">True</property> 87 87 <property name="relief">GTK_RELIEF_NORMAL</property> -
data/glade/account_modification_window.glade
440 440 <widget class="GtkCheckButton" id="autoreconnect_checkbutton"> 441 441 <property name="visible">True</property> 442 442 <property name="can_focus">True</property> 443 <property name="label" translatable="yes">Auto reconnect when connection is lost</property>443 <property name="label" translatable="yes">Auto-reconnect when connection is lost</property> 444 444 <property name="use_underline">True</property> 445 445 <property name="relief">GTK_RELIEF_NORMAL</property> 446 446 <property name="focus_on_click">True</property> -
data/glade/adhoc_commands_window.glade
542 542 <child> 543 543 <widget class="GtkLabel" id="label257"> 544 544 <property name="visible">True</property> 545 <property name="label" translatable="yes"><b>An error has occur ed:</b></property>545 <property name="label" translatable="yes"><b>An error has occurred:</b></property> 546 546 <property name="use_underline">False</property> 547 547 <property name="use_markup">True</property> 548 548 <property name="justify">GTK_JUSTIFY_LEFT</property>
