forked from friendica/friendica-addons
15 lines
592 B
PHP
15 lines
592 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
function string_plural_select_de($n){
|
|
$n = intval($n);
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["Superblock"] = "Superblock";
|
|
$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die geblockt werden sollen (durch Kommas getrennt)";
|
|
$a->strings["Save Settings"] = "Einstellungen speichern";
|
|
$a->strings["SUPERBLOCK Settings saved."] = "Superblock Einstellungen gespeichert";
|
|
$a->strings["Block Completely"] = "Vollständig blockieren";
|
|
$a->strings["superblock settings updated"] = "Superblock Einstellungen aktualisiert";
|