diff options
Diffstat (limited to 'languages/pt/pt.search.php')
-rw-r--r-- | languages/pt/pt.search.php | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/languages/pt/pt.search.php b/languages/pt/pt.search.php index a4a633633..770081150 100644 --- a/languages/pt/pt.search.php +++ b/languages/pt/pt.search.php @@ -1,22 +1,18 @@ -<?php
-
-// Gerado pela extensão 'translationbrowser' 20110711-09:38:20 PM
-
-$portugues = array(
- 'search:enter_term' => "Insira um termo de pesquisa:" ,
- 'search:no_results' => "Nenhum resultado." ,
- 'search:matched' => "Combinados: " ,
- 'search:results' => "Resultados para %s" ,
- 'search:no_query' => "Por favor, insira uma expressão a ser pesquisada." ,
- 'search:search_error' => "Erro" ,
- 'search:more' => "+%s mais %s" ,
- 'search_types:tags' => "Descritores (Tags)" ,
- 'search_types:comments' => "Comentários" ,
- 'search:comment_on' => "Comentários sobre \"%s\"" ,
- 'search:comment_by' => "por" ,
- 'search:unavailable_entity' => "Entidade não disponível"
-);
-
-add_translation('pt', $portugues);
-
-?>
\ No newline at end of file +<?php +$pt = array ( + 'search:enter_term' => 'Insira um termo de pesquisa:', + 'search:no_results' => 'Nenhum resultado.', + 'search:matched' => 'Combinados: ', + 'search:results' => 'Resultados para %s', + 'search:no_query' => 'Por favor, insira uma expressão a ser pesquisada.', + 'search:search_error' => 'Erro', + 'search:more' => '+%s mais %s', + 'search_types:tags' => 'Descritores (Tags)', + 'search_types:comments' => 'Comentários', + 'search:comment_on' => 'Comentários sobre "%s"', + 'search:comment_by' => 'por', + 'search:unavailable_entity' => 'Entidade não disponível', +); + +add_translation("pt", $pt); + |