Use i as mnemonic for Filename string everywhere. This does not conflict with other mnemonics in the affected dialogs.

This commit is contained in:
Andre Klapper
2012-02-17 15:08:35 +01:00
parent 6190e52c4b
commit 53ca9a1f97
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);