Skip to content
Snippets Groups Projects
Unverified Commit 2be6d676 authored by Andreas Gohr's avatar Andreas Gohr Committed by GitHub
Browse files

Merge pull request #4 from ilicz/master

Add CS localization and fix issue #3
parents 9d0f577c 68ca9c81
No related branches found
No related tags found
No related merge requests found
<?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';
...@@ -14,9 +14,9 @@ $lang['authmethod'] = 'Authorization method used when talking to the user API'; ...@@ -14,9 +14,9 @@ $lang['authmethod'] = 'Authorization method used when talking to the user API';
$lang['scopes'] = 'Scopes to request (comma separated)'; $lang['scopes'] = 'Scopes to request (comma separated)';
$lang['json-user'] = 'Access to the username in dot notation'; $lang['json-user'] = 'Access to the username in dot notation';
$lang['json-name'] = 'Access to the username in dot notation'; $lang['json-name'] = 'Access to the full name in dot notation';
$lang['json-mail'] = 'Access to the username in dot notation'; $lang['json-mail'] = 'Access to the user email in dot notation';
$lang['json-grps'] = 'Access to the username in dot notation'; $lang['json-grps'] = 'Access to the user groups in dot notation';
$lang['label'] = 'Label to display on the login button'; $lang['label'] = 'Label to display on the login button';
$lang['color'] = 'Color to use with the login button'; $lang['color'] = 'Color to use with the login button';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment