talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit e4ec25638a06e1855990508f3d5d612af638d56e
parent 5c313737db4d2d0428063a830916391b7b20832b
Author: paul <paul@claws-mail.org>
Date:   Thu, 15 Apr 2021 11:19:56 +0100

reduce the required horizontal space by eliminating unnecessary wording

Diffstat:
Msrc/prefs_account.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/prefs_account.c b/src/prefs_account.c @@ -2294,11 +2294,11 @@ static void oauth2_create_widget_func(PrefsPage * _page, gtk_widget_show (hbox); gtk_box_pack_start (GTK_BOX (vbox3), hbox, FALSE, FALSE, 0); - label = gtk_label_new (_("Obtain authorization code via a browser")); + label = gtk_label_new (_("Obtain authorization code")); gtk_widget_show (label); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - oauth2_link_button = gtk_button_new_with_label(_("Click to open default browser with request")); + oauth2_link_button = gtk_button_new_with_label(_("Open default browser with request")); g_signal_connect(G_OBJECT(oauth2_link_button), "clicked", G_CALLBACK(prefs_account_oauth2_copy_url), NULL); gtk_widget_set_sensitive(oauth2_link_button, TRUE); gtk_widget_set_margin_bottom(oauth2_link_button, 8);