mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-11 02:48:48 +00:00
nsfw PL translation
This commit is contained in:
parent
03fb8b648a
commit
7b7019477f
2 changed files with 72 additions and 10 deletions
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
|
||||
$a->strings["This addon looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
|
||||
$a->strings["Enable Content filter"] = "";
|
||||
$a->strings["Comma separated list of keywords to hide"] = "";
|
||||
$a->strings["Submit"] = "Potwierdź";
|
||||
$a->strings["Use /expression/ to provide regular expressions"] = "";
|
||||
$a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";
|
||||
$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";
|
||||
<?php
|
||||
|
||||
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);;
|
||||
}}
|
||||
;
|
||||
$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ąć";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue