mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
12 lines
424 B
PHP
12 lines
424 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_de")) {
|
||
|
function string_plural_select_de($n){
|
||
|
return ($n != 1);;
|
||
|
}}
|
||
|
;
|
||
|
$a->strings["Pageheader Settings"] = "Pageheader-instellingen";
|
||
|
$a->strings["Message to display on every page on this server"] = "Bericht om weer te geven op elke pagina van deze hub";
|
||
|
$a->strings["Submit"] = "Opslaan";
|
||
|
$a->strings["pageheader Settings saved."] = "Pageheader-instellingen opgeslagen.";
|