2007-01-20 [colin] 2.7.1cvs39

* src/editldap.c
		Fix tooltip
This commit is contained in:
Colin Leroy 2007-01-20 16:34:38 +00:00
parent b89c40161f
commit 328a44f45d
4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2007-01-20 [colin] 2.7.1cvs39
* src/editldap.c
Fix tooltip
2007-01-20 [colin] 2.7.1cvs38
* src/ldapquery.c

View file

@ -2296,3 +2296,4 @@
( cvs diff -u -r 1.96.2.165 -r 1.96.2.166 src/textview.c; ) > 2.7.1cvs36.patchset
( cvs diff -u -r 1.274.2.166 -r 1.274.2.167 src/mainwindow.c; cvs diff -u -r 1.39.2.30 -r 1.39.2.31 src/mainwindow.h; cvs diff -u -r 1.395.2.279 -r 1.395.2.280 src/summaryview.c; cvs diff -u -r 1.1.2.58 -r 1.1.2.59 src/gtk/quicksearch.c; ) > 2.7.1cvs37.patchset
( cvs diff -u -r 1.3.2.11 -r 1.3.2.12 src/ldapquery.c; cvs diff -u -r 1.1.4.6 -r 1.1.4.7 src/ldaputil.c; cvs diff -u -r 1.1.4.5 -r 1.1.4.6 src/ldaputil.h; ) > 2.7.1cvs38.patchset
( cvs diff -u -r 1.8.2.17 -r 1.8.2.18 src/editldap.c; ) > 2.7.1cvs39.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=7
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=38
EXTRA_VERSION=39
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 or TLS_CACERTDIR fields)." ),
"configuration in ldap.conf (TLS_CACERTDIR and TLS_REQCERT 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 or TLS_CACERTDIR fields)." ),
"configuration in ldap.conf (TLS_CACERTDIR and TLS_REQCERT fields)." ),
NULL );
gtk_box_pack_start (GTK_BOX (hbox_spin), enable_tls_chkbtn, TRUE, FALSE, 0);