Skip to content

Commit

Permalink
Merge branch 'master' of github.com:m1k1o/blog into wake-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
m1k1o committed Sep 20, 2020
2 parents fdaa83f + bf9ba1a commit 7027ec4
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions app/lang.class.php
Expand Up @@ -15,7 +15,7 @@ public static function load($lang = 'en'){
}

public static function get($key){
if(!array_key_exists($key, self::$_dictionary)){
if(!@array_key_exists($key, self::$_dictionary)){
return $key;
}

Expand All @@ -25,4 +25,4 @@ public static function get($key){

function __($key){
return Lang::get($key);
}
}
67 changes: 67 additions & 0 deletions 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."
2 changes: 1 addition & 1 deletion app/lang/sk.ini
Expand Up @@ -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ť."
Expand Down

0 comments on commit 7027ec4

Please sign in to comment.