xref: /plugin/pureldap/lang/en/settings.php (revision bf69b89c042d8a8a10fdd1dd78cc14b8f933bfe1)
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 privileged user with access to all other user\'s data. Needed for certain actions like sending subscription mails.';
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['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.';
30
31$lang['sso'] = 'Use Single-Sign-On (SSO). This requires the appropriate web server setup.';
32$lang['sso_charset'] = 'If your webserver passes usernames in another charset than UTF-8, configure it here and make sure the iconv extension is available.';
33