]> git.mxchange.org Git - friendica-addons.git/blob - nsfw/lang/pl/strings.php
Merge 2019.12 master into develop
[friendica-addons.git] / nsfw / 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["Content Filter (NSFW and more)"] = "Filtr zawartości (NSFW i więcej)";
9 $a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "Ten dodatek szuka określonych słów/tekstów w postach i zwija je. Może służyć do filtrowania treści oznaczonych np. NSFW, które mogą zostać uznane za nieodpowiednie w określonych momentach lub miejscach, na przykład w pracy. Jest to również przydatne do ukrywania nieistotnych lub irytujących treści z bezpośredniego widoku.";
10 $a->strings["Enable Content filter"] = "Włącz filtr treści";
11 $a->strings["Comma separated list of keywords to hide"] = "Rozdzielana przecinkami lista słów kluczowych do ukrycia";
12 $a->strings["Save Settings"] = "Zapisz ustawienia";
13 $a->strings["Use /expression/ to provide regular expressions"] = "Użyj /wyrażenia/, aby zapewnić wyrażenia regularne";
14 $a->strings["NSFW Settings saved."] = "Ustawienia NSFW zostały zapisane.";
15 $a->strings["Filtered tag: %s"] = "Filtrowane tagów: %s";
16 $a->strings["Filtered word: %s"] = "Filtrowane słowo: %s";