diff --git a/piwik/lang/cs/messages.po b/piwik/lang/cs/messages.po index e6fa2b83..4559aa08 100644 --- a/piwik/lang/cs/messages.po +++ b/piwik/lang/cs/messages.po @@ -4,20 +4,21 @@ # # # Translators: -# Michal Šupler , 2014-2015 +# Aditoo, 2018 +# michal_s , 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 \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 can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Pokud si nepřejete, aby vaše návštěvy byly takto sledovány, můžete si nastavit cookie, které zastaví sledování dalších návštěv na tomto webu (opt-out)." +"If you do not want that your visits are logged in this way you can set a cookie to prevent Piwik from tracking further visits of " +"the site (opt-out)." +msgstr "Pokut nechcete, aby byly vaše návštěvy takto sledovány, můžete si nastavit soubor cookie, která zabrání Piwik, aby sledovala Vaše další návštěvy na stránce (tzv. opt-out)" #: piwik.php:89 -msgid "Submit" -msgstr "Odeslat" +msgid "Save Settings" +msgstr "Uložit nastavení" #: piwik.php:90 msgid "Piwik Base URL" diff --git a/piwik/lang/cs/strings.php b/piwik/lang/cs/strings.php index 2f332093..8068af3f 100644 --- a/piwik/lang/cs/strings.php +++ b/piwik/lang/cs/strings.php @@ -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 Piwik analytics tool."] = "Tato webová stránka je sledována pomocí nástroje pro analýzu Piwik."; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Pokud si nepřejete, aby vaše návštěvy byly takto sledovány, můžete si nastavit cookie, které zastaví sledování dalších návštěv na tomto webu (opt-out)."; -$a->strings["Submit"] = "Odeslat"; +$a->strings["If you do not want that your visits are logged in this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Pokut nechcete, aby byly vaše návštěvy takto sledovány, můžete si nastavit soubor cookie, která zabrání Piwik, aby sledovala Vaše další návštěvy na stránce (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";