From f088e4203aa788fbfaaa5776399279de52b24d57 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 18 Jul 2005 16:40:12 +0000 Subject: [PATCH] higging --- src/chat.py | 6 +++--- src/config.py | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/chat.py b/src/chat.py index 058d33e5c..6fe2f9242 100644 --- a/src/chat.py +++ b/src/chat.py @@ -570,16 +570,16 @@ class Chat: else: link = 'http://%s.wikipedia.org/wiki/%s'\ %(gajim.LANG, self.selected_phrase) - item = gtk.MenuItem(_('Read _Wikipedia article')) + item = gtk.MenuItem(_('Read _Wikipedia Article')) item.connect('activate', self.visit_url_from_menuitem, link) submenu.append(item) - item = gtk.MenuItem(_('Look it up in _dictionary')) + item = gtk.MenuItem(_('Look it up in _Dictionary')) link = gajim.config.get('dictionary_url') + self.selected_phrase item.connect('activate', self.visit_url_from_menuitem, link) submenu.append(item) - item = gtk.MenuItem(_('Web _search for it')) + item = gtk.MenuItem(_('Web _Search for it')) gajim.config.get('search_engine') link = gajim.config.get('search_engine') + self.selected_phrase +\ '&sourceid=gajim' diff --git a/src/config.py b/src/config.py index 8e164b86d..842b89fae 100644 --- a/src/config.py +++ b/src/config.py @@ -1082,16 +1082,16 @@ class AccountModificationWindow: if gajim.connections.has_key(self.account): if name != self.account and \ gajim.connections[self.account].connected != 0: - dialogs.ErrorDialog(_('You are connected to the server'), -_('To change the account name, it must be disconnected.')).get_response() + dialogs.ErrorDialog(_('You are currently connected to the server'), +_('To change the account name, you must be disconnected.')).get_response() return if (name == ''): dialogs.ErrorDialog(_('Invalid account name'), - _('Account names cannot be empty.')).get_response() + _('Account name cannot be empty.')).get_response() return if name.find(' ') != -1: dialogs.ErrorDialog(_('Invalid account name'), - _('Account names cannot contain spaces.')).get_response() + _('Account name cannot contain spaces.')).get_response() return jid = self.xml.get_widget('jid_entry').get_text() if jid == '' or jid.count('@') != 1: @@ -1809,7 +1809,7 @@ class ManageEmoticonsWindow: if not iter: return file = model.get_value(iter, 1) - dialog = gtk.FileChooserDialog(_('Choose image'), None, + dialog = gtk.FileChooserDialog(_('Choose Ιmage'), None, gtk.FILE_CHOOSER_ACTION_OPEN, (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OPEN, gtk.RESPONSE_OK))