forked from friendica/friendica-addons
16 lines
927 B
PHP
16 lines
927 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_en_us")) {
|
||
|
function string_plural_select_en_us($n){
|
||
|
return ($n != 1);;
|
||
|
}}
|
||
|
;
|
||
|
$a->strings["Content Filter (NSFW and more)"] = "";
|
||
|
$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."] = "";
|
||
|
$a->strings["Enable Content filter"] = "Enable content filter";
|
||
|
$a->strings["Comma separated list of keywords to hide"] = "Comma separated list of keywords";
|
||
|
$a->strings["Save Settings"] = "";
|
||
|
$a->strings["Use /expression/ to provide regular expressions"] = "Use /expression/ for regular expressions.";
|
||
|
$a->strings["NSFW Settings saved."] = "NSFW settings saved.";
|
||
|
$a->strings["%s - Click to open/close"] = "%s - Reveal/hide";
|