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