[Commits] [SCM] claws branch, master, updated. 4.2.0-69-gd6f80be16

mones at claws-mail.org mones at claws-mail.org
Sat Mar 23 16:22:25 UTC 2024


The branch, master has been updated
       via  d6f80be16b3183693b4300346fdbdc6c7c342d4f (commit)
      from  1c71400e8b85b4624c71e583a21e8e271f36f578 (commit)

Summary of changes:
 src/password_gtk.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)


- Log -----------------------------------------------------------------
commit d6f80be16b3183693b4300346fdbdc6c7c342d4f
Author: Ricardo Mones <ricardo at mones.org>
Date:   Sat Mar 23 17:17:46 2024 +0100

    Improve 4790 fix and normalise labels

diff --git a/src/password_gtk.c b/src/password_gtk.c
index dc1456edb..0170187bc 100644
--- a/src/password_gtk.c
+++ b/src/password_gtk.c
@@ -169,9 +169,11 @@ void primary_passphrase_change_dialog()
 	gtk_widget_show(label);
 
 	table = gtk_grid_new();
+	gtk_grid_set_row_spacing(GTK_GRID(table), 8);
+	gtk_grid_set_column_spacing(GTK_GRID(table), 8);
 
 	/* Old passphrase */
-	label = gtk_label_new(_("Old passphrase:"));
+	label = gtk_label_new(_("Old passphrase"));
 	gtk_label_set_xalign(GTK_LABEL(label), 0.0);
 	gtk_grid_attach(GTK_GRID(table), label, 0, 0, 1, 1);
 
@@ -187,7 +189,7 @@ void primary_passphrase_change_dialog()
 	gtk_grid_attach(GTK_GRID(table), sep, 0, 1, 2, 1);
 
 	/* New passphrase */
-	label = gtk_label_new(_("New passphrase:"));
+	label = gtk_label_new(_("New passphrase"));
 	gtk_label_set_xalign(GTK_LABEL(label), 0.0);
 	gtk_grid_attach(GTK_GRID(table), label, 0, 2, 1, 1);
 
@@ -198,7 +200,7 @@ void primary_passphrase_change_dialog()
 	gtk_widget_set_halign(entry_new1, GTK_ALIGN_FILL);
 
 	/* New passphrase again */
-	label = gtk_label_new(_("Confirm passphrase:"));
+	label = gtk_label_new(_("Confirm passphrase"));
 	gtk_label_set_xalign(GTK_LABEL(label), 0.0);
 	gtk_grid_attach(GTK_GRID(table), label, 0, 3, 1, 1);
 

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list