2006-10-20 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Fri, 20 Oct 2006 08:21:45 +0000 (08:21 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Fri, 20 Oct 2006 08:21:45 +0000 (08:21 +0000)
* hildon-widgets/hildon-date-editor.c: Changing the error infobanner
displayed to ckct_ib_illegal_character (when user presses non-numeric
character in the date editor).

ChangeLog
hildon-widgets/hildon-date-editor.c

index 4ec13f2..d37a03e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,18 @@
+2006-10-20  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
+
+       * hildon-widgets/hildon-date-editor.c: Changing the error infobanner
+       displayed to ckct_ib_illegal_character (when user presses non-numeric
+       character in the date editor).
+
 2006-10-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
 
-        * hildon-widgets/hildon-date-editor.c:
-        (hildon_date_editor_keypress): Added check for not allowed keys.
-        (hildon_date_editor_date_error): Added banner message for not
-        allowed keys.
+       * hildon-widgets/hildon-date-editor.c:
+       (hildon_date_editor_keypress): Added check for not allowed keys.
+       (hildon_date_editor_date_error): Added banner message for not
+       allowed keys. Fixes NB#41049.
 
-        * hildon-widgets/hildon-date-editor.h:
-        Added INVALID_CHAR to HildonDateEditorErrorType enumeration.
+       * hildon-widgets/hildon-date-editor.h:
+       Added INVALID_CHAR to HildonDateEditorErrorType enumeration.
 
 2006-10-19  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
 
index f6d71d9..3b68b7d 100644 (file)
@@ -1152,7 +1152,7 @@ hildon_date_editor_date_error(HildonDateEditor *editor,
                      priv->min_year, priv->max_year);
       break;
     case INVALID_CHAR:
-      gtk_infoprint(NULL, _("ckct_ib_only_numbers_allowed"));
+      gtk_infoprint(NULL, _("ckct_ib_illegal_character"));
       break;
     case INVALID_DATE:
       gtk_infoprint(NULL, _("ckct_ib_date_does_not_exist"));