From b29d9d89c807661179a0c3b92f03c7a2634b1d27 Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 23 Dec 2015 08:47:53 +0000 Subject: [PATCH] remove space in front of colon --- src/browseldap.c | 4 ++-- src/exphtmldlg.c | 4 ++-- src/importldif.c | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/browseldap.c b/src/browseldap.c index 28d4260ac..117d77ea4 100644 --- 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 index c82661cb7..209544af6 100644 --- 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 index 38228d49a..242edd931 100644 --- 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); -- 2.25.1