2015-04-03 07:17:32 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
|
|
function string_plural_select_de($n){
|
2018-08-20 07:06:55 -04:00
|
|
|
$n = intval($n);
|
2021-02-01 12:47:38 -05:00
|
|
|
return intval($n != 1);
|
2015-04-03 07:17:32 -04:00
|
|
|
}}
|
|
|
|
;
|
2018-08-20 07:06:55 -04:00
|
|
|
$a->strings["Superblock"] = "Superblock";
|
2015-04-03 07:17:32 -04:00
|
|
|
$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die geblockt werden sollen (durch Kommas getrennt)";
|
2018-08-20 10:31:06 -04:00
|
|
|
$a->strings["Save Settings"] = "Einstellungen speichern";
|
2018-08-20 07:06:55 -04:00
|
|
|
$a->strings["SUPERBLOCK Settings saved."] = "Superblock Einstellungen gespeichert";
|
|
|
|
$a->strings["Block Completely"] = "Vollständig blockieren";
|
|
|
|
$a->strings["superblock settings updated"] = "Superblock Einstellungen aktualisiert";
|