mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 16:11:09 +00:00
20 lines
1.5 KiB
PHP
20 lines
1.5 KiB
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_pt_br")) {
|
|
function string_plural_select_pt_br($n){
|
|
$n = intval($n);
|
|
return intval($n > 1);
|
|
}}
|
|
$a->strings['generic profile image'] = 'imagem de perfil genérica';
|
|
$a->strings['random geometric pattern'] = 'estampa geométrica aleatória';
|
|
$a->strings['monster face'] = 'careta';
|
|
$a->strings['computer generated face'] = 'rosto gerado por computador';
|
|
$a->strings['retro arcade style face'] = 'rosto de personagem de fliperama';
|
|
$a->strings['Information'] = 'Informação';
|
|
$a->strings['Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar.'] = 'O complemento Libravatar também está instalado. Desabilite o Libravatar ou este complemento, o Gravatar.<br>Se não encontrar nada, o Libravatar remeterá ao Gravatar.';
|
|
$a->strings['Submit'] = 'Enviar';
|
|
$a->strings['Default avatar image'] = 'Avatar padrão';
|
|
$a->strings['Select default avatar image if none was found at Gravatar. See README'] = 'Selecione a imagem de avatar padrão que será usada se nenhuma for encontrada no Gravatar. Veja README.';
|
|
$a->strings['Rating of images'] = 'Classificação de imagens';
|
|
$a->strings['Select the appropriate avatar rating for your site. See README'] = 'Selecione a classificação apropriada para os avatares que serão mostrados no seu site. Veja README.';
|
|
$a->strings['Gravatar settings updated.'] = 'As configurações do Gravatar foram atualizadas.';
|