Skip to content

Commit

Permalink
Merge pull request #4 from ilicz/master
Browse files Browse the repository at this point in the history
Add CS localization and fix issue #3
  • Loading branch information
splitbrain committed Feb 15, 2022
2 parents 9d0f577 + 68ca9c8 commit 2be6d67
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
31 changes: 31 additions & 0 deletions lang/cs/settings.php
@@ -0,0 +1,31 @@
<?php
/**
* Czech language file for oauthgeneric plugin
*
* @author David 'ilicz' Klementa <ilicz@inmail.cz>
*/

$lang['key'] = 'Aplikační UID';
$lang['secret'] = 'Aplikační heslo';
$lang['authurl'] = 'URL pro autentizaci';
$lang['tokenurl'] = 'URL pro získání tokenu';
$lang['userurl'] = 'Relativní URL pro získání uživatelských informací z API (musí vracet JSON data autentizovaného uživatele)';
$lang['authmethod'] = 'Autorizační metoda pro získání uživatelských informací z API';
$lang['scopes'] = 'Scopes to request (comma separated)';
$lang['scopes'] = 'Požadovaná oprávnění (scopes, oddělená čárkou)';

$lang['json-user'] = 'Objektová cesta k uživatelskému jménu (tečková notace)';
$lang['json-name'] = 'Objektová cesta k celému jménu uživatele (tečkovánotace)';
$lang['json-mail'] = 'Objektová cesta k emailu uživatele (tečková notace)';
$lang['json-grps'] = 'Objektová cesta ke skupinám uživatele (tečková notace)';

$lang['label'] = 'Titulek přihlašovacího tlačítka';
$lang['color'] = 'Barva přihlašovacího tlačítka';

$lang['authmethod_o_0'] = 'Hlavička OAuth';
$lang['authmethod_o_1'] = 'Hlavička Bearer';
$lang['authmethod_o_6'] = 'Hlavička Token';
$lang['authmethod_o_2'] = 'Query String v1';
$lang['authmethod_o_3'] = 'Query String v2';
$lang['authmethod_o_4'] = 'Query String v3';
$lang['authmethod_o_5'] = 'Query String v4';
6 changes: 3 additions & 3 deletions lang/en/settings.php
Expand Up @@ -14,9 +14,9 @@
$lang['scopes'] = 'Scopes to request (comma separated)';

$lang['json-user'] = 'Access to the username in dot notation';
$lang['json-name'] = 'Access to the username in dot notation';
$lang['json-mail'] = 'Access to the username in dot notation';
$lang['json-grps'] = 'Access to the username in dot notation';
$lang['json-name'] = 'Access to the full name in dot notation';
$lang['json-mail'] = 'Access to the user email in dot notation';
$lang['json-grps'] = 'Access to the user groups in dot notation';

$lang['label'] = 'Label to display on the login button';
$lang['color'] = 'Color to use with the login button';
Expand Down

0 comments on commit 2be6d67

Please sign in to comment.