Mark "_New Account" button label in import-account-matcher translatable

Because the MsgId already exists, it does not break string freeze.
Thanks to Mechtilde for heads up.
This commit is contained in:
fell 2018-01-03 07:16:40 +01:00
parent 3f82940e32
commit 4fe2eb2e49

View File

@ -435,7 +435,7 @@ AccountPickerDialog* gnc_import_account_assist_setup(GtkWidget *parent)
picker->account_online_id_label = GTK_WIDGET(gtk_builder_get_object (builder, "online_id_label"));
/* Add the New Account Button */
button = gtk_button_new_with_mnemonic ("_New Account");
button = gtk_button_new_with_mnemonic (_("_New Account"));
h_box = gtk_hbox_new(TRUE, 0);
gtk_box_pack_start(GTK_BOX(h_box), button, FALSE, FALSE, 0);
gtk_box_pack_start( GTK_BOX(box), h_box, FALSE, FALSE, 6);