Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2005-03-16 17:04:43 +0300
committerYann Leboulanger <asterix@lagaule.org>2005-03-16 17:04:43 +0300
commitfd836e2a6d3404bee313cc6710f1bbc1dd9ea89f (patch)
tree21764a0addebcdac98a04d86bbeb7b2cdd76caa4
parentfc42e0407a7ad429726de1f1585bec6d310fc4c6 (diff)
"the best" is a bit pretentious
-rw-r--r--plugins/gtkgui/dialogs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gtkgui/dialogs.py b/plugins/gtkgui/dialogs.py
index dca9f7205..731af410c 100644
--- a/plugins/gtkgui/dialogs.py
+++ b/plugins/gtkgui/dialogs.py
@@ -438,7 +438,7 @@ class About_dialog:
"""Class for about dialog"""
def __init__(self, plugin):
if gtk.pygtk_version < (2, 6, 0):
- Information_dialog('Gajim - The best GTK jabber client')
+ Information_dialog('Gajim - A GTK jabber client')
return
self.plugin = plugin
dlg = gtk.AboutDialog()
@@ -449,7 +449,7 @@ class About_dialog:
text = open('COPYING').read()
dlg.set_license(text)
- dlg.set_comments('The best GTK jabber client')
+ dlg.set_comments('A GTK jabber client')
dlg.set_website('http://www.gajim.org')
authors = ['Yann Le Boulanger', 'Vincent Hanquez', 'Nikos Kouremenos', 'Alex Podaras']
dlg.set_authors(authors)