xref: /plugin/pureldap/lang/en/settings.php (revision c2500b4410d7943a5b4952a0bb25d20d1a95cb79)
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
86d90d5c8SAndreas Gohr$lang['base_dn'] = 'Your base DN. Eg. <code>DC=my,DC=domain,DC=org</code>';
9*c2500b44SAndreas Gohr$lang['suffix'] = 'Your account suffix. Eg. <code>my.domain.org</code>';
106d90d5c8SAndreas Gohr
116d90d5c8SAndreas Gohr$lang['servers'] = 'Comma-separated list of your LDAP/AD servers. Servers are tried in order until one connects.';
126d90d5c8SAndreas Gohr$lang['port'] = 'LDAP/AD server port. Empty for default port.';
136d90d5c8SAndreas Gohr
146d90d5c8SAndreas Gohr$lang['encryption'] = 'What encryption should be used to talk to the servers?';
156d90d5c8SAndreas Gohr$lang['encryption_o_none'] = 'No encryption (default port 389)';
166d90d5c8SAndreas Gohr$lang['encryption_o_ssl'] = 'SSL (default port 636)';
176d90d5c8SAndreas Gohr$lang['encryption_o_tls'] = 'STARTTLS (default port 389)';
186d90d5c8SAndreas Gohr
196d90d5c8SAndreas Gohr$lang['validate'] = 'Validate SSL certificates on encrypted connections?';
206d90d5c8SAndreas Gohr$lang['validate_o_strict'] = 'Strict validation';
216d90d5c8SAndreas Gohr$lang['validate_o_self'] = 'Allow self-signed certificates';
226d90d5c8SAndreas Gohr$lang['validate_o_none'] = 'Accept all certificates (no validation)';
236d90d5c8SAndreas Gohr
249446f9efSAndreas Gohr$lang['admin_username'] = 'A privileged user with access to all other user\'s data. Needed for certain actions like sending subscription mails.';
256d90d5c8SAndreas Gohr$lang['admin_password'] = 'The password of the above user.';
266d90d5c8SAndreas Gohr
27b914569fSAndreas Gohr$lang['attributes'] = 'A comma separated list of additional attributes to fetch for users. May be used by some plugins.';
28*c2500b44SAndreas Gohr$lang['primarygroup'] = 'The name of your users primary group. Usually a localized version of <code>Domain Users</code>, eg. <code>Domänen Benutzer</code>.';
294b0f7b75SAndreas Gohr$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.';
304b0f7b75SAndreas Gohr
3179f39653SAndreas Gohr
32