Ticket #2814: string_typos.diff

File string_typos.diff, 10.9 kB (added by Yavor Doganov <yavor@…>, 2 years ago)

patch for strings/comments' typos

  • src/config.py

     
    23322332                self.room_jid = room_jid 
    23332333                self.remove_button = {} 
    23342334                self.affiliation_treeview = {} 
    2335                 self.list_init = {} # list at the begining 
     2335                self.list_init = {} # list at the beginning 
    23362336                ui_list = {'outcast': _('Ban List'), 
    23372337                        'member': _('Member List'), 
    23382338                        'owner': _('Owner List'), 
     
    31153115                self.show_vcard_checkbutton.hide() 
    31163116                img = self.xml.get_widget('finish_image') 
    31173117                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 occured during ' 
     3118                finish_text = '<big><b>%s</b></big>\n\n%s' % (_('An error occurred during ' 
    31193119                        'account creation') , reason) 
    31203120                self.finish_label.set_markup(finish_text) 
    31213121                self.notebook.set_current_page(3) # show finish page 
  • src/roster_window.py

     
    39563956                pritext = _('You are about to create a metacontact. Are you sure you want' 
    39573957                        ' to continue?') 
    39583958                sectext = _('Metacontacts are a way to regroup several contacts in one ' 
    3959                         'line. Generaly it is used when the same person has several Jabber ' 
     3959                        'line. Generally it is used when the same person has several Jabber ' 
    39603960                        'accounts or transport accounts.') 
    39613961                dlg = dialogs.ConfirmationDialogCheck(pritext, sectext, 
    39623962                        _('Do _not ask me again'), on_response_ok = merge_contacts) 
  • src/gajim-remote.py

     
    211211                                ],                               
    212212 
    213213                        'get_unread_msgs_number': [ 
    214                                 _('Returns number of unreaded messages'), 
     214                                _('Returns number of unread messages'), 
    215215                                        [ ] 
    216216                                ], 
    217217                        'start_chat': [ 
  • src/dialogs.py

     
    905905        def __init__(self, port): 
    906906                ErrorDialog(_('Unable to bind to port %s.') % port, 
    907907                        _('Maybe you have another running instance of Gajim. ' 
    908                         'File Transfer will be canceled.')) 
     908                        'File Transfer will be cancelled.')) 
    909909 
    910910class ConfirmationDialog(HigDialog): 
    911911        '''HIG compliant confirmation dialog.''' 
  • src/gajim.py

     
    4444        import gtk 
    4545except RuntimeError, msg: 
    4646        if str(msg) == 'could not open display': 
    47                 print >> sys.stderr, _('Gajim needs Xserver to run. Quiting...') 
     47                print >> sys.stderr, _('Gajim needs X server to run. Quiting...') 
    4848                sys.exit() 
    4949pritext = '' 
    5050if gtk.pygtk_version < (2, 6, 0): 
  • src/filetransfers_window.py

     
    201201                has been canceled''' 
    202202                self.window.present() 
    203203                self.window.window.focus() 
    204                 dialogs.InformationDialog(_('File transfer canceled'), _('Connection with peer cannot be established.')) 
     204                dialogs.InformationDialog(_('File transfer cancelled'), _('Connection with peer cannot be established.')) 
    205205                self.tree.get_selection().unselect_all() 
    206206 
    207207        def show_send_error(self, file_props): 
     
    209209                has been canceled''' 
    210210                self.window.present() 
    211211                self.window.window.focus() 
    212                 dialogs.InformationDialog(_('File transfer canceled'), 
     212                dialogs.InformationDialog(_('File transfer cancelled'), 
    213213_('Connection with peer cannot be established.')) 
    214214                self.tree.get_selection().unselect_all() 
    215215 
  • src/common/helpers.py

     
    349349        elif chatstate == 'composing': 
    350350                return _('is composing a message...') 
    351351        elif chatstate == 'paused': 
    352                 #paused means he or she was compoing but has stopped for a while 
     352                #paused means he or she was composing but has stopped for a while 
    353353                return _('paused composing a message') 
    354354        elif chatstate == 'gone': 
    355355                return _('has closed the chat window or tab') 
  • src/common/config.py

     
    216216                'hide_chat_banner': [opt_bool, False, _('Hides the banner in two persons chat window')], 
    217217                'hide_groupchat_occupants_list': [opt_bool, False, _('Hides the group chat occupants list in group chat window.')], 
    218218                '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 nickame.')], 
     219                'chat_merge_consecutive_nickname_indent': [opt_str, '  ', _('Indentation when using merge consecutive nickname.')], 
    220220                '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 ], 
    221221                'ctrl_tab_go_to_next_composing': [opt_bool, True, _('Ctrl-Tab go to next composing tab when none is unread.')], 
    222222                '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 CAREFULL, 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.')], 
    224224        } 
    225225 
    226226        __options_per_key = { 
  • src/common/optparser.py

     
    299299 
    300300        def update_config_to_01014(self): 
    301301                '''apply indeces to the logs database''' 
    302                 print _('migrating logs database to indeces') 
     302                print _('migrating logs database to indices') 
    303303                con = sqlite.connect(logger.LOG_DB_PATH)  
    304304                cur = con.cursor() 
    305305                # apply indeces 
  • src/chat_control.py

     
    4949##!/bin/sh 
    5050#LANG=$(for i in *.po; do  j=${i/.po/}; echo -n "_('"$j"')":" '"$j"', " ; done) 
    5151#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', _('Norvegian b'): 'nb', _('Dutch'): 'nl', _('Norvegian'): 'no', _('Polish'): 'pl', _('Portuguese'): 'pt', _('Brazilian Portuguese'): 'pt_BR', _('Russian'): 'ru', _('Slovak'): 'sk', _('Swedish'): 'sv', _('Chinese (Ch)'): 'zh_CN'} 
     52langs = {_('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'} 
    5353 
    5454 
    5555################################################################################ 
  • data/glade/advanced_notifications_window.glade

     
    282282Contact Change Status  
    283283Group Chat Message Highlight  
    284284Group Chat Message Received  
    285 File Transfert Resquest  
    286 File Transfert Started  
    287 File Transfert Finished</property> 
     285File Transfer Request  
     286File Transfer Started  
     287File Transfer Finished</property> 
    288288                      <property name="add_tearoffs">False</property> 
    289289                      <property name="focus_on_click">True</property> 
    290290                      <signal name="changed" handler="on_event_combobox_changed" last_modification_time="Sun, 09 Jul 2006 01:54:11 GMT"/> 
  • data/glade/filetransfers.glade

     
    8181            <widget class="GtkButton" id="cleanup_button"> 
    8282              <property name="visible">True</property> 
    8383              <property name="sensitive">False</property> 
    84               <property name="tooltip" translatable="yes">Removes completed, canceled 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> 
    8585              <property name="can_default">True</property> 
    8686              <property name="can_focus">True</property> 
    8787              <property name="relief">GTK_RELIEF_NORMAL</property> 
  • data/glade/account_modification_window.glade

     
    440440                <widget class="GtkCheckButton" id="autoreconnect_checkbutton"> 
    441441                  <property name="visible">True</property> 
    442442                  <property name="can_focus">True</property> 
    443                   <property name="label" translatable="yes">Autoreconnect when connection is lost</property> 
     443                  <property name="label" translatable="yes">Auto-reconnect when connection is lost</property> 
    444444                  <property name="use_underline">True</property> 
    445445                  <property name="relief">GTK_RELIEF_NORMAL</property> 
    446446                  <property name="focus_on_click">True</property> 
  • data/glade/adhoc_commands_window.glade

     
    542542              <child> 
    543543                <widget class="GtkLabel" id="label257"> 
    544544                  <property name="visible">True</property> 
    545                   <property name="label" translatable="yes">&lt;b&gt;An error has occured:&lt;/b&gt;</property> 
     545                  <property name="label" translatable="yes">&lt;b&gt;An error has occurred:&lt;/b&gt;</property> 
    546546                  <property name="use_underline">False</property> 
    547547                  <property name="use_markup">True</property> 
    548548                  <property name="justify">GTK_JUSTIFY_LEFT</property>