updated CS translation of the piwik addon THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-06-12 16:18:22 +02:00
parent f95abcbe07
commit 3c2fefdd5c
2 changed files with 17 additions and 15 deletions

View 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"

View 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";