aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2012-02-17 22:08:35 +0800
committerAndre Klapper <a9016009@gmx.de>2012-02-17 22:08:35 +0800
commit53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67 (patch)
tree1a196f0855e91bdb16e13b024292c309e9291ed1
parent6190e52c4b0e90a2613d7fd43593c5038e1fea0b (diff)
downloadgsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.tar
gsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.tar.gz
gsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.tar.bz2
gsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.tar.lz
gsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.tar.xz
gsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.tar.zst
gsoc2013-evolution-53ca9a1f976b5fd414cc5dd774e5a59ef7e76a67.zip
Use i as mnemonic for Filename string everywhere. This does not conflict with other mnemonics in the affected dialogs.
-rw-r--r--plugins/calendar-file/calendar-file.c2
-rw-r--r--widgets/misc/e-attachment-dialog.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/calendar-file/calendar-file.c b/plugins/calendar-file/calendar-file.c
index 6aa1483c3f..6296c71d29 100644
--- a/plugins/calendar-file/calendar-file.c
+++ b/plugins/calendar-file/calendar-file.c
@@ -150,7 +150,7 @@ e_calendar_file_customs (EPlugin *epl,
box2 = gtk_hbox_new (FALSE, 2);
gtk_box_pack_start ((GtkBox *) box1, box2, TRUE, TRUE, 2);
- w1 = gtk_label_new_with_mnemonic (_("File _name:"));
+ w1 = gtk_label_new_with_mnemonic (_("F_ilename:"));
gtk_misc_set_alignment (GTK_MISC (w1), 0.0, 0.5);
gtk_box_pack_start ((GtkBox *) box2, w1, FALSE, TRUE, 2);
diff --git a/widgets/misc/e-attachment-dialog.c b/widgets/misc/e-attachment-dialog.c
index 384322e39c..1f31f9d5a3 100644
--- a/widgets/misc/e-attachment-dialog.c
+++ b/widgets/misc/e-attachment-dialog.c
@@ -327,7 +327,7 @@ e_attachment_dialog_init (EAttachmentDialog *dialog)
dialog->priv->display_name_entry = g_object_ref (widget);
gtk_widget_show (widget);
- widget = gtk_label_new_with_mnemonic (_("_Filename:"));
+ widget = gtk_label_new_with_mnemonic (_("F_ilename:"));
gtk_misc_set_alignment (GTK_MISC (widget), 1.0, 0.5);
gtk_label_set_mnemonic_widget (
GTK_LABEL (widget), dialog->priv->display_name_entry);