ekiga r7824 - in trunk/lib/engine/components: ldap local-roster
- From: ededu svn gnome org
- To: svn-commits-list gnome org
- Subject: ekiga r7824 - in trunk/lib/engine/components: ldap local-roster
- Date: Sat, 28 Mar 2009 15:54:15 +0000 (UTC)
Author: ededu
Date: Sat Mar 28 15:54:15 2009
New Revision: 7824
URL: http://svn.gnome.org/viewvc/ekiga?rev=7824&view=rev
Log:
Include translator comments, closes #570075.
Modified:
trunk/lib/engine/components/ldap/ldap-book.cpp
trunk/lib/engine/components/local-roster/local-heap.cpp
Modified: trunk/lib/engine/components/ldap/ldap-book.cpp
==============================================================================
--- trunk/lib/engine/components/ldap/ldap-book.cpp (original)
+++ trunk/lib/engine/components/ldap/ldap-book.cpp Sat Mar 28 15:54:15 2009
@@ -942,6 +942,12 @@
if (i>1) callAttr += ",";
callAttr += std::string(info.urld->lud_attrs[i]);
}
+ /* Translators: DisplayName Attribute is the name of the LDAP
+ * attribute whose value will be used to name an addressbook entry.
+ * On Microsoft systems the actual attribute is literally named
+ * "DisplayName" (i.e., "the name that will be displayed") but on
+ * most LDAP servers it's "CommonName".
+ */
request.text ("nameAttr", _("_DisplayName Attribute"), info.urld->lud_attrs[0]);
request.text ("callAttr", _("Call _Attributes"), callAttr);
if (info.urld->lud_filter != NULL)
@@ -949,6 +955,15 @@
else
request.text ("filter", _("_Filter Template"), "");
+ /* Translators: Bind ID - In LDAP, the operation that begins an LDAP
+ * session and authenticates the user to the directory is called a
+ * Bind operation. There are two types of Binds supported in the
+ * standard protocol - Simple Bind and SASL Bind. Since both of
+ * them are used for authentication, both of them require some type
+ * of user ID as a parameter, and that is supplied here. (Of
+ * course, the Bind ID can be left blank, in which case the session
+ * is anonymous / unauthenticated.)
+ */
request.text ("authcID", _("Bind _ID"), info.authcID);
request.private_text ("password", _("_Password"), info.password);
request.boolean ("startTLS", _("Use TLS"), info.starttls);
Modified: trunk/lib/engine/components/local-roster/local-heap.cpp
==============================================================================
--- trunk/lib/engine/components/local-roster/local-heap.cpp (original)
+++ trunk/lib/engine/components/local-roster/local-heap.cpp Sat Mar 28 15:54:15 2009
@@ -159,9 +159,24 @@
result.insert (_("Family"));
result.insert (_("Friend"));
+ /* Translator: http://www.ietf.org/rfc/rfc4480.txt proposes several
+ relationships between you and your contact; associate means
+ someone who is at the same "level" than you.
+ */
result.insert (_("Associate"));
+ /* Translator: http://www.ietf.org/rfc/rfc4480.txt proposes several
+ relationships between you and your contact; assistant means
+ someone who is at a lower "level" than you.
+ */
result.insert (_("Assistant"));
+ /* Translator: http://www.ietf.org/rfc/rfc4480.txt proposes several
+ relationships between you and your contact; supervisor means
+ someone who is at a higher "level" than you.
+ */
result.insert (_("Supervisor"));
+ /* Translator: http://www.ietf.org/rfc/rfc4480.txt proposes several
+ relationships between you and your contact; self means yourself.
+ */
result.insert (_("Self"));
return result;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]