talons

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

commit b29d9d89c807661179a0c3b92f03c7a2634b1d27
parent e3ffcb455e0376053451ce968e6c71ef37708222
Author: Paul <paul@claws-mail.org>
Date:   Wed, 23 Dec 2015 08:47:53 +0000

remove space in front of colon

Diffstat:
Msrc/browseldap.c | 4++--
Msrc/exphtmldlg.c | 4++--
Msrc/importldif.c | 6+++---
3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/browseldap.c b/src/browseldap.c @@ -234,7 +234,7 @@ static void browse_create( void ) { /* First row */ top = 0; - label = gtk_label_new(_("Server Name :")); + label = gtk_label_new(_("Server Name:")); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); @@ -244,7 +244,7 @@ static void browse_create( void ) { /* Second row */ top++; - label = gtk_label_new(_("Distinguished Name (dn) :")); + label = gtk_label_new(_("Distinguished Name (dn):")); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); diff --git a/src/exphtmldlg.c b/src/exphtmldlg.c @@ -536,7 +536,7 @@ static void export_html_page_finish( gint pageNum, gchar *pageLbl ) { /* First row */ top = 0; - label = gtk_label_new( _( "Address Book :" ) ); + label = gtk_label_new( _( "Address Book:" ) ); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); @@ -546,7 +546,7 @@ static void export_html_page_finish( gint pageNum, gchar *pageLbl ) { /* Second row */ top++; - label = gtk_label_new( _( "File Name :" ) ); + label = gtk_label_new( _( "File Name:" ) ); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); diff --git a/src/importldif.c b/src/importldif.c @@ -888,7 +888,7 @@ static void imp_ldif_page_finish( gint pageNum, gchar *pageLbl ) { /* First row */ top = 0; - label = gtk_label_new( _( "Address Book :" ) ); + label = gtk_label_new( _( "Address Book:" ) ); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); @@ -898,7 +898,7 @@ static void imp_ldif_page_finish( gint pageNum, gchar *pageLbl ) { /* Second row */ top++; - label = gtk_label_new( _( "File Name :" ) ); + label = gtk_label_new( _( "File Name:" ) ); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5); @@ -908,7 +908,7 @@ static void imp_ldif_page_finish( gint pageNum, gchar *pageLbl ) { /* Third row */ top++; - label = gtk_label_new( _("Records Imported :") ); + label = gtk_label_new( _("Records Imported:") ); gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0); gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);