1<?php 2/** 3 * english language file for pureldap plugin 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7 8$lang['base_dn'] = 'Your base DN. Eg. <code>DC=my,DC=domain,DC=org</code>'; 9$lang['suffix'] = 'Your account suffix. Eg. <code>my.domain.org</code>'; 10 11$lang['servers'] = 'Comma-separated list of your LDAP/AD servers. Servers are tried in order until one connects.'; 12$lang['port'] = 'LDAP/AD server port. Empty for default port.'; 13 14$lang['encryption'] = 'What encryption should be used to talk to the servers?'; 15$lang['encryption_o_none'] = 'No encryption (default port 389)'; 16$lang['encryption_o_ssl'] = 'SSL (default port 636)'; 17$lang['encryption_o_tls'] = 'STARTTLS (default port 389)'; 18 19$lang['validate'] = 'Validate SSL certificates on encrypted connections?'; 20$lang['validate_o_strict'] = 'Strict validation'; 21$lang['validate_o_self'] = 'Allow self-signed certificates'; 22$lang['validate_o_none'] = 'Accept all certificates (no validation)'; 23 24$lang['admin_username'] = 'A user with access to all other user\'s data. Needed for certain actions like sending subscription mails. Needs additional privileges for password resets.'; 25$lang['admin_password'] = 'The password of the above user.'; 26 27$lang['attributes'] = 'A comma separated list of additional attributes to fetch for users. May be used by some plugins.'; 28$lang['primarygroup'] = 'The name of your users primary group. Usually a localized version of <code>Domain Users</code>, eg. <code>Domänen-Benutzer</code>.'; 29$lang['recursivegroups'] = 'Correctly fetch nested group memberships for users? Increases LDAP requests and load on the AD server.'; 30$lang['expirywarn'] = 'Number of days before password expiry to warn the user. Set to 0 to disable.'; 31$lang['usefscache'] = 'Cache LDAP data on disk to speed up reoccuring queries. Check the <code>securitytimeout</code> for the maximum cache time.'; 32$lang['page_size'] = 'The maximum number of results to retrieve from the server in one request. Larger numbers speed up large queries but require more RAM.'; 33 34$lang['sso'] = 'Use Single-Sign-On (SSO). This requires the appropriate web server setup.'; 35$lang['sso_charset'] = 'If your webserver passes usernames in another charset than UTF-8, configure it here and make sure the iconv or mbstring extension is available.'; 36