diff options
author | Christian Dywan <christian@twotoasts.de> | 2009-11-06 00:56:30 +0100 |
---|---|---|
committer | Christian Dywan <christian@twotoasts.de> | 2009-11-06 00:56:30 +0100 |
commit | e41f4e85cf56f3419fc284f9ef6cfd61b9008b4e (patch) | |
tree | 9da53e0994ccf31273821175ebbeee2b8d8c8c10 /gtk/gtkspinner.c | |
parent | 2f9bd297bb347aa2996bfd1523c91c18903857ff (diff) | |
download | gtk+-e41f4e85cf56f3419fc284f9ef6cfd61b9008b4e.tar.gz |
Improve accessibility context and description of the spinner
https://bugzilla.gnome.org/show_bug.cgi?id=598758
Diffstat (limited to 'gtk/gtkspinner.c')
-rw-r--r-- | gtk/gtkspinner.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkspinner.c b/gtk/gtkspinner.c index 57c84a0860..0c341b86d9 100644 --- a/gtk/gtkspinner.c +++ b/gtk/gtkspinner.c @@ -451,8 +451,8 @@ static void gtk_spinner_accessible_initialize (AtkObject *accessible, gpointer widget) { - atk_object_set_name (accessible, _("Spinner")); - atk_object_set_description (accessible, _("Provides visual status")); + atk_object_set_name (accessible, C_("throbbing progress animation widget", "Spinner")); + atk_object_set_description (accessible, _("Provides visual indication of progress")); a11y_parent_class->initialize (accessible, widget); } |