aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Tichavsky <Jan.Tichavsky@gmail.com>2008-01-23 06:12:10 +0800
committerAndre Klapper <aklapper@src.gnome.org>2008-01-23 06:12:10 +0800
commit6523cbe3651f0f73f095b476fe022cce387a5984 (patch)
tree260a0f9ff99a296f5cdd721b7c197c7c08809dda
parentb4a738589e221d136ef7532b9c0ca1965ecbb9cc (diff)
downloadgsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.tar
gsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.tar.gz
gsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.tar.bz2
gsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.tar.lz
gsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.tar.xz
gsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.tar.zst
gsoc2013-evolution-6523cbe3651f0f73f095b476fe022cce387a5984.zip
** Fix for bug #511232
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) svn path=/trunk/; revision=34869
-rw-r--r--shell/ChangeLog7
-rw-r--r--shell/e-shell.c2
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;