talons

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

commit b99272b6c8bd41119cbf755bf4699de989843d1c
parent 8c60c06769ed531ba58ce028cfd15d9a7f678a73
Author: Paul <paul@claws-mail.org>
Date:   Tue, 19 Jan 2016 10:29:29 +0000

remove space in front of colon

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

diff --git a/src/expldifdlg.c b/src/expldifdlg.c @@ -609,7 +609,7 @@ static void export_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); @@ -619,7 +619,7 @@ static void export_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);