don't translate empty string. fixes #4170

This commit is contained in:
Yann Leboulanger 2008-08-01 12:05:01 +00:00
parent 409a1c315a
commit eaf9f1c3bc
1 changed files with 11 additions and 9 deletions

View File

@ -218,14 +218,14 @@ class GajimRemote:
'get_status': [ 'get_status': [
_('Returns current status (the global one unless account is specified)'), _('Returns current status (the global one unless account is specified)'),
[ [
(_('account'), _(''), False) (_('account'), '', False)
] ]
], ],
'get_status_message': [ 'get_status_message': [
_('Returns current status message(the global one unless account is specified)'), _('Returns current status message(the global one unless account is specified)'),
[ [
(_('account'), _(''), False) (_('account'), '', False)
] ]
], ],
@ -251,17 +251,19 @@ class GajimRemote:
'handle_uri': [ 'handle_uri': [
_('Handle a xmpp:/ uri'), _('Handle a xmpp:/ uri'),
[ [
(_('uri'), _(''), True), (_('uri'), _('URI to handle'), True),
(_('account'), _(''), False) (_('account'), _('Account in which you want to handle it'),
False)
] ]
], ],
'join_room': [ 'join_room': [
_('Join a MUC room'), _('Join a MUC room'),
[ [
(_('room'), _(''), True), (_('room'), _('Room JID'), True),
(_('nick'), _(''), False), (_('nick'), _('Nickname to use'), False),
(_('password'), _(''), False), (_('password'), _('Password to enter the room'), False),
(_('account'), _(''), False) (_('account'), _('Account from which you want to enter the '
'room'), False)
] ]
], ],
'check_gajim_running':[ 'check_gajim_running':[