xref: /plugin/oauthgeneric/lang/en/settings.php (revision ad7ba96d107a088eb9cfedef27a11192c4c72648)
1<?php
2/**
3 * english language file for oauthgeneric plugin
4 *
5 * @author Andreas Gohr <dokuwiki@cosmocode.de>
6 */
7
8$lang['key'] = 'The Application UID';
9$lang['secret'] = 'The Application Secret';
10$lang['authurl'] = 'URL to the authentication endpoint';
11$lang['tokenurl'] = 'URL to the token endpoint';
12$lang['logouturl'] = 'URL to log the user out at the IdP. Users will be redirected there on logout. (optional)';
13$lang['userurl'] = 'URL to the user info API endpoint (must return JSON about the authenticated user)';
14$lang['authmethod'] = 'Authorization method used when talking to the user API';
15$lang['scopes'] = 'Scopes to request (comma separated)';
16$lang['needs-state'] = 'The provider needs and supplies a state parameter in the callback URL.';
17
18$lang['json-user'] = 'Access to the username in dot notation';
19$lang['json-name'] = 'Access to the full name in dot notation';
20$lang['json-mail'] = 'Access to the user email in dot notation';
21$lang['json-grps'] = 'Access to the user groups in dot notation';
22
23$lang['label'] = 'Label to display on the login button';
24$lang['color'] = 'Color to use with the login button';
25
26$lang['authmethod_o_0'] = 'OAuth Header';
27$lang['authmethod_o_1'] = 'Bearer Header';
28$lang['authmethod_o_6'] = 'Token Header';
29$lang['authmethod_o_2'] = 'Query String v1';
30$lang['authmethod_o_3'] = 'Query String v2';
31$lang['authmethod_o_4'] = 'Query String v3';
32$lang['authmethod_o_5'] = 'Query String v4';
33