X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=nsfw%2Flang%2Fpl%2Fstrings.php;h=7b8e954567ce9c75df4bd027c16457dee04340cd;hb=25ba6023d0ac5d3fed79edeb207f00c0faa132e5;hp=8e8ce556fc2a3a64399d0f3431b3171d9f863c98;hpb=7b7019477fe29dd89378fe5012f909b604995879;p=friendica-addons.git diff --git a/nsfw/lang/pl/strings.php b/nsfw/lang/pl/strings.php index 8e8ce556..7b8e9545 100644 --- a/nsfw/lang/pl/strings.php +++ b/nsfw/lang/pl/strings.php @@ -2,14 +2,15 @@ if(! function_exists("string_plural_select_pl")) { function string_plural_select_pl($n){ - 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);; + $n = intval($n); + 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; } }} -; -$a->strings["Content Filter (NSFW and more)"] = "Filtr zawartości (NSFW i więcej)"; -$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."; -$a->strings["Enable Content filter"] = "Włącz filtr treści"; -$a->strings["Comma separated list of keywords to hide"] = "Rozdzielana przecinkami lista słów kluczowych do ukrycia"; -$a->strings["Save Settings"] = "Zapisz ustawienia"; -$a->strings["Use /expression/ to provide regular expressions"] = "Użyj /wyrażenia/, aby zapewnić wyrażenia regularne"; -$a->strings["NSFW Settings saved."] = "Ustawienia NSFW zostały zapisane."; -$a->strings["%s - Click to open/close"] = "%s - Kliknij, aby otworzyć/zamknąć"; +$a->strings['Content Filter (NSFW and more)'] = 'Filtr zawartości (NSFW i więcej)'; +$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.'; +$a->strings['Enable Content filter'] = 'Włącz filtr treści'; +$a->strings['Comma separated list of keywords to hide'] = 'Rozdzielana przecinkami lista słów kluczowych do ukrycia'; +$a->strings['Save Settings'] = 'Zapisz ustawienia'; +$a->strings['Use /expression/ to provide regular expressions'] = 'Użyj /wyrażenia/, aby zapewnić wyrażenia regularne'; +$a->strings['NSFW Settings saved.'] = 'Ustawienia NSFW zostały zapisane.'; +$a->strings['Filtered tag: %s'] = 'Filtrowane tagów: %s'; +$a->strings['Filtered word: %s'] = 'Filtrowane słowo: %s';