diff options
author | Milan Crha <mcrha@redhat.com> | 2012-02-16 02:08:12 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-02-16 02:08:12 +0800 |
commit | 6a3511948f69ffbc2941c6ee6e2c2a8389b345bf (patch) | |
tree | 3fd456731dbcd14aceb22deb1b956b97eeda3f8e /mail/em-format-html-display.c | |
parent | 99d4558915e709f770bfa142d6fec3f6ce32db10 (diff) | |
download | gsoc2013-evolution-6a3511948f69ffbc2941c6ee6e2c2a8389b345bf.tar.gz gsoc2013-evolution-6a3511948f69ffbc2941c6ee6e2c2a8389b345bf.tar.zst gsoc2013-evolution-6a3511948f69ffbc2941c6ee6e2c2a8389b345bf.zip |
Bug #662743 - Translation context needed for "Attachment"
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r-- | mail/em-format-html-display.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c index a0e50863fe..7e796b1c2a 100644 --- a/mail/em-format-html-display.c +++ b/mail/em-format-html-display.c @@ -1392,7 +1392,8 @@ efhd_attachment_optional (EMFormatHTML *efh, gtk_container_add (GTK_CONTAINER (button), GTK_WIDGET (hbox)); a11y = gtk_widget_get_accessible (button); - atk_object_set_name (a11y, _("Attachment")); + /* Translators: Name of an Attachment button for a11y object */ + atk_object_set_name (a11y, C_("Button", "Attachment")); gtk_box_pack_start (GTK_BOX (mainbox), button, FALSE, FALSE, 6); |