1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | $lang['Your name'] = 'O seu nome'; |
---|
25 | $lang['Your e-mail'] = 'O seu email'; |
---|
26 | $lang['Subject'] = 'Assunto'; |
---|
27 | $lang['Message'] = 'Mensagem'; |
---|
28 | $lang['General configuration'] = 'Configuração Geral'; |
---|
29 | $lang['Add link in menu'] = 'Adicionar link no menú'; |
---|
30 | $lang['Allow guests to see the form'] = 'Permitir aos visitantes a visualização do formulário'; |
---|
31 | $lang['E-mail address is mandatory'] = 'Endereço de email é imperativo'; |
---|
32 | $lang['Name is mandatory'] = 'Nome é obrigatório'; |
---|
33 | $lang['E-mail configuration'] = 'Configuração de email'; |
---|
34 | $lang['Text before the contact form'] = 'Texto depois do formulário de contacto'; |
---|
35 | $lang['Text after the contact form'] = 'Texto antes do formulário de contacto'; |
---|
36 | $lang['E-mail sent successfully'] = 'Email enviado com sucesso'; |
---|
37 | $lang['Please enter a name'] = 'Por favor escreva um nome'; |
---|
38 | $lang['Please enter a subject'] = 'Por favor escreva um assunto'; |
---|
39 | $lang['Please enter a message'] = 'Por favor escreva uma mensagem'; |
---|
40 | $lang['Error while sending e-mail'] = 'Erro ao enviar email'; |
---|
41 | |
---|
42 | $lang['%s must not be less than %d characters long'] = '%s não pode ter menos de %d charactéres '; |
---|
43 | $lang['%s must not be more than %d characters long'] = '%s não pode ter mais de %d charactéres '; |
---|
44 | $lang['+ Add an email'] = '+ Adicionar um Email'; |
---|
45 | $lang['Active'] = 'Ativo'; |
---|
46 | $lang['Default e-mail subject'] = 'Assunto do Email, por defeito.'; |
---|
47 | $lang['E-mail format :'] = 'Formato do Email'; |
---|
48 | $lang['No active email address'] = 'Direção de Email não ativada'; |
---|
49 | $lang['Plain text'] = 'Texto normal'; |
---|
50 | $lang['Please enter an e-mail'] = 'Indique um Email por favor'; |
---|
51 | $lang['Prefix of the sent e-mail subject'] = 'Prefixo do assunto Enviar e-mail'; |
---|
52 | $lang['you can use "%gallery_title%"'] = 'Pode usar "%gallery_title%"'; |
---|
53 | $lang['+ Add a category'] = '+ Adicionar uma categoria'; |
---|
54 | $lang['Category'] = 'Categoria'; |
---|
55 | $lang['Each category is displayed as a distinct "service" on the contact form (example: "Technical", "Commercial", "General question"). Using categories is not mandatory.'] = 'Cada categoria é apresentada como um serviço distinto no formulário contacto ( Exemplo: "Tecnico","Comercial","Questão geral"). Não é obrigatório o uso de categorias.'; |
---|
56 | $lang['Please choose a category'] = 'Escolha uma categoria se faz favor'; |
---|
57 | $lang['Redirect after sending email (optional)'] = 'Redirecionar depois de enviar o mail (Opcional)'; |
---|
58 | $lang['Tip'] = 'Tipo'; |
---|
59 | $lang['can be translated with LocalFiles Editor plugin'] = 'pode ser traduzido com a extenção Editor de Arquivos Locais'; |
---|
60 | $lang['Send'] = 'Enviar'; |
---|
61 | $lang['Send copy to my email'] = 'Enviar uma cópia para o meu E-mail'; |
---|
62 | $lang['Invalid redirect URL'] = 'URL de redireção inválida'; |
---|
63 | $lang['Name'] = 'Nome'; |
---|
64 | ?> |
---|