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