summaryrefslogtreecommitdiffstats
path: root/setup
diff options
context:
space:
mode:
authorHuang Peng <shawn.p.huang@gmail.com>2008-08-06 23:13:35 +0800
committerHuang Peng <shawn.p.huang@gmail.com>2008-08-06 23:13:35 +0800
commit910d645f07033860e9d52806b9667d915b93c2f6 (patch)
tree98a10046d51495e0b30f40dd0e895857aa52f374 /setup
parent9dcfd4267e36c30d85a815e72f0c950146f30d0a (diff)
downloadibus-910d645f07033860e9d52806b9667d915b93c2f6.tar.gz
ibus-910d645f07033860e9d52806b9667d915b93c2f6.tar.xz
ibus-910d645f07033860e9d52806b9667d915b93c2f6.zip
Refine messages.
Diffstat (limited to 'setup')
-rw-r--r--setup/main.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/setup/main.py b/setup/main.py
index a2c3940..77a9324 100644
--- a/setup/main.py
+++ b/setup/main.py
@@ -70,7 +70,7 @@ class Setup(object):
self.__bus = ibus.Bus()
except:
while self.__bus == None:
- message = _("IBus daemon is not started.\nDo you want to start it now?")
+ message = _("IBus daemon is not started. Do you want to start it now?")
print >> sys.stderr, message
dlg = gtk.MessageDialog(type = gtk.MESSAGE_QUESTION,
buttons = gtk.BUTTONS_YES_NO,
@@ -86,8 +86,8 @@ class Setup(object):
self.__bus = ibus.Bus()
except:
continue
- message = _("IBus has been started!\n" + \
- "If you can not use IBus, please add below lines in $HOME/.bashrc!\n" + \
+ message = _("IBus has been started! " + \
+ "If you can not use IBus, please add below lines in $HOME/.bashrc, and relogin your desktop.\n" + \
" export GTK_IM_MODULE=ibus\n" + \
" export XMODIFIERS=@im=ibus\n"
" export QT_IM_MODULE=ibus"
@@ -99,7 +99,6 @@ class Setup(object):
dlg.destroy()
self.__flush_gtk_events()
-
# add icon search path
icon_theme = gtk.icon_theme_get_default()
dir = path.dirname(__file__)