Changeset f594ad2997b55e779f6fcdad3cdacaba080bf9ff

Show
Ignore:
Timestamp:
06/19/08 03:41:53 (4 years ago)
Author:
Lincoln de Sousa <lincoln@…>
Children:
c047c21fd33ccb1baca8957e9a32afb46e24f015
Parents:
d146fa2a10d3abe97ba77c21c22165e06c5e9425
git-committer:
Lincoln de Sousa <lincoln@…> (06/19/08 03:41:53)
Message:

Fixing some wrong gettext calls

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rd146fa2 rf594ad2  
     12008-06-19  Lincoln de Sousa  <lincoln@minaslivre.org> 
     2 
     3        * src/guake.py: Fixing some gettext calls, patch by 
     4        infinito. Closes #27. 
     5 
    162008-06-19  Lincoln de Sousa  <lincoln@minaslivre.org> 
    27 
  • src/guake.py

    rd146fa2 rf594ad2  
    485485                model.set(giter, 2, accel) 
    486486                raise ShowableError(_('key binding error'), 
    487                         _('Unable to bind %s key' % key), -1) 
     487                        _('Unable to bind %s key') % key, -1) 
    488488        else: 
    489489            # ungrabing local keys 
     
    579579                _('A problem happened when binding <b>%s</b> key.\n' 
    580580                  'Please use guake properties form to choose another ' 
    581                   'key' % key), filename) 
     581                  'key') % key, filename) 
    582582        else: 
    583583            n = pynotify.Notification(_('Guake!'), 
    584584                _('Guake is already running,\n' 
    585                   'press <b>%s</b> to use it.' % key), filename) 
     585                  'press <b>%s</b> to use it.') % key, filename) 
    586586        n.show() 
    587587