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': [
_('Returns current status (the global one unless account is specified)'),
[
(_('account'), _(''), False)
(_('account'), '', False)
]
],
'get_status_message': [
_('Returns current status message(the global one unless account is specified)'),
[
(_('account'), _(''), False)
(_('account'), '', False)
]
],
@ -251,17 +251,19 @@ class GajimRemote:
'handle_uri': [
_('Handle a xmpp:/ uri'),
[
(_('uri'), _(''), True),
(_('account'), _(''), False)
(_('uri'), _('URI to handle'), True),
(_('account'), _('Account in which you want to handle it'),
False)
]
],
'join_room': [
_('Join a MUC room'),
[
(_('room'), _(''), True),
(_('nick'), _(''), False),
(_('password'), _(''), False),
(_('account'), _(''), False)
(_('room'), _('Room JID'), True),
(_('nick'), _('Nickname to use'), False),
(_('password'), _('Password to enter the room'), False),
(_('account'), _('Account from which you want to enter the '
'room'), False)
]
],
'check_gajim_running':[
@ -545,4 +547,4 @@ class GajimRemote:
if __name__ == '__main__':
GajimRemote()
# vim: se ts=3:
# vim: se ts=3: