forked from friendica/friendica-addons
17 lines
894 B
PHP
17 lines
894 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_pt_br")) {
|
|
function string_plural_select_pt_br($n){
|
|
return ($n > 1);;
|
|
}}
|
|
;
|
|
$a->strings["Altpager settings updated."] = "Configurações de paginações atualizada.";
|
|
$a->strings["Alternate Pagination Setting"] = "Configurações de Paginação alternativa";
|
|
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Usar links para \"Mais recentes\" e \"Mais antigos\" no lugar do número de páginas?";
|
|
$a->strings["Submit"] = "Enviar";
|
|
$a->strings["Global"] = "Global";
|
|
$a->strings["Force global use of the alternate pager"] = "Força uso global da paginação alternativa";
|
|
$a->strings["Individual"] = "Individual";
|
|
$a->strings["Each user chooses whether to use the alternate pager"] = "Cada usuário escolhe se usa a paginação alternativa";
|
|
$a->strings["Settings updated."] = "Configurações atualizadas.";
|