xref: /plugin/oauth/lang/en/settings.php (revision a9ed389088d3d78c0f9ad1f5315d8707f36b61b7)
1<?php
2/**
3 * english language file for oauth plugin
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8
9$lang['info']            = 'Redirect URI to use when configuring the applications';
10$lang['custom-redirectURI'] = 'Use the following custom redirect URI';
11$lang['auth0-key']       = 'The Client ID of your registered <a href="https://manage.auth0.com/#/applications">Auth0 application</a>';
12$lang['auth0-secret']    = 'The Client Secret of your registered <a href="https://manage.auth0.com/#/applications">Auth0 application</a>';
13$lang['auth0-domain']    = 'The Domain of your registered <a href="https://manage.auth0.com/#/applications">Auth0 account</a>';
14$lang['facebook-key']    = 'The App ID of your registered <a href="https://developers.facebook.com/apps">Facebook application</a>';
15$lang['facebook-secret'] = 'The App Secret of your registered <a href="https://developers.facebook.com/apps">Facebook application</a>';
16$lang['github-key']      = 'The Client ID of your registered <a href="https://github.com/settings/applications">Github application</a>';
17$lang['github-secret']   = 'The Client Secret of your registered <a href="https://github.com/settings/applications">Github application</a>';
18$lang['google-key']      = 'The Client ID of your registered <a href="https://console.developers.google.com/project">Google Project</a> (see Credentials Screen)';
19$lang['google-secret']   = 'The Client Secret of your registered <a href="https://console.developers.google.com/project">Google Project</a> (see Credentials Screen)';
20$lang['dataporten-key']  = 'The Client ID of your registered <a href="https://dashboard.dataporten.no">Dataporten application</a>';
21$lang['dataporten-secret'] = 'The Client Secret of your registered <a href="https://dashboard.dataporten.no">Dataporten application</a>';
22$lang['keycloak-key']      = 'The resource id of your Keycloak application.';
23$lang['keycloak-secret']   = 'The Secret of your Keycloak Application.';
24$lang['keycloak-authurl']  = 'The authorization endpoint URL of your Keycloak setup.';
25$lang['keycloak-tokenurl'] = 'The access token endpoint URL of your Keycloak setup.';
26$lang['keycloak-userinfourl'] = 'The userinfo endpoint URL of your Keycloak setup.';
27$lang['mailRestriction']   = "Limit authentification to users from this domain (optional, must start with an <code>@</code>)";
28$lang['yahoo-key']       = 'The Consumer Key of your registered <a href="https://developer.apps.yahoo.com/dashboard/createKey.html">Yahoo Application</a>';
29$lang['yahoo-secret']    = 'The Consumer Secret of your registered <a href="https://developer.apps.yahoo.com/dashboard/createKey.html">Yahoo Application</a>';
30$lang['doorkeeper-key']      = '(Example) The Application ID of your registered Doorkeeper Application.';
31$lang['doorkeeper-secret']   = '(Example) The Secret of your registered Doorkeeper Application.';
32$lang['doorkeeper-authurl']  = '(Example) The authorization endpoint URL of your Doorkeeper setup.';
33$lang['doorkeeper-tokenurl'] = '(Example) The access token endpoint URL of your Doorkeeper setup.';
34$lang['singleService']            = 'Login with single oAuth service only (disables local logins!)';
35$lang['singleService_o_'] = 'Allow all services';
36$lang['register-on-auth'] = 'Register authenticated users even if self-registration is disabled in main configuration';
37