diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-window.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 27d81f3a1c..eff5de029f 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2006-01-06 Andre Klapper <a9016009@gmx.de> + * shell/e-shell-window.c: fixing two missing whitespaces. + Fixes bug 325568. + 2006-01-02 Harish Krishnaswamy <kharish@novell.com> * e-shell-nm-glib.c: (e_shell_nm_glib_initialise): diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 8ee5ab88ef..fb45157513 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; |