From eaf9f1c3bc556e885fb3dfb6e246d6e311c7bd59 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 1 Aug 2008 12:05:01 +0000 Subject: [PATCH] don't translate empty string. fixes #4170 --- src/gajim-remote.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/gajim-remote.py b/src/gajim-remote.py index 05c2dccb3..0a2beadd0 100755 --- a/src/gajim-remote.py +++ b/src/gajim-remote.py @@ -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: \ No newline at end of file +# vim: se ts=3: