mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-04 17:43:00 +00:00
10 lines
375 B
PHP
10 lines
375 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['Use a text only (non-image) group selector in the "group edit" menu'] = 'Csak szöveges (kép nélküli) csoportválasztó használata a „csoportszerkesztés” menüben';
|
||
|
$a->strings['Group Text'] = 'Csoportszöveg';
|