From 3b76bb9fa1ce99c01b3f30cbb346d31efcf41d27 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Tue, 24 Sep 2024 16:52:13 +0200 Subject: [PATCH] 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. --- src/e-util/e-html-editor-link-popover.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/e-util/e-html-editor-link-popover.c b/src/e-util/e-html-editor-link-popover.c index ce240cad9b..d0af2d4070 100644 --- a/src/e-util/e-html-editor-link-popover.c +++ b/src/e-util/e-html-editor-link-popover.c @@ -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")); }