diff options
author | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-11 06:28:38 +0800 |
---|---|---|
committer | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-11 06:28:38 +0800 |
commit | dc8e4af46d6d33f784a229925fbb783d78760196 (patch) | |
tree | a0e11ad528e361d2384bd645d57056fe8c1721fa /mail | |
parent | 1a405a9af68f240ccdd2cbebd37d3fd577e025e7 (diff) | |
download | gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar.gz gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar.zst gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.zip |
a11y changes for bug #330723
svn path=/trunk/; revision=31477
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-account-prefs.c | 2 | ||||
-rw-r--r-- | mail/em-format-html-display.c | 4 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
4 files changed, 11 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index a2bc758cf4..f71dfa584d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2006-02-11 Karsten Bräckelmann <guenther@rudersport.de> + + * message-list.c (message_list_construct): + * em-format-html-display.c (efhd_attachment_button, efhd_add_bar): + * em-account-prefs.c (em_account_prefs_treeview_new): + Change a11y names. Fixes part of bug #330723. + 2006-02-10 Karsten Bräckelmann <guenther@rudersport.de> * em-utils.c (em_utils_edit_filters): Fix Filters dialog window diff --git a/mail/em-account-prefs.c b/mail/em-account-prefs.c index 2e54404fc7..ec0a232e88 100644 --- a/mail/em-account-prefs.c +++ b/mail/em-account-prefs.c @@ -528,7 +528,7 @@ em_account_prefs_treeview_new (char *widget_name, char *string1, char *string2, selection = gtk_tree_view_get_selection ((GtkTreeView *) table); gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); gtk_tree_view_set_headers_visible ((GtkTreeView *) table, TRUE); - atk_object_set_name (gtk_widget_get_accessible (table), _("Mail Accounts Table")); + atk_object_set_name (gtk_widget_get_accessible (table), _("Mail Accounts")); /* FIXME: column auto-resize? */ diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index 4462ad8a4a..1f3295decd 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -1662,7 +1662,7 @@ efhd_attachment_button(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObje gtk_container_add((GtkContainer *)button, gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_NONE)); a11y = gtk_widget_get_accessible (button); - atk_object_set_name (a11y, _("Attachment Button")); + atk_object_set_name (a11y, _("Attachment")); g_signal_connect(button, "button_press_event", G_CALLBACK(efhd_attachment_popup), info); g_signal_connect(button, "popup_menu", G_CALLBACK(efhd_attachment_popup_menu), info); @@ -2060,7 +2060,7 @@ efhd_add_bar(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObject *pobjec gtk_box_pack_start ((GtkBox *)hbox3, priv->down, FALSE, FALSE, 0); priv->arrow = (GtkWidget *)gtk_tool_button_new(hbox3, NULL); g_signal_connect (priv->arrow, "mnemonic_activate", G_CALLBACK (efhd_mnemonic_show_bar), efh); - atk_object_set_name (gtk_widget_get_accessible (priv->arrow), _("Toggle Attachment Bar")); + atk_object_set_name (gtk_widget_get_accessible (priv->arrow), _("Show Attachments")); priv->label = gtk_label_new(_("No Attachment")); gtk_label_set_mnemonic_widget (GTK_LABEL (priv->label), priv->arrow); diff --git a/mail/message-list.c b/mail/message-list.c index a59f2080c8..610bc1e76c 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2060,7 +2060,7 @@ message_list_construct (MessageList *message_list) if (atk_get_root() != NULL) { a11y = gtk_widget_get_accessible((GtkWidget *)message_list->tree); - atk_object_set_name(a11y, _("Message List")); + atk_object_set_name(a11y, _("Messages")); } g_signal_connect((message_list->tree), "cursor_activated", |