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['userurl'] = 'URL to the user info API endpoint (must return JSON about the authenticated user)';
13$lang['authmethod'] = 'Authorization method used when talking to the user API';
14$lang['scopes'] = 'Scopes to request (comma separated)';
15$lang['needs-state'] = 'The provider needs and supplies a state parameter in the callback URL.';
16
17$lang['json-user'] = 'Access to the username in dot notation';
18$lang['json-name'] = 'Access to the full name in dot notation';
19$lang['json-mail'] = 'Access to the user email in dot notation';
20$lang['json-grps'] = 'Access to the user groups in dot notation';
21
22$lang['label'] = 'Label to display on the login button';
23$lang['color'] = 'Color to use with the login button';
24
25$lang['authmethod_o_0'] = 'OAuth Header';
26$lang['authmethod_o_1'] = 'Bearer Header';
27$lang['authmethod_o_6'] = 'Token Header';
28$lang['authmethod_o_2'] = 'Query String v1';
29$lang['authmethod_o_3'] = 'Query String v2';
30$lang['authmethod_o_4'] = 'Query String v3';
31$lang['authmethod_o_5'] = 'Query String v4';
32