]> git.mxchange.org Git - friendica-addons.git/commitdiff
updated the CS translation of the geonames addon THX Aditoo
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 13 Jun 2018 05:38:13 +0000 (07:38 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 13 Jun 2018 05:38:13 +0000 (07:38 +0200)
geonames/lang/cs/messages.po
geonames/lang/cs/strings.php

index 98d8f14f49714b69a19a5a3658a8ed2879945683..a677dbd9f17bcf64c3862b93a845764e6dfb3148 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:37+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-06-12 14:42+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"
 
 #: geonames.php:143
 msgid "Geonames settings updated."
-msgstr "Geonames nastavení aktualizováno."
+msgstr "Nastavení Geonames aktualizována."
 
 #: geonames.php:179
 msgid "Geonames Settings"
@@ -29,7 +30,7 @@ msgstr "Nastavení Geonames"
 
 #: geonames.php:181
 msgid "Enable Geonames Addon"
-msgstr "Povolit Geonames rozšíření"
+msgstr "Povolit doplněk Geonames"
 
 #: geonames.php:187
 msgid "Submit"
index dfd52e6c0f057bc88f01a8ed0696a6691e92e7e8..f8f41c1b913fdf808917baf7a9356999cc9cefdc 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["Geonames settings updated."] = "Geonames nastavení aktualizováno.";
+$a->strings["Geonames settings updated."] = "Nastavení Geonames aktualizována.";
 $a->strings["Geonames Settings"] = "Nastavení Geonames";
-$a->strings["Enable Geonames Addon"] = "Povolit Geonames rozšíření";
+$a->strings["Enable Geonames Addon"] = "Povolit doplněk Geonames";
 $a->strings["Submit"] = "Odeslat";