1 | #!/usr/bin/perl |
---|
2 | |
---|
3 | # $Id: strings.pl,v 1.03 2011/06/28 00:13:48 sbajic Exp $ |
---|
4 | # DSPAM |
---|
5 | # COPYRIGHT (C) 2002-2012 DSPAM PROJECT |
---|
6 | # |
---|
7 | # This program is free software: you can redistribute it and/or modify |
---|
8 | # it under the terms of the GNU Affero General Public License as |
---|
9 | # published by the Free Software Foundation, either version 3 of the |
---|
10 | # License, or (at your option) any later version. |
---|
11 | # |
---|
12 | # This program is distributed in the hope that it will be useful, |
---|
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
15 | # GNU Affero General Public License for more details. |
---|
16 | # |
---|
17 | # You should have received a copy of the GNU Affero General Public License |
---|
18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
19 | |
---|
20 | $LANG{'lang_name'} = "Português brasileiro"; |
---|
21 | $LANG{'lang_select'} = "Língua"; |
---|
22 | |
---|
23 | $LANG{'empty'} = "Vazio"; |
---|
24 | $LANG{'admin_suite'} = "Suite Administrativa"; |
---|
25 | $LANG{'alert_name'} = "Nome em Alerta"; |
---|
26 | $LANG{'remove_alert'} = "Remover"; |
---|
27 | $LANG{'user_form'} = "Proteção Estatística para"; |
---|
28 | $LANG{'user_form_submit'} = "Trocar"; |
---|
29 | |
---|
30 | $LANG{'admin_form'} = "Proteção Estatística para <strong>Administrador</strong>"; |
---|
31 | $LANG{'admin_form_submit'} = "Trocar"; |
---|
32 | |
---|
33 | $LANG{'option_disable_filtering'} = " Desabilita DSPAM"; |
---|
34 | $LANG{'option_enable_filtering'} = " Habilita DSPAM"; |
---|
35 | |
---|
36 | $LANG{'quarantine_rating'} = "Índice"; |
---|
37 | $LANG{'quarantine_date'} = "Data"; |
---|
38 | $LANG{'quarantine_from'} = "De"; |
---|
39 | $LANG{'quarantine_subject'} = "Assunto"; |
---|
40 | |
---|
41 | $LANG{'history_show'} = "Mostrar"; |
---|
42 | $LANG{'history_show_all'} = "todas"; |
---|
43 | $LANG{'history_show_spam'} = "spam"; |
---|
44 | $LANG{'history_show_innocent'} = "inocente"; |
---|
45 | $LANG{'history_show_whitelisted'} = "lista branca"; |
---|
46 | $LANG{'history_retrain_as_spam'} = "spam"; |
---|
47 | $LANG{'history_retrain_as_innocent'} = "inocente"; |
---|
48 | $LANG{'history_retrain_as'} = "Como"; |
---|
49 | $LANG{'history_retrain_undo'} = "Desfazer"; |
---|
50 | $LANG{'history_retrained'} = "Retreinado"; |
---|
51 | $LANG{'history_label_resend'} = "Reenviado"; |
---|
52 | $LANG{'history_label_whitelist'} = "Lista Branca"; |
---|
53 | $LANG{'history_label_spam'} = "SPAM"; |
---|
54 | $LANG{'history_label_innocent'} = "Inocente"; |
---|
55 | $LANG{'history_label_miss'} = "Perdido"; |
---|
56 | $LANG{'history_label_virus'} = "Vírus"; |
---|
57 | $LANG{'history_label_RBL'} = "RBL"; |
---|
58 | $LANG{'history_label_block'} = "BLOQUEADO"; |
---|
59 | $LANG{'history_label_corpus'} = "Ger. Corpus"; |
---|
60 | $LANG{'history_label_unknown'} = "DESC"; |
---|
61 | $LANG{'history_label_error'} = "Erro"; |
---|
62 | |
---|
63 | $LANG{'error_no_historic'} = "Nenhum dado historico dispoiÃvel"; |
---|
64 | $LANG{'error_cannot_open_log'} = "Incapaz de abrir log"; |
---|
65 | $LANG{'error_no_identity'} = "Erro de Sistema. Nao fui capaz de identifiaá-lo."; |
---|
66 | $LANG{'error_invalid_command'} = "Comando Invalido"; |
---|
67 | $LANG{'error_cannot_write_prefs'} = "Incapaz de salvar preferencias"; |
---|
68 | $LANG{'error_no_sigid'} = "ID da Mensagem nao especificado"; |
---|
69 | $LANG{'error_no_alert_specified'} = "Nenhum Alerta especificado."; |
---|
70 | $LANG{'error_message_part1'} = "Ocorreu o seguinte erro enquanto tentava processar sua requisicaão:"; |
---|
71 | $LANG{'error_message_part2'} = "Se este problema persistir, contate seu administrador."; |
---|
72 | $LANG{'error_filesystem_scale'} = "Incapaz de determinar o tamanho do sistema de arquivos"; |
---|
73 | $LANG{'error_load_default_prefs'} = "Incapaz de carregar preferencias padrao"; |
---|
74 | $LANG{'error_access_denied'} = "Acesso Negado"; |
---|
75 | |
---|
76 | $LANG{'graph_legend_x_label_hour'} = "Hora do dia"; |
---|
77 | $LANG{'graph_legend_x_label_date'} = "Data"; |
---|
78 | $LANG{'graph_legend_nb_messages'} = "Numero de Mensagens"; |
---|
79 | $LANG{'graph_legend_spam'} = "SPAM"; |
---|
80 | $LANG{'graph_legend_good'} = "Inocentes"; |
---|
81 | $LANG{'graph_legend_inoculations'} = "Inoculacoes"; |
---|
82 | $LANG{'graph_legend_corpusfeds'} = "Treino Base"; |
---|
83 | $LANG{'graph_legend_virus'} = "Virus"; |
---|
84 | $LANG{'graph_legend_RBL'} = "Lista Negra (RBL)"; |
---|
85 | $LANG{'graph_legend_blocklisted'} = "Bloqueadas"; |
---|
86 | $LANG{'graph_legend_whitelisted'} = "Auto-Lista Branca"; |
---|
87 | $LANG{'graph_legend_nonspam'} = "Nao spam"; |
---|
88 | $LANG{'graph_legend_spam_misses'} = "Spams Perdidos"; |
---|
89 | $LANG{'graph_legend_falsepositives'} = "Falsos Positivos"; |
---|
90 | |
---|
91 | 1; |
---|