mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 16:31:09 +00:00
11 lines
462 B
PHP
11 lines
462 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['Enable Show More'] = 'Több megjelenítésének engedélyezése';
|
|
$a->strings['Cutting posts after how many characters'] = 'Bejegyzések levágása ennyi karakter után';
|
|
$a->strings['"Show more" Settings'] = '„Több megjelenítése” beállításai';
|
|
$a->strings['show more'] = 'több megjelenítése';
|