diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-04 00:36:28 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-04 00:36:28 +0800 |
commit | e1f477d50add4db3a2120b14deb870862f737cf2 (patch) | |
tree | 19ab0dfdda0b9d93c00f967619196b39092d58d2 /shell/e-shell-view.c | |
parent | 2026a45165c5c88b5f1c7208f282801b28e81c44 (diff) | |
download | gsoc2013-evolution-e1f477d50add4db3a2120b14deb870862f737cf2.tar.gz gsoc2013-evolution-e1f477d50add4db3a2120b14deb870862f737cf2.tar.zst gsoc2013-evolution-e1f477d50add4db3a2120b14deb870862f737cf2.zip |
Accidentally broke string freeze.
Apparently intltool disregards preprocessor directives...
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index e955518641..0be1dc193e 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -277,9 +277,9 @@ shell_view_save_state (EShellView *shell_view) FALSE, G_FILE_CREATE_PRIVATE, (GAsyncReadyCallback) shell_view_save_state_done_cb, data); -#if 0 /* FIXME Enable this for 2.31 */ +#if 0 /* FIXME Enable this for 2.31 and mark the string for translation. */ e_activity_set_primary_text ( - activity, _("Saving user interface state")); + activity, ("Saving user interface state")); #endif e_shell_backend_add_activity (shell_backend, activity); |