]> git.mxchange.org Git - friendica-addons.git/blob - piwik/lang/pl/strings.php
Merge pull request #615 from abanink/5118
[friendica-addons.git] / piwik / lang / pl / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_pl")) {
4 function string_plural_select_pl($n){
5         return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
6 }}
7 ;
8 $a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Ta strona internetowa jest śledzona za pomocą narzędzia analitycznego <a href='http://www.piwik.org'>Piwik</a>.";
9 $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)."] = "Jeśli nie chcesz, aby Twoje wizyty były rejestrowane w ten sposób, <a href='%s'>możesz ustawić plik cookie, aby uniemożliwić Piwik śledzenie dalszych odwiedzin witryny</a> (rezygnacja).";
10 $a->strings["Save Settings"] = "Zapisz ustawienia";
11 $a->strings["Piwik Base URL"] = "Podstawowy adres URL Piwik";
12 $a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Bezwzględna ścieżka do Twojej instalacji Piwik. (bez protokołu (http/s), z ukośnikiem)";
13 $a->strings["Site ID"] = "Identyfikator ID witryny";
14 $a->strings["Show opt-out cookie link?"] = "Pokaż łącze opt-out cookie?";
15 $a->strings["Asynchronous tracking"] = "Śledzenie asynchroniczne";
16 $a->strings["Settings updated."] = "Ustawienia zaktualizowane.";