diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-shell.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 7cdd6c05ab..4b10059506 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2008-01-22 Jan Tichavsky <Jan.Tichavsky@gmail.com> + + ** Fix for bug #511232 + + * e-shell.c: Fixed typo Uknown -> Unknown + (patch committed by Andre Klapper) + 2008-01-21 Matthew Barnes <mbarnes@redhat.com> * e-shell-window.c (setup_status_bar): diff --git a/shell/e-shell.c b/shell/e-shell.c index c4b5553f68..6fa37a4fd5 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -637,7 +637,7 @@ attempt_upgrade (EShell *shell, int major, int minor, int revision) printf("Upgrade of component failed, unsupported prior version\n"); } else { exception_text = bonobo_exception_get_text (&ev); - res = e_error_run(NULL, "shell:upgrade-failed", exception_text, _("Uknown system error."), NULL); + res = e_error_run(NULL, "shell:upgrade-failed", exception_text, _("Unknown system error."), NULL); g_free (exception_text); if (res == GTK_RESPONSE_CANCEL) success = FALSE; |