diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-01-01 21:56:31 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-01-01 21:56:31 +0800 |
commit | 7ddd1c1379b274907698b2251a11e705fd75e2a3 (patch) | |
tree | 1c34735c22b269297367d356cda0b391b71c77e9 /shell/e-shell-window.c | |
parent | 3c352346c1b03a56e82c16782835939758d0527e (diff) | |
download | gsoc2013-evolution-7ddd1c1379b274907698b2251a11e705fd75e2a3.tar.gz gsoc2013-evolution-7ddd1c1379b274907698b2251a11e705fd75e2a3.tar.zst gsoc2013-evolution-7ddd1c1379b274907698b2251a11e705fd75e2a3.zip |
String Fixes (Bug #325122)
2006-01-01 Harish Krishnaswamy <kharish@novell.com>
* String Fixes (Bug #325122)
svn path=/trunk/; revision=31006
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index af9ece83de..8ee5ab88ef 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -367,7 +367,7 @@ update_offline_toggle_status (EShellWindow *window) icon_pixmap = online_pixmap; icon_mask = online_mask; sensitive = TRUE; - tooltip = _("Evolution is currently online. " + tooltip = _("Evolution is currently online." "Click on this button to work offline."); flags = ES_MENU_SHELL_ONLINE; break; @@ -382,7 +382,7 @@ update_offline_toggle_status (EShellWindow *window) icon_pixmap = offline_pixmap; icon_mask = offline_mask; sensitive = TRUE; - tooltip = _("Evolution is currently offline. " + tooltip = _("Evolution is currently offline." "Click on this button to work online."); flags = ES_MENU_SHELL_OFFLINE; break; |