CS translation forumdirectory THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-09-17 21:53:56 +02:00
parent c5f77da10c
commit 473cf1243c
2 changed files with 20 additions and 18 deletions

View File

@ -4,24 +4,25 @@
# #
# #
# Translators: # Translators:
# Michal Šupler <msupler@gmail.com>, 2014 # Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n" "POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-07-07 18:45+0000\n" "PO-Revision-Date: 2018-09-11 19:04+0000\n"
"Last-Translator: Michal Šupler <msupler@gmail.com>\n" "Last-Translator: Aditoo\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: cs\n" "Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: forumdirectory.php:22 #: forumdirectory.php:22
msgid "Forum Directory" msgid "Forum Directory"
msgstr "Adresář Fór" msgstr "Adresář fór"
#: forumdirectory.php:53 #: forumdirectory.php:53
msgid "Public access denied." msgid "Public access denied."
@ -33,11 +34,11 @@ msgstr "Globální adresář"
#: forumdirectory.php:79 #: forumdirectory.php:79
msgid "Find on this site" msgid "Find on this site"
msgstr "Nalézt na tomto webu" msgstr "Nat na tomto webu"
#: forumdirectory.php:81 #: forumdirectory.php:81
msgid "Finding: " msgid "Finding: "
msgstr "Zjištění: " msgstr "Hledání: "
#: forumdirectory.php:82 #: forumdirectory.php:82
msgid "Site Directory" msgid "Site Directory"
@ -57,7 +58,7 @@ msgstr "Pohlaví: "
#: forumdirectory.php:156 #: forumdirectory.php:156
msgid "Location:" msgid "Location:"
msgstr "Místo:" msgstr "Poloha:"
#: forumdirectory.php:158 #: forumdirectory.php:158
msgid "Gender:" msgid "Gender:"
@ -65,11 +66,11 @@ msgstr "Pohlaví:"
#: forumdirectory.php:160 #: forumdirectory.php:160
msgid "Status:" msgid "Status:"
msgstr "Status:" msgstr "Stav:"
#: forumdirectory.php:162 #: forumdirectory.php:162
msgid "Homepage:" msgid "Homepage:"
msgstr "Domá stránka:" msgstr "Domovská stránka:"
#: forumdirectory.php:164 #: forumdirectory.php:164
msgid "About:" msgid "About:"

View File

@ -2,21 +2,22 @@
if(! function_exists("string_plural_select_cs")) { if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){ function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; $n = intval($n);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
}} }}
; ;
$a->strings["Forum Directory"] = "Adresář Fór"; $a->strings["Forum Directory"] = "Adresář fór";
$a->strings["Public access denied."] = "Veřejný přístup odepřen."; $a->strings["Public access denied."] = "Veřejný přístup odepřen.";
$a->strings["Global Directory"] = "Globální adresář"; $a->strings["Global Directory"] = "Globální adresář";
$a->strings["Find on this site"] = "Nalézt na tomto webu"; $a->strings["Find on this site"] = "Nat na tomto webu";
$a->strings["Finding: "] = "Zjištění: "; $a->strings["Finding: "] = "Hledání: ";
$a->strings["Site Directory"] = "Adresář serveru"; $a->strings["Site Directory"] = "Adresář serveru";
$a->strings["Find"] = "Najít"; $a->strings["Find"] = "Najít";
$a->strings["Age: "] = "Věk: "; $a->strings["Age: "] = "Věk: ";
$a->strings["Gender: "] = "Pohlaví: "; $a->strings["Gender: "] = "Pohlaví: ";
$a->strings["Location:"] = "Místo:"; $a->strings["Location:"] = "Poloha:";
$a->strings["Gender:"] = "Pohlaví:"; $a->strings["Gender:"] = "Pohlaví:";
$a->strings["Status:"] = "Status:"; $a->strings["Status:"] = "Stav:";
$a->strings["Homepage:"] = "Domá stránka:"; $a->strings["Homepage:"] = "Domovská stránka:";
$a->strings["About:"] = "O mě:"; $a->strings["About:"] = "O mě:";
$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty)."; $a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";