]> git.mxchange.org Git - friendica-addons.git/commitdiff
updated CS translation of the piwik addon THX Aditoo
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 12 Jun 2018 14:18:22 +0000 (16:18 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 12 Jun 2018 14:18:22 +0000 (16:18 +0200)
piwik/lang/cs/messages.po
piwik/lang/cs/strings.php

index e6fa2b837a90554ea08899cb2b6e2bbd6c7cb19b..4559aa086dbd3c16b45649cb39d965167d793eeb 100644 (file)
@@ -4,20 +4,21 @@
 # 
 # 
 # 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:39+0000\n"
-"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
-"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
+"POT-Creation-Date: 2015-07-26 12:49+0200\n"
+"PO-Revision-Date: 2018-06-11 19:40+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"
 
 #: piwik.php:79
 msgid ""
@@ -28,14 +29,14 @@ msgstr "Tato webová stránka je sledována pomocí nástroje pro analýzu <a hr
 #: piwik.php:82
 #, php-format
 msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr "Pokud si nepřejete, aby vaše návštěvy byly takto sledovány, <a href='%s'>můžete si nastavit cookie, které zastaví sledování dalších návštěv na tomto webu</a> (opt-out)."
+"If you do not want that your visits are logged in this way you <a "
+"href='%s'>can set a cookie to prevent Piwik from tracking further visits of "
+"the site</a> (opt-out)."
+msgstr "Pokut nechcete, aby byly vaše návštěvy takto sledovány, můžete si <a href='%s'>nastavit soubor cookie, která zabrání Piwik, aby sledovala Vaše další návštěvy na stránce</a> (tzv. opt-out)"
 
 #: piwik.php:89
-msgid "Submit"
-msgstr "Odeslat"
+msgid "Save Settings"
+msgstr "Uložit nastavení"
 
 #: piwik.php:90
 msgid "Piwik Base URL"
index 2f33209302e9990b1aacb2f8b57fc99d76dd22c5..8068af3f31d956adbab028baac8edd8b9dd99809 100644 (file)
@@ -2,12 +2,13 @@
 
 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["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Tato webová stránka je sledována pomocí nástroje pro analýzu <a href='http://www.piwik.org'>Piwik</a>.";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Pokud si nepřejete, aby vaše návštěvy byly takto sledovány, <a href='%s'>můžete si nastavit cookie, které zastaví sledování dalších návštěv na tomto webu</a> (opt-out).";
-$a->strings["Submit"] = "Odeslat";
+$a->strings["If you do not want that your visits are logged in this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Pokut nechcete, aby byly vaše návštěvy takto sledovány, můžete si <a href='%s'>nastavit soubor cookie, která zabrání Piwik, aby sledovala Vaše další návštěvy na stránce</a> (tzv. opt-out)";
+$a->strings["Save Settings"] = "Uložit nastavení";
 $a->strings["Piwik Base URL"] = "Piwik Base adresa URL";
 $a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absolutní cesta k Vaší instalaci Piwik. (bez protokolu (http/s), s koncovým lomítkem)";
 $a->strings["Site ID"] = "ID webu";