mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 16:31:09 +00:00
16 lines
686 B
PHP
16 lines
686 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_fi_fi")) {
|
|
function string_plural_select_fi_fi($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['generic profile image'] = 'Yleinen profiilikuva';
|
|
$a->strings['random geometric pattern'] = 'satunnainen geometrinen kuvio';
|
|
$a->strings['monster face'] = 'hirviö';
|
|
$a->strings['computer generated face'] = 'tietokoneella tuotettut kasvot';
|
|
$a->strings['retro arcade style face'] = 'retro-videopeli kasvot';
|
|
$a->strings['Information'] = 'Tietoja';
|
|
$a->strings['Submit'] = 'Lähetä';
|
|
$a->strings['Default avatar image'] = 'Avatarin oletuskuva';
|
|
$a->strings['Gravatar settings updated.'] = 'Gravatar -asetukset päivitetty.';
|