2019-06-22 02:24:09 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_en_gb")) {
|
|
|
|
function string_plural_select_en_gb($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 12:47:38 -05:00
|
|
|
return intval($n != 1);
|
2019-06-22 02:24:09 -04:00
|
|
|
}}
|
2021-10-10 02:27:53 -04:00
|
|
|
$a->strings['Superblock'] = 'Superblock';
|
|
|
|
$a->strings['Comma separated profile URLS to block'] = 'Profile URLs to block (separated by commas)';
|
|
|
|
$a->strings['Save Settings'] = 'Save settings';
|
|
|
|
$a->strings['SUPERBLOCK Settings saved.'] = 'Superblock settings saved.';
|
|
|
|
$a->strings['Block Completely'] = 'Block completely';
|
|
|
|
$a->strings['superblock settings updated'] = 'Superblock settings updated';
|