Merge branch 'master' of github.com:m1k1o/blog into wake-lock
This commit is contained in:
commit
7027ec4ed4
4 changed files with 71 additions and 3 deletions
|
@ -214,3 +214,4 @@ Feel free to create new PR and add a new language. Specify language in config or
|
||||||
* de - 🇩🇪 German
|
* de - 🇩🇪 German
|
||||||
* sk - 🇸🇰 Slovak
|
* sk - 🇸🇰 Slovak
|
||||||
* fr - 🇫🇷 French (thanks @Phundrak)
|
* fr - 🇫🇷 French (thanks @Phundrak)
|
||||||
|
* cz - 🇨🇿 Czech (thanks @djfinch)
|
||||||
|
|
|
@ -15,7 +15,7 @@ class Lang
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function get($key){
|
public static function get($key){
|
||||||
if(!array_key_exists($key, self::$_dictionary)){
|
if(!@array_key_exists($key, self::$_dictionary)){
|
||||||
return $key;
|
return $key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,4 +25,4 @@ class Lang
|
||||||
|
|
||||||
function __($key){
|
function __($key){
|
||||||
return Lang::get($key);
|
return Lang::get($key);
|
||||||
}
|
}
|
||||||
|
|
67
app/lang/cz.ini
Normal file
67
app/lang/cz.ini
Normal file
|
@ -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."
|
|
@ -41,7 +41,7 @@ November = "November"
|
||||||
December = "December"
|
December = "December"
|
||||||
|
|
||||||
Time: = "Čas:"
|
Time: = "Čas:"
|
||||||
Hour: = "Hodnia:"
|
Hour: = "Hodina:"
|
||||||
Minute: = "Minúta:"
|
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ť."
|
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ť."
|
||||||
|
|
Loading…
Reference in a new issue