diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-session.c | 5 |
2 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2004-11-07 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-session.c: (offer_to_resume): + + Better wording for the crash recovery dialogue. Thanks to Spark + for this. + +2004-11-07 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-notebook.c: (find_notebook_at_pointer), (is_in_notebook_window): diff --git a/src/ephy-session.c b/src/ephy-session.c index cbe8e6190..13fad9ccb 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -368,11 +368,12 @@ offer_to_resume (EphySession *session) GTK_DIALOG_MODAL, GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE, - _("Epiphany appears to have crashed or been killed the last time it was run.")); + _("Recover previous browser windows and tabs?")); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), - _("You can recover the opened tabs and windows.")); + _("Epiphany appears to have exited unexpectedly the last time " + "it was run. You can recover the opened windows and tabs.")); gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Don't Recover"), GTK_RESPONSE_CANCEL); |