mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 03:22:54 +00:00
11 lines
542 B
PHP
11 lines
542 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_hu")) {
|
|
function string_plural_select_hu($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Startpage'] = 'Kezdőlap';
|
|
$a->strings['Home page to load after login - leave blank for profile wall'] = 'Betöltendő kezdőoldal bejelentkezés után - hagyja üresen a profilfalhoz';
|
|
$a->strings['Examples: "network" or "notifications/system"'] = 'Példák: „network” vagy „notifications/system”';
|
|
$a->strings['Save Settings'] = 'Beállítások mentése';
|