diff options
author | Sem <sembrestels@riseup.net> | 2012-05-12 06:29:42 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-05-12 06:29:42 +0200 |
commit | 57cde174e1fb8f91a74983396897cebfde016f70 (patch) | |
tree | af4c7c976a1c0ac0695271dc34ed7286428e16ee /languages/pt/pt.thewire.php | |
parent | 50fdb26e11da8ea05ed38db2b46147cdddc9cf6e (diff) | |
download | elgg-57cde174e1fb8f91a74983396897cebfde016f70.tar.gz elgg-57cde174e1fb8f91a74983396897cebfde016f70.tar.bz2 |
Added several languages and upgraded existing ones.
Diffstat (limited to 'languages/pt/pt.thewire.php')
-rw-r--r-- | languages/pt/pt.thewire.php | 78 |
1 files changed, 37 insertions, 41 deletions
diff --git a/languages/pt/pt.thewire.php b/languages/pt/pt.thewire.php index 9737efc46..ed44db3b2 100644 --- a/languages/pt/pt.thewire.php +++ b/languages/pt/pt.thewire.php @@ -1,41 +1,37 @@ -<?php
-
-// Gerado pela extensão 'translationbrowser' 20111226-08:59:54 PM
-
-$portugues = array(
- 'thewire' => "Micro-blog" ,
- 'thewire:everyone' => "Todas mensagens do Micro-blog" ,
- 'thewire:user' => "Micro-blog de %s
-" ,
- 'thewire:friends' => "Seus amigos no Micro-blog" ,
- 'thewire:reply' => "Responder" ,
- 'thewire:replying' => "Responder para %s quem escreveu" ,
- 'thewire:thread' => "<i>(Thread)</i>" ,
- 'thewire:charleft' => "caracteres à esquerda" ,
- 'thewire:tags' => "Mensagens contendo os descritor (tag) '%s'" ,
- 'thewire:noposts' => "Nenhuma mensagem no Micro-blog ainda" ,
- 'item:object:thewire' => "Mensagens do Micro-blog" ,
- 'thewire:update' => "Atualizar" ,
- 'thewire:by' => "Mensagens do Micro-blog enviada por %s" ,
- 'thewire:previous' => "Anterior" ,
- 'thewire:hide' => "Esconder" ,
- 'thewire:previous:help' => "Ver mensagens anteriores" ,
- 'thewire:hide:help' => "Esconder mensagens anteriores" ,
- 'river:create:object:thewire' => "%s enviou mensagem para %s" ,
- 'thewire:wire' => "micro-blog" ,
- 'thewire:widget:desc' => "Mostra suas últimas mensagens no Micro-blog" ,
- 'thewire:num' => "Número de items a serem visualizados" ,
- 'thewire:moreposts' => "Mais mensagens do Micro-blog" ,
- 'thewire:posted' => "Sua mensagem foi enviado com sucesso para o Micro-blog" ,
- 'thewire:deleted' => "Sua mensagem no Micro-blog foi apagada com sucesso." ,
- 'thewire:blank' => "Desculpe. Você precisa digitar alguma coisa na caixa de texto antes de enviar." ,
- 'thewire:notfound' => "Desculpe. Não foi possível localizar a mensagem do Micro-blog definida." ,
- 'thewire:notdeleted' => "Desculpe. Não foi possível apagar a mensagem no Micro-blog" ,
- 'thewire:notify:subject' => "Nova mensagem postada" ,
- 'thewire:notify:reply' => "%s respondeu para %s no Micro-blog: " ,
- 'thewire:notify:post' => "%s postou no Micro-blog: "
-);
-
-add_translation('pt', $portugues);
-
-?>
\ No newline at end of file +<?php +$pt = array ( + 'thewire' => 'Micro-blog', + 'thewire:everyone' => 'Todas mensagens do Micro-blog', + 'thewire:user' => 'Micro-blog de %s
+', + 'thewire:friends' => 'Seus amigos no Micro-blog', + 'thewire:reply' => 'Responder', + 'thewire:replying' => 'Responder para %s quem escreveu', + 'thewire:thread' => '<i>(Thread)</i>', + 'thewire:charleft' => 'caracteres à esquerda', + 'thewire:tags' => 'Mensagens contendo os descritor (tag) \'%s\'', + 'thewire:noposts' => 'Nenhuma mensagem no Micro-blog ainda', + 'item:object:thewire' => 'Mensagens do Micro-blog', + 'thewire:update' => 'Atualizar', + 'thewire:by' => 'Mensagens do Micro-blog enviada por %s', + 'thewire:previous' => 'Anterior', + 'thewire:hide' => 'Esconder', + 'thewire:previous:help' => 'Ver mensagens anteriores', + 'thewire:hide:help' => 'Esconder mensagens anteriores', + 'river:create:object:thewire' => '%s enviou mensagem para %s', + 'thewire:wire' => 'micro-blog', + 'thewire:widget:desc' => 'Mostra suas últimas mensagens no Micro-blog', + 'thewire:num' => 'Número de items a serem visualizados', + 'thewire:moreposts' => 'Mais mensagens do Micro-blog', + 'thewire:posted' => 'Sua mensagem foi enviado com sucesso para o Micro-blog', + 'thewire:deleted' => 'Sua mensagem no Micro-blog foi apagada com sucesso.', + 'thewire:blank' => 'Desculpe. Você precisa digitar alguma coisa na caixa de texto antes de enviar.', + 'thewire:notfound' => 'Desculpe. Não foi possível localizar a mensagem do Micro-blog definida.', + 'thewire:notdeleted' => 'Desculpe. Não foi possível apagar a mensagem no Micro-blog', + 'thewire:notify:subject' => 'Nova mensagem postada', + 'thewire:notify:reply' => '%s respondeu para %s no Micro-blog: ', + 'thewire:notify:post' => '%s postou no Micro-blog: ', +); + +add_translation("pt", $pt); + |