mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 11:22:53 +00:00
11 lines
515 B
PHP
11 lines
515 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
function string_plural_select_de($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Startpage'] = 'Startpage';
|
|
$a->strings['Home page to load after login - leave blank for profile wall'] = 'Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand';
|
|
$a->strings['Examples: "network" or "notifications/system"'] = 'Beispiele: network, notifications/system';
|
|
$a->strings['Save Settings'] = 'Einstellungen speichern';
|