diff --git a/README.md b/README.md index 0349006..85551c0 100644 --- a/README.md +++ b/README.md @@ -214,3 +214,4 @@ Feel free to create new PR and add a new language. Specify language in config or * de - 🇩🇪 German * sk - 🇸🇰 Slovak * fr - 🇫🇷 French (thanks @Phundrak) +* cz - 🇨🇿 Czech (thanks @djfinch) diff --git a/app/lang.class.php b/app/lang.class.php index 4574e3a..74bd91c 100644 --- a/app/lang.class.php +++ b/app/lang.class.php @@ -15,7 +15,7 @@ class Lang } public static function get($key){ - if(!array_key_exists($key, self::$_dictionary)){ + if(!@array_key_exists($key, self::$_dictionary)){ return $key; } @@ -25,4 +25,4 @@ class Lang function __($key){ return Lang::get($key); -} \ No newline at end of file +} diff --git a/app/lang/cz.ini b/app/lang/cz.ini new file mode 100644 index 0000000..fe9d86a --- /dev/null +++ b/app/lang/cz.ini @@ -0,0 +1,67 @@ +; index.html +Show More = "Zobrazit více" + +Login = "Přihlásit se" +Logout = "Odhlásit se" + +Nick = "Přihlašovací jméno" +Password = "Heslo" +Cancel = "Zrušit" + +Post = "Nový příspěvek" + +Edit Post = "Upravit příspěvek" +Change Date = "Změnit datum" +Hide from Timeline = "Skrýt na časové ose" +Show on Timeline = "Zobrazit na časové ose" +Delete Post = "Odstranit příspěvek" + +Drag photos here = "Sem přesuňte fotografie" +Drop photos here = "Zde vložte fotografie" +What's on your mind? = "Na co myslíš?" +Feeling = "Pocit" +How are you feeling? = "Jak se cítíš?" +With = "Spolu s" +Who are you with? = "S kým jsi?" +At = "Místo" +Where are you? = "Kde jsi?" +Save = "Uložit" + +January = "Leden" +February = "Únor" +March = "Březen" +April = "Duben" +May = "Květen" +June = "Červen" +July = "Červenec" +August = "Srpen" +September = "Září" +October = "Říjen" +November = "Listopad" +December = "Prosinec" + +Time: = "Čas:" +Hour: = "Hodina:" +Minute: = "Minuta:" + +This post will be deleted and you'll no longer be able to find it. You can also edit this post if you just want to change something. = "Tento příspěvek bude odstraněn a už ho nebude možné najít. Pokud chcete něco změnit, můžete tento příspěvek také upravit." + +with = "s" +here: = "zde:" + +Public = "Veřejné" +Friends = "Přátelé" +Only me = "Jen já" + +Show hidden content = "Zobrazit skrytý obsah" +Show all posts = "Zobrazit všechny příspěvky" + +; user.class.php +You are already logged in. = "Už jsi přihlášený." +The nick or password is incorrect. = "Přihlašovací jméno nebo heslo je nesprávné." +You can't log out. There is no account. = "Nemůžeš se odhlásit. Neexistuje žádný účet." +You are not even logged in. = "Nejsi ani přihlášený." + +; post.class.php +You need to be logged in to perform this action. = "Na provedení této akce musíš být přihlášený." +No data. = "Žádná data." diff --git a/app/lang/sk.ini b/app/lang/sk.ini index 9ff730b..8cc568f 100644 --- a/app/lang/sk.ini +++ b/app/lang/sk.ini @@ -41,7 +41,7 @@ November = "November" December = "December" Time: = "Čas:" -Hour: = "Hodnia:" +Hour: = "Hodina:" Minute: = "Minúta:" This post will be deleted and you'll no longer be able to find it. You can also edit this post if you just want to change something. = "Tento príspevok bude odstránený a už ho nebudete môcť nájsť. Tento príspevok môžete tiež upraviť, ak chcete niečo zmeniť."