]> git.mxchange.org Git - friendica-addons.git/commitdiff
CS translation group_text THX Aditoo
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 17 Sep 2018 18:59:15 +0000 (20:59 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 17 Sep 2018 18:59:15 +0000 (20:59 +0200)
group_text/lang/cs/messages.po
group_text/lang/cs/strings.php

index 499800732c9fd9913acc34dad9e99cc5afc145e2..8b56b630e7e427ee1f8316cff90f8afe2f8117e0 100644 (file)
@@ -4,24 +4,25 @@
 # 
 # 
 # Translators:
-# Michal Šupler <msupler@gmail.com>, 2014-2015
+# Aditoo, 2018
+# michal_s <msupler@gmail.com>, 2014-2015
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-02-27 05:01-0500\n"
-"PO-Revision-Date: 2015-02-11 19:40+0000\n"
-"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
-"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
+"PO-Revision-Date: 2018-09-12 09:47+0000\n"
+"Last-Translator: Aditoo\n"
+"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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
 msgid "Group Text settings updated."
-msgstr "Nastavení textu skupiny aktualizováno."
+msgstr "Nastavení Group Text aktualizována."
 
 #: group_text.php:76
 msgid "Group Text"
@@ -29,7 +30,7 @@ msgstr "Skupinový text"
 
 #: group_text.php:78
 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
 msgid "Submit"
index 33528314741bfc4920018856c57f0dd786930485..c5055a293a773ece922b10d3602dc70b4f6cc519 100644 (file)
@@ -2,10 +2,11 @@
 
 if(! function_exists("string_plural_select_cs")) {
 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["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";