15 lines
447 B
PHP
15 lines
447 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_en_us")) {
|
||
|
function string_plural_select_en_us($n){
|
||
|
$n = intval($n);
|
||
|
return ($n != 1);;
|
||
|
}}
|
||
|
;
|
||
|
$a->strings["\"Superblock\""] = "";
|
||
|
$a->strings["Comma separated profile URLS to block"] = "Comma-separated profile URLs to block";
|
||
|
$a->strings["Save Settings"] = "";
|
||
|
$a->strings["SUPERBLOCK Settings saved."] = "";
|
||
|
$a->strings["Block Completely"] = "";
|
||
|
$a->strings["superblock settings updated"] = "";
|