commit bdb6c66e72851721e6ee6c82b2e274c8bfb9353d
parent 5360e1a9dfbd99b39ed6acb3f763bf35440bfddd
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:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/prefs_account.c b/src/prefs_account.c
@@ -2331,11 +2331,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 authorization 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_show (oauth2_link_button);