2006-04-25 [colin] 2.1.1cvs35

* src/editldap.c
		Fix tooltip
This commit is contained in:
Colin Leroy 2006-04-25 22:14:52 +00:00
parent 3ae54083f9
commit 4b233482de
4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-04-25 [colin] 2.1.1cvs35
* src/editldap.c
Fix tooltip
2006-04-25 [cleroy] 2.1.1cvs34
* src/compose.c

View file

@ -1456,3 +1456,4 @@
( cvs diff -u -r 1.83.2.67 -r 1.83.2.68 src/mimeview.c; cvs diff -u -r 1.101.2.23 -r 1.101.2.24 src/news.c; cvs diff -u -r 1.395.2.193 -r 1.395.2.194 src/summaryview.c; cvs diff -u -r 1.68.2.22 -r 1.68.2.23 src/summaryview.h; ) > 2.1.1cvs32.patchset
( cvs diff -u -r 1.213.2.89 -r 1.213.2.90 src/folder.c; cvs diff -u -r 1.87.2.26 -r 1.87.2.27 src/folder.h; cvs diff -u -r 1.207.2.96 -r 1.207.2.97 src/folderview.c; ) > 2.1.1cvs33.patchset
( cvs diff -u -r 1.53.2.16 -r 1.53.2.17 po/POTFILES.in; cvs diff -u -r 1.382.2.268 -r 1.382.2.269 src/compose.c; cvs diff -u -r 1.1.2.7 -r 1.1.2.8 src/image_viewer.c; cvs diff -u -r 1.1.2.23 -r 1.1.2.24 src/prefs_msg_colors.c; cvs diff -u -r 1.13.2.20 -r 1.13.2.21 src/common/socket.c; cvs diff -u -r 1.9.2.39 -r 1.9.2.40 src/gtk/gtkaspell.c; cvs diff -u -r 1.5.2.29 -r 1.5.2.30 src/gtk/pluginwindow.c; cvs diff -u -r 1.12.2.25 -r 1.12.2.26 src/gtk/prefswindow.c; cvs diff -u -r 1.18.2.33 -r 1.18.2.34 src/plugins/spamassassin/spamassassin.c; ) > 2.1.1cvs34.patchset
( cvs diff -u -r 1.8.2.12 -r 1.8.2.13 src/editldap.c; ) > 2.1.1cvs35.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=1
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=34
EXTRA_VERSION=35
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -474,12 +474,12 @@ static void addressbook_edit_ldap_page_basic( gint pageNum, gchar *pageLbl ) {
gtk_tooltips_set_tip( toolTip, enable_tls_chkbtn, _(
"Enable secure connection to the LDAP server via TLS."
"If connection fails, be sure to check the correct "
"configuration in ldap.conf (TLS_CACERT field)." ),
"configuration in ldap.conf (TLS_CACERT or TLS_CACERTDIR fields)." ),
NULL );
gtk_tooltips_set_tip( toolTip, enable_ssl_chkbtn, _(
"Enable secure connection to the LDAP server via SSL."
"If connection fails, be sure to check the correct "
"configuration in ldap.conf (TLS_CACERT field)." ),
"configuration in ldap.conf (TLS_CACERT or TLS_CACERTDIR fields)." ),
NULL );
gtk_box_pack_start (GTK_BOX (hbox_spin), enable_tls_chkbtn, FALSE, FALSE, 0);