diff --git a/lang/cs/settings.php b/lang/cs/settings.php
new file mode 100644
index 0000000000000000000000000000000000000000..e5f5510697c83eb69926f2cc10f651c291b4b7ac
--- /dev/null
+++ b/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';
diff --git a/lang/en/settings.php b/lang/en/settings.php
index bafd3a2087a4ff8a4ec2a99a58d401b7b258d8c8..12e3dd86e06fcd586ebf7badcf1de040b858cc53 100644
--- a/lang/en/settings.php
+++ b/lang/en/settings.php
@@ -14,9 +14,9 @@ $lang['authmethod'] = 'Authorization method used when talking to the user API';
 $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';