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 10$lang['servers'] = 'Comma-separated list of your LDAP/AD servers. Servers are tried in order until one connects.'; 11$lang['port'] = 'LDAP/AD server port. Empty for default port.'; 12 13$lang['encryption'] = 'What encryption should be used to talk to the servers?'; 14$lang['encryption_o_none'] = 'No encryption (default port 389)'; 15$lang['encryption_o_ssl'] = 'SSL (default port 636)'; 16$lang['encryption_o_tls'] = 'STARTTLS (default port 389)'; 17 18$lang['validate'] = 'Validate SSL certificates on encrypted connections?'; 19$lang['validate_o_strict'] = 'Strict validation'; 20$lang['validate_o_self'] = 'Allow self-signed certificates'; 21$lang['validate_o_none'] = 'Accept all certificates (no validation)'; 22 23$lang['admin_username'] = 'A privileged user with access to all other user\'s data. Needed for certain actions like sending subscription mails.'; 24$lang['admin_password'] = 'The password of the above user.'; 25 26 27