diff options
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/main.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 3e5f090d0c..01e31ac4a3 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,9 @@ +2007-12-10 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #502501 + + * main.c: (show_recovery_warning): Re use the existing string. + 2007-12-05 Srinivasa Ragavan <sragavan@novell.com> ** Add basic support for crash recovery diff --git a/shell/main.c b/shell/main.c index bcd7fbada4..bbbd27d62c 100644 --- a/shell/main.c +++ b/shell/main.c @@ -331,7 +331,7 @@ show_recovery_warning(void) gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0); - checkbox = gtk_check_button_new_with_mnemonic (_("_Do not show this again")); + checkbox = gtk_check_button_new_with_mnemonic (_("_Do not show this message again")); alignment = gtk_alignment_new (0.0, 0.0, 0.0, 0.0); |