aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);