xref: /plugin/pureldap/lang/en/settings.php (revision 6d90d5c87387cafcb884bda8c1b3c7ab80656146)
179f39653SAndreas Gohr<?php
279f39653SAndreas Gohr/**
379f39653SAndreas Gohr * english language file for pureldap plugin
479f39653SAndreas Gohr *
579f39653SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
679f39653SAndreas Gohr */
779f39653SAndreas Gohr
8*6d90d5c8SAndreas Gohr$lang['base_dn'] = 'Your base DN. Eg. <code>DC=my,DC=domain,DC=org</code>';
9*6d90d5c8SAndreas Gohr
10*6d90d5c8SAndreas Gohr$lang['servers'] = 'Comma-separated list of your LDAP/AD servers. Servers are tried in order until one connects.';
11*6d90d5c8SAndreas Gohr$lang['port'] = 'LDAP/AD server port. Empty for default port.';
12*6d90d5c8SAndreas Gohr
13*6d90d5c8SAndreas Gohr$lang['encryption'] = 'What encryption should be used to talk to the servers?';
14*6d90d5c8SAndreas Gohr$lang['encryption_o_none'] = 'No encryption (default port 389)';
15*6d90d5c8SAndreas Gohr$lang['encryption_o_ssl'] = 'SSL (default port 636)';
16*6d90d5c8SAndreas Gohr$lang['encryption_o_tls'] = 'STARTTLS (default port 389)';
17*6d90d5c8SAndreas Gohr
18*6d90d5c8SAndreas Gohr$lang['validate'] = 'Validate SSL certificates on encrypted connections?';
19*6d90d5c8SAndreas Gohr$lang['validate_o_strict'] = 'Strict validation';
20*6d90d5c8SAndreas Gohr$lang['validate_o_self'] = 'Allow self-signed certificates';
21*6d90d5c8SAndreas Gohr$lang['validate_o_none'] = 'Accept all certificates (no validation)';
22*6d90d5c8SAndreas Gohr
23*6d90d5c8SAndreas Gohr$lang['admin_user'] = 'A privileged user with access to all other user\'s data. Needed for certain actions like sending subscription mails.';
24*6d90d5c8SAndreas Gohr$lang['admin_password'] = 'The password of the above user.';
25*6d90d5c8SAndreas Gohr
2679f39653SAndreas Gohr
27