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