From: Colin Leroy Date: Sat, 1 Jul 2006 20:29:48 +0000 (+0000) Subject: 2006-07-01 [colin] 2.3.1cvs50 X-Git-Tag: rel_2_4_0~48 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=57eac094cc8c1f84d2cc92b5c5b3424e37d0799e 2006-07-01 [colin] 2.3.1cvs50 * src/prefs_account.c Typographic rules varying from language to language (in french "Protocole :"), we have to do that :) --- diff --git a/ChangeLog b/ChangeLog index bf8c98e73..76813768c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-07-01 [colin] 2.3.1cvs50 + + * src/prefs_account.c + Typographic rules varying from language + to language (in french "Protocole :"), + we have to do that :) + 2006-07-01 [ticho] 2.3.1cvs49 * src/prefs_account.c diff --git a/PATCHSETS b/PATCHSETS index 2925cabea..a68e82041 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1650,3 +1650,4 @@ ( cvs diff -u -r 1.382.2.290 -r 1.382.2.291 src/compose.c; ) > 2.3.1cvs47.patchset ( cvs diff -u -r 1.105.2.59 -r 1.105.2.60 src/prefs_account.c; cvs diff -u -r 1.49.2.20 -r 1.49.2.21 src/prefs_account.h; ) > 2.3.1cvs48.patchset ( cvs diff -u -r 1.105.2.60 -r 1.105.2.61 src/prefs_account.c; ) > 2.3.1cvs49.patchset +( cvs diff -u -r 1.105.2.61 -r 1.105.2.62 src/prefs_account.c; ) > 2.3.1cvs50.patchset diff --git a/configure.ac b/configure.ac index 76b67f9d8..c836e0620 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=3 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=49 +EXTRA_VERSION=50 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/prefs_account.c b/src/prefs_account.c index 9389ad387..16bf3626e 100644 --- a/src/prefs_account.c +++ b/src/prefs_account.c @@ -2685,10 +2685,7 @@ static void prefs_account_protocol_set_optmenu(PrefParam *pparam) gtk_widget_hide(optlabel); gtk_widget_show(optmenu); } else { - /* We don't want translators to hate us, so... */ - label = g_strdup_printf("%s:", _("Protocol")); - gtk_label_set_text(GTK_LABEL(descrlabel), label); - g_free(label); + gtk_label_set_text(GTK_LABEL(descrlabel), _("Protocol:")); label = g_markup_printf_escaped("%s", protocol_names[protocol]); gtk_label_set_markup(GTK_LABEL(optlabel), label); g_free(label);