aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-23 06:38:05 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-23 06:38:05 +0000
commit393a54d2449c83770db36c7dbb6d1254ebc522f2 (patch)
tree849c926bbd2e54f722a8f39721c5339a5f60f76f
parenta29eb7eb2646616d7a3702bcd05a0a11e7c973dc (diff)
made LDAP bind password entry invisible.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@365 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.ja4
-rw-r--r--po/ja.po6
-rw-r--r--src/editldap.c1
4 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a26ad5c2..0271a520 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-06-23
+
+ * src/editldap.c: made bind password entry invisible.
+
2005-06-22
* src/prefs_common.c: quote_colors_set_dialog_key_pressed(): destroy
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 59e1692b..5e28b2a7 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,7 @@
+2005-06-23
+
+ * src/editldap.c: バインドパスワードのエントリを非表示にした。
+
2005-06-22
* src/prefs_common.c: quote_colors_set_dialog_key_pressed(): Escape
diff --git a/po/ja.po b/po/ja.po
index b9910ae8..b2918d0d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1467,7 +1467,7 @@ msgstr "罎膣≪若"
#: src/editldap.c:397
msgid "Search Criteria"
-msgstr "罎膣√堺"
+msgstr "罎膣∽>散"
#: src/editldap.c:404
msgid " Reset "
@@ -1475,11 +1475,11 @@ msgstr " 祉 "
#: src/editldap.c:409
msgid "Bind DN"
-msgstr "DNゃ潟"
+msgstr "ゃ潟DN(茘ュ)"
#: src/editldap.c:418
msgid "Bind Password"
-msgstr "鴻若ゃ潟"
+msgstr "ゃ潟鴻若"
#: src/editldap.c:427
msgid "Timeout (secs)"
diff --git a/src/editldap.c b/src/editldap.c
index 26e8c6f3..9ef42af7 100644
--- a/src/editldap.c
+++ b/src/editldap.c
@@ -421,6 +421,7 @@ void addressbook_edit_ldap_page_extended( gint pageNum, gchar *pageLbl ) {
entry_bindPW = gtk_entry_new();
gtk_table_attach(GTK_TABLE(table), entry_bindPW, 1, 2, top, (top + 1), GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
+ gtk_entry_set_visibility(GTK_ENTRY(entry_bindPW), FALSE);
/* Next row */
++top;