HTMLEditorLinkPopover: Change button label to not clash on mnemonic

The 'u' latter is already used by the "URI" label, thus change the "Update"
mnemonic to something else. The 'a' was used for the "Add", it can be
used for the "Update" as well.
This commit is contained in:
Milan Crha
2024-09-24 16:52:13 +02:00
parent c52b329207
commit 3b76bb9fa1

View File

@ -122,7 +122,7 @@ e_html_editor_link_popover_show (GtkWidget *widget)
e_content_editor_link_get_properties (cnt_editor, &href, &text, &name);
if ((href && *href) || (name && *name)) {
gtk_entry_set_text (GTK_ENTRY (self->uri_entry), href);
gtk_button_set_label (GTK_BUTTON (self->save_button), _("_Update"));
gtk_button_set_label (GTK_BUTTON (self->save_button), _("Upd_ate"));
} else {
gtk_button_set_label (GTK_BUTTON (self->save_button), _("_Add"));
}