]> git.mxchange.org Git - friendica-addons.git/blobdiff - nsfw/lang/en-us/strings.php
regenerated all the strings
[friendica-addons.git] / nsfw / lang / en-us / strings.php
index 294cbbd646f4609c223f8619e7ae0373505a410a..a19b50b8ac9dd01b9882b421e4294c0585b75d76 100644 (file)
@@ -2,14 +2,11 @@
 
 if(! function_exists("string_plural_select_en_us")) {
 function string_plural_select_en_us($n){
-       return ($n != 1);;
+       $n = intval($n);
+       return intval($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";
+$a->strings['Enable Content filter'] = 'Enable content filter';
+$a->strings['Comma separated list of keywords to hide'] = 'Comma separated list of keywords';
+$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';