xref: /plugin/oauthgeneric/lang/en/settings.php (revision 15ad78b1119546d09a0ded21389e6594b02a0279)
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';
12cf22df2fSAndreas Gohr$lang['userurl'] = 'URL to the user info API endpoint (must return JSON about the authenticated user)';
13cf22df2fSAndreas Gohr$lang['authmethod'] = 'Authorization method used when talking to the user API';
14cf22df2fSAndreas Gohr$lang['scopes'] = 'Scopes to request (comma separated)';
15cf22df2fSAndreas Gohr
16cf22df2fSAndreas Gohr$lang['json-user'] = 'Access to the username in dot notation';
17*15ad78b1SDavid 'ilicz' Klementa$lang['json-name'] = 'Access to the full name in dot notation';
18*15ad78b1SDavid 'ilicz' Klementa$lang['json-mail'] = 'Access to the user email in dot notation';
19*15ad78b1SDavid 'ilicz' Klementa$lang['json-grps'] = 'Access to the user groups in dot notation';
20cf22df2fSAndreas Gohr
21cf22df2fSAndreas Gohr$lang['label'] = 'Label to display on the login button';
22cf22df2fSAndreas Gohr$lang['color'] = 'Color to use with the login button';
23cf22df2fSAndreas Gohr
24cf22df2fSAndreas Gohr$lang['authmethod_o_0'] = 'OAuth Header';
25cf22df2fSAndreas Gohr$lang['authmethod_o_1'] = 'Bearer Header';
26cf22df2fSAndreas Gohr$lang['authmethod_o_6'] = 'Token Header';
27cf22df2fSAndreas Gohr$lang['authmethod_o_2'] = 'Query String v1';
28cf22df2fSAndreas Gohr$lang['authmethod_o_3'] = 'Query String v2';
29cf22df2fSAndreas Gohr$lang['authmethod_o_4'] = 'Query String v3';
30cf22df2fSAndreas Gohr$lang['authmethod_o_5'] = 'Query String v4';
31