diff options
author | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-11 04:38:06 +0800 |
---|---|---|
committer | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-11 04:38:06 +0800 |
commit | 829a75f4404cbc1ca8c6226f22112befed92cb6c (patch) | |
tree | f700da031b094cafd20e81629b097de6f965be13 /calendar | |
parent | 87317eec3a113a33b62df7ca833272e4c63cd459 (diff) | |
download | gsoc2013-evolution-829a75f4404cbc1ca8c6226f22112befed92cb6c.tar.gz gsoc2013-evolution-829a75f4404cbc1ca8c6226f22112befed92cb6c.tar.zst gsoc2013-evolution-829a75f4404cbc1ca8c6226f22112befed92cb6c.zip |
fix a11y string, bug #330712
svn path=/trunk/; revision=31475
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/e-timezone-entry.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 5fecac57e7..882acd6edc 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2006-02-10 Karsten Bräckelmann <guenther@rudersport.de> + + * gui/e-timezone-entry.c (e_timezone_entry_init): Correct the a11y + string for the Timezone button to not include its role and to be + more descriptive, fixes bug #330712. + 2006-02-12 Chenthill Palanisamy <pchenthill@novell.com> Fixes #329570 diff --git a/calendar/gui/e-timezone-entry.c b/calendar/gui/e-timezone-entry.c index e7dd3682c1..fe57453540 100644 --- a/calendar/gui/e-timezone-entry.c +++ b/calendar/gui/e-timezone-entry.c @@ -130,7 +130,7 @@ e_timezone_entry_init (ETimezoneEntry *tentry) gtk_widget_show (priv->button); a11y = gtk_widget_get_accessible (priv->button); if (a11y != NULL) { - atk_object_set_name (a11y, _("Timezone Button")); + atk_object_set_name (a11y, _("Select Timezone")); } gtk_image = e_icon_factory_get_image ("stock_timezone", E_ICON_SIZE_BUTTON); |