Changeset f594ad2997b55e779f6fcdad3cdacaba080bf9ff
- 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:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rd146fa2
|
rf594ad2
|
|
| | 1 | 2008-06-19 Lincoln de Sousa <lincoln@minaslivre.org> |
| | 2 | |
| | 3 | * src/guake.py: Fixing some gettext calls, patch by |
| | 4 | infinito. Closes #27. |
| | 5 | |
| 1 | 6 | 2008-06-19 Lincoln de Sousa <lincoln@minaslivre.org> |
| 2 | 7 | |
-
|
rd146fa2
|
rf594ad2
|
|
| 485 | 485 | model.set(giter, 2, accel) |
| 486 | 486 | raise ShowableError(_('key binding error'), |
| 487 | | _('Unable to bind %s key' % key), -1) |
| | 487 | _('Unable to bind %s key') % key, -1) |
| 488 | 488 | else: |
| 489 | 489 | # ungrabing local keys |
| … |
… |
|
| 579 | 579 | _('A problem happened when binding <b>%s</b> key.\n' |
| 580 | 580 | 'Please use guake properties form to choose another ' |
| 581 | | 'key' % key), filename) |
| | 581 | 'key') % key, filename) |
| 582 | 582 | else: |
| 583 | 583 | n = pynotify.Notification(_('Guake!'), |
| 584 | 584 | _('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) |
| 586 | 586 | n.show() |
| 587 | 587 | |