mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 21:31:04 +00:00
16 lines
842 B
PHP
16 lines
842 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['Set default profile avatar or randomize the cat.'] = 'Alapértelmezett profilkép beállítása vagy véletlenszerű macska.';
|
|
$a->strings['Cat Avatar Settings'] = 'Macskaprofilkép-beállítások';
|
|
$a->strings['Use Cat as Avatar'] = 'Macska használata profilképként';
|
|
$a->strings['Another random Cat!'] = 'Egy másik véletlenszerű macska!';
|
|
$a->strings['Reset to email Cat'] = 'Visszaállítás e-mail macskára';
|
|
$a->strings['The cat hadn\'t found itself.'] = 'A macska nem találta meg önmagát.';
|
|
$a->strings['There was an error, the cat ran away.'] = 'Hiba történt, a macska elfutott.';
|
|
$a->strings['Profile Photos'] = 'Profilfényképek';
|
|
$a->strings['Meow!'] = 'Miáú!';
|