1<?php
2/**
3 * Configuration texts for SAML Auth
4 */
5
6$lang['idPEntityID'] = 'The ID of your SAML server. Usually <code>http://<i>&lt;yourserver&gt;</i>/adfs/services/trust</code>';
7$lang['endpoint']    = 'The SAML auth API endpoint. Usually <code>https://<i>&lt;yourserver&gt;</i>/adfs/ls/</code>';
8$lang['slo_endpoint']    = 'The SAML auth API endpoint for the Single Logout service. Usually <code>https://<i>&lt;yourserver&gt;</i>/adfs/ls/</code>';
9$lang['certificate'] = 'The SAML auth certificate';
10$lang['lowercase'] = 'Treat user and group names as case insensitive and lower case them automatically?';
11$lang['autoprovisioning'] = 'Automatic user provisioning: authenticated users are created automatically and do not need to be added manually by the wiki administrator';
12$lang['use_slo'] = 'Whether to bounce back to the SP to complete a Single Logoff or to just kill the current DokuWiki session';
13$lang["auto_login"] = "when to enforce auto-login: <code>never</code> will never ask to automatically authenticate; <code>after login</code> will prompt to automatically ask to re-authenticate if the DokuWiki session ends unless explicitly logged out; <code>always</code> will always require login";
14$lang['userid_attr_name'] = 'User login name attribute';
15$lang['fullname_attr_name'] = 'Full name attribute';
16$lang['email_attr_name'] = 'E-mail attribute';
17$lang['groups_attr_name'] = 'Groups attribute';
18
19
20