aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorKarsten Bräckelmann <kbrae@src.gnome.org>2006-02-11 06:28:38 +0800
committerKarsten Bräckelmann <kbrae@src.gnome.org>2006-02-11 06:28:38 +0800
commitdc8e4af46d6d33f784a229925fbb783d78760196 (patch)
treea0e11ad528e361d2384bd645d57056fe8c1721fa /mail
parent1a405a9af68f240ccdd2cbebd37d3fd577e025e7 (diff)
downloadgsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar
gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar.gz
gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar.bz2
gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar.lz
gsoc2013-evolution-dc8e4af46d6d33f784a229925fbb783d78760196.tar.xz
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/ChangeLog7
-rw-r--r--mail/em-account-prefs.c2
-rw-r--r--mail/em-format-html-display.c4
-rw-r--r--mail/message-list.c2
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",