]> git.mxchange.org Git - friendica-addons.git/blob - advancedcontentfilter/lang/pl/strings.php
planets addon IT translation update THX Sylke Vicious
[friendica-addons.git] / advancedcontentfilter / lang / pl / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_pl")) {
4 function string_plural_select_pl($n){
5         $n = intval($n);
6         if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else  { return 3; }
7 }}
8 ;
9 $a->strings["Filtered by rule: %s"] = " Filtruj według reguły: %s";
10 $a->strings["Advanced Content Filter"] = "Zaawansowany filtr zawartości";
11 $a->strings["Back to Addon Settings"] = "Powrót do ustawień dodatków";
12 $a->strings["Add a Rule"] = "Dodaj regułę";
13 $a->strings["Help"] = "Pomoc";
14 $a->strings["Your rules"] = "Twoje zasady";
15 $a->strings["Disabled"] = "Wyłącz";
16 $a->strings["Enabled"] = "Włącz";
17 $a->strings["Disable this rule"] = "Wyłącz tę regułę";
18 $a->strings["Enable this rule"] = "Włącz tę regułę";
19 $a->strings["Edit this rule"] = "Edytuj tę regułę";
20 $a->strings["Edit the rule"] = "Edytuj regułę";
21 $a->strings["Save this rule"] = "Zapisz tę regułę";
22 $a->strings["Delete this rule"] = "Usuń tę regułę";
23 $a->strings["Rule"] = "Reguła";
24 $a->strings["Close"] = "Zamknij";
25 $a->strings["Add new rule"] = "Dodaj nową regułę";
26 $a->strings["Rule Name"] = "Nazwa reguły";
27 $a->strings["Rule Expression"] = "Wyrażanie reguły";
28 $a->strings["Cancel"] = "Anuluj";
29 $a->strings["You must be logged in to use this method"] = "Musisz być zalogowany, aby skorzystać z tej metody";
30 $a->strings["Invalid form security token, please refresh the page."] = "Nieprawidłowy token zabezpieczający formularz, odśwież stronę.";
31 $a->strings["The rule name and expression are required."] = "Nazwa reguły i wyrażenie są wymagane.";
32 $a->strings["Rule successfully added"] = "Reguła została pomyślnie dodana";
33 $a->strings["Rule doesn't exist or doesn't belong to you."] = "Reguła nie istnieje lub nie należy do ciebie.";
34 $a->strings["Rule successfully updated"] = "Reguła została pomyślnie zaktualizowana";
35 $a->strings["Rule successfully deleted"] = "Reguła została pomyślnie usunięta";
36 $a->strings["Missing argument: guid."] = "Brakujący argument: guid.";
37 $a->strings["Unknown post with guid: %s"] = "Nieznany post z guid:%s";
38 $a->strings["Method not found"] = "Nie znaleziono metody";