forked from friendica/friendica-addons
13 lines
518 B
PHP
13 lines
518 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['"Show more" Settings'] = '„Több megjelenítése” beállításai';
|
|
$a->strings['Enable Show More'] = 'Több megjelenítésének engedélyezése';
|
|
$a->strings['Cutting posts after how much characters'] = 'Bejegyzések vágása ennyi karakter után';
|
|
$a->strings['Save Settings'] = 'Beállítások mentése';
|
|
$a->strings['show more'] = 'több megjelenítése';
|