CS translation group_text THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-09-17 20:59:15 +02:00
parent 5d653c156d
commit c28c3eed91
2 changed files with 12 additions and 10 deletions

View File

@ -4,24 +4,25 @@
# #
# #
# 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:40+0000\n" "PO-Revision-Date: 2018-09-12 09:47+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"
#: group_text.php:46 #: group_text.php:46
msgid "Group Text settings updated." msgid "Group Text settings updated."
msgstr "Nastavení textu skupiny aktualizováno." msgstr "Nastavení Group Text aktualizována."
#: group_text.php:76 #: group_text.php:76
msgid "Group Text" msgid "Group Text"
@ -29,7 +30,7 @@ msgstr "Skupinový text"
#: group_text.php:78 #: group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu" msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr "Použijte pouze textový (neobrázkový) výběr skupiny v menu editace skupin." msgstr "Použijte pouze textový (bezobrázkový) výběr skupiny v menu úpravy skupin."
#: group_text.php:84 #: group_text.php:84
msgid "Submit" msgid "Submit"

View File

@ -2,10 +2,11 @@
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["Group Text settings updated."] = "Nastavení textu skupiny aktualizováno."; $a->strings["Group Text settings updated."] = "Nastavení Group Text aktualizována.";
$a->strings["Group Text"] = "Skupinový text"; $a->strings["Group Text"] = "Skupinový text";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Použijte pouze textový (neobrázkový) výběr skupiny v menu editace skupin."; $a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Použijte pouze textový (bezobrázkový) výběr skupiny v menu úpravy skupin.";
$a->strings["Submit"] = "Odeslat"; $a->strings["Submit"] = "Odeslat";