1 | 1 | simandl | <?php |
2 | | | |
3 | | | // WebSVN - Subversion repository viewing via the web using PHP |
4 | | | // Copyright (C) 2004 Tim Armes |
5 | | | // |
6 | | | // This program is free software; you can redistribute it and/or modify |
7 | | | // it under the terms of the GNU General Public License as published by |
8 | | | // the Free Software Foundation; either version 2 of the License, or |
9 | | | // (at your option) any later version. |
10 | | | // |
11 | | | // This program is distributed in the hope that it will be useful, |
12 | | | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | | | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | | | // GNU General Public License for more details. |
15 | | | // |
16 | | | // You should have received a copy of the GNU General Public License |
17 | | | // along with this program; if not, write to the Free Software |
18 | | | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | | | // |
20 | | | // -- |
21 | | | // |
22 | | | // portuguese.php |
23 | | | // |
24 | | | // Portuguese language strings |
25 | | | |
26 | | | // The language name is displayed in the drop down box. It MUST be encoded as Unicode (no HTML entities). |
27 | | | $lang["LANGUAGENAME"] = "Portuguese"; |
28 | | | $lang['LANGUAGETAG'] = 'pt'; |
29 | | | |
30 | | | $lang["LOG"] = "Log"; |
31 | | | $lang["DIFF"] = "Diff"; |
32 | | | |
33 | | | $lang["NOREP"] = "Não foi indicado um repositório"; |
34 | | | $lang["NOPATH"] = "Path Inválida"; |
35 | | | |
36 | | | $lang["DIFFREVS"] = "Diferenças entre revisões"; |
37 | | | $lang["AND"] = "e"; |
38 | | | $lang["REV"] = "Rev"; |
39 | | | $lang["LINE"] = "Linha"; |
40 | | | $lang["SHOWENTIREFILE"] = "Mostrar todo o ficheiro"; |
41 | | | $lang["SHOWCOMPACT"] = "Mostrar apenas áreas com diferenças"; |
42 | | | |
43 | | | $lang["DIFFPREV"] = "Diferenças com a anterior"; |
44 | | | |
45 | | | $lang["REVINFO"] = "Notas desta revisão"; |
46 | | | $lang["GOYOUNGEST"] = "Revisão mais recente"; |
47 | | | $lang["LASTMOD"] = "Última alteração"; |
48 | | | $lang["LOGMSG"] = "Mensagem de Log"; |
49 | | | $lang["CHANGES"] = "Alterações"; |
50 | | | $lang["SHOWCHANGED"] = "Mostrar ficheiros alterados"; |
51 | | | $lang["HIDECHANGED"] = "Esconder ficheiros alterados"; |
52 | | | $lang["NEWFILES"] = "Novos ficheiros"; |
53 | | | $lang["CHANGEDFILES"] = "Ficheiros alterados"; |
54 | | | $lang["DELETEDFILES"] = "Ficheiros apagados"; |
55 | | | $lang["VIEWLOG"] = "Ver Log"; |
56 | | | $lang["PATH"] = "Path"; |
57 | | | $lang["AUTHOR"] = "Autor"; |
58 | | | $lang["AGE"] = "Idade"; |
59 | | | $lang["LOG"] = "Log"; |
60 | | | $lang["CURDIR"] = "Directoria Currente"; |
61 | | | $lang['NOPREVREV'] = 'Nenhuma revisĂŁo anterior'; |
62 | | | |
63 | | | $lang["PREV"] = "Anterior"; |
64 | | | $lang["NEXT"] = "Seguinte"; |
65 | | | $lang["SHOWALL"] = "Mostrar todos"; |
66 | | | |
67 | | | $lang["BADCMD"] = "Erro ao correr este comando"; |
68 | | | |
69 | | | $lang["POWERED"] = "Powered by <a href=\"http://www.websvn.info/\">WebSVN</a>"; |
70 | | | $lang["PROJECTS"] = "Subversion Projectos"; |
71 | | | $lang["SERVER"] = "Subversion Servidor"; |
72 | | | |
73 | | | $lang["SEARCHLOG"] = "Pesquisar o Search log por"; |
74 | | | $lang["CLEARLOG"] = "Limpar pesquisa"; |
75 | | | $lang["MORERESULTS"] = "Encontrar mais..."; |
76 | | | $lang["NORESULTS"] = "A pesquisa não devolveu nenhum log"; |
77 | | | $lang["NOMORERESULTS"] = "Não existem mais resultados (logs) para a pesquisa"; |
78 | | | |
79 | | | $lang["YEARS"] = "anos"; |
80 | | | $lang["MONTHS"] = "meses"; |
81 | | | $lang["WEEKS"] = "semanas"; |
82 | | | $lang["DAYS"] = "dias"; |
83 | | | $lang["HOURS"] = "horas"; |
84 | | | $lang["MINUTES"] = "minutos"; |
85 | | | |
86 | | | $lang["GO"] = "Go"; |