CS translation fromapp THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-09-17 21:58:44 +02:00
parent 45cff3affd
commit ed9297ea25
2 changed files with 16 additions and 14 deletions

View File

@ -4,37 +4,38 @@
# #
# #
# Translators: # Translators:
# Michal Šupler <msupler@gmail.com>, 2014-2015 # Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014-2015
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: 2015-02-11 19:41+0000\n" "PO-Revision-Date: 2018-09-11 19:01+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"
#: fromapp.php:38 #: fromapp.php:38
msgid "Fromapp settings updated." msgid "Fromapp settings updated."
msgstr "Fromapp nastavení aktualizováno." msgstr "Nastavení FromApp aktualizována."
#: fromapp.php:64 #: fromapp.php:64
msgid "FromApp Settings" msgid "FromApp Settings"
msgstr "FromApp nastavení" msgstr "Nastavení FromApp"
#: fromapp.php:66 #: fromapp.php:66
msgid "" msgid ""
"The application name you would like to show your posts originating from." "The application name you would like to show your posts originating from."
msgstr "Jméno zdrojové aplikace" msgstr "Jméno aplikace, která má být zobrazena jako zdroj Vašich příspěvků."
#: fromapp.php:70 #: fromapp.php:70
msgid "Use this application name even if another application was used." msgid "Use this application name even if another application was used."
msgstr "Použij toto jméno aplikace i když byla použita jiná aplikace" msgstr "Použít toto jméno aplikace, i když byla použita jiná aplikace"
#: fromapp.php:77 #: fromapp.php:77
msgid "Submit" msgid "Submit"

View File

@ -2,11 +2,12 @@
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["Fromapp settings updated."] = "Fromapp nastavení aktualizováno."; $a->strings["Fromapp settings updated."] = "Nastavení FromApp aktualizována.";
$a->strings["FromApp Settings"] = "FromApp nastavení"; $a->strings["FromApp Settings"] = "Nastavení FromApp";
$a->strings["The application name you would like to show your posts originating from."] = "Jméno zdrojové aplikace"; $a->strings["The application name you would like to show your posts originating from."] = "Jméno aplikace, která má být zobrazena jako zdroj Vašich příspěvků.";
$a->strings["Use this application name even if another application was used."] = "Použij toto jméno aplikace i když byla použita jiná aplikace"; $a->strings["Use this application name even if another application was used."] = "Použít toto jméno aplikace, i když byla použita jiná aplikace";
$a->strings["Submit"] = "Odeslat"; $a->strings["Submit"] = "Odeslat";