aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2008-01-31 02:18:21 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2008-01-31 02:18:21 +0800
commitf74b49344b4d0e33bfb4aba2e58cba03f470324d (patch)
tree24dd89b64a5a273d313ae10aa4ccad860970b557 /shell
parentfae257d4ef4004b9871696da1f4642f8af1d32cb (diff)
downloadgsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.tar
gsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.tar.gz
gsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.tar.bz2
gsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.tar.lz
gsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.tar.xz
gsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.tar.zst
gsoc2013-evolution-f74b49344b4d0e33bfb4aba2e58cba03f470324d.zip
Change Crash Recovery to Crash detection.
2008-01-30 Srinivasa Ragavan <sragavan@novell.com> * apps_evolution_shell.schemas.in: Change Crash Recovery to Crash detection. * main.c: (show_recovery_warning): svn path=/trunk/; revision=34934
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/apps_evolution_shell.schemas.in4
-rw-r--r--shell/main.c2
3 files changed, 9 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 52dce6694e..7af56ac3df 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,9 @@
+2008-01-30 Srinivasa Ragavan <sragavan@novell.com>
+
+ * apps_evolution_shell.schemas.in: Change Crash Recovery to Crash
+ detection.
+ * main.c: (show_recovery_warning):
+
2008-01-29 Matthew Barnes <mbarnes@redhat.com>
* e-component-registry.c:
diff --git a/shell/apps_evolution_shell.schemas.in b/shell/apps_evolution_shell.schemas.in
index 0e7e2e9464..92717690bf 100644
--- a/shell/apps_evolution_shell.schemas.in
+++ b/shell/apps_evolution_shell.schemas.in
@@ -61,8 +61,8 @@
<type>bool</type>
<default>true</default>
<locale name="C">
- <short>Whether crash recovery should be done or not</short>
- <long>Decides whether the crash recovery should be run or not.</long>
+ <short>Whether crash detection should be done or not</short>
+ <long>Decides whether the crash detection should be run or not.</long>
</locale>
</schema>
diff --git a/shell/main.c b/shell/main.c
index 8041c73043..8ee8337337 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -304,7 +304,7 @@ show_recovery_warning(void)
int flags = 0, response;
warning_dialog = gtk_dialog_new ();
- gtk_window_set_title (GTK_WINDOW (warning_dialog), _("Evolution Crash Recovery"));
+ gtk_window_set_title (GTK_WINDOW (warning_dialog), _("Evolution Crash Detection"));
gtk_window_set_modal (GTK_WINDOW (warning_dialog), TRUE);
gtk_dialog_add_button (GTK_DIALOG (warning_dialog), _("Ig_nore"), GTK_RESPONSE_CANCEL);
gtk_dialog_add_button (GTK_DIALOG (warning_dialog), _("_Recover"), GTK_RESPONSE_OK);