Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / ext-lang-pt.html
1 <html>\r
2 <head>\r
3   <title>The source code</title>\r
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
6 </head>\r
7 <body  onload="prettyPrint();">\r
8     <pre class="prettyprint lang-js">/*
9  * Portuguese/Brazil Translation by Weber Souza
10  * 08 April 2007
11  * Updated by Allan Brazute Alves (EthraZa)
12  * 06 September 2007
13  * Adapted to European Portuguese by Helder Batista (hbatista)
14  * 31 January 2008
15  */
16
17 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Carregando...</div>';
18
19 if(Ext.View){
20    Ext.View.prototype.emptyText = "";
21 }
22
23 if(Ext.grid.GridPanel){
24    Ext.grid.GridPanel.prototype.ddText = "{0} linha(s) seleccionada(s)";
25 }
26
27 if(Ext.TabPanelItem){
28    Ext.TabPanelItem.prototype.closeText = "Fechar";
29 }
30
31 if(Ext.form.Field){
32    Ext.form.Field.prototype.invalidText = "O valor para este campo &eacute; inv&aacute;lido";
33 }
34
35 if(Ext.LoadMask){
36     Ext.LoadMask.prototype.msg = "Carregando...";
37 }
38
39 Date.monthNames = [
40    "Janeiro",
41    "Fevereiro",
42    "Mar&ccedil;o",
43    "Abril",
44    "Maio",
45    "Junho",
46    "Julho",
47    "Agosto",
48    "Setembro",
49    "Outubro",
50    "Novembro",
51    "Dezembro"
52 ];
53
54 Date.dayNames = [
55    "Domingo",
56    "Segunda",
57    "Ter&ccedil;a",
58    "Quarta",
59    "Quinta",
60    "Sexta",
61    "S&aacute;bado"
62 ];
63
64 if(Ext.MessageBox){
65    Ext.MessageBox.buttonText = {
66       ok     : "OK",
67       cancel : "Cancelar",
68       yes    : "Sim",
69       no     : "N&atilde;o"
70    };
71 }
72
73 if(Ext.util.Format){
74    Ext.util.Format.date = function(v, format){
75       if(!v) return "";
76       if(!(v instanceof Date)) v = new Date(Date.parse(v));
77       return v.dateFormat(format || "d/m/Y");
78    };
79 }
80
81 if(Ext.DatePicker){
82    Ext.apply(Ext.DatePicker.prototype, {
83       todayText         : "Hoje",
84       minText           : "Esta data &eacute; anterior &agrave; menor data",
85       maxText           : "Esta data &eacute; posterior &agrave; maior data",
86       disabledDaysText  : "",
87       disabledDatesText : "",
88       monthNames        : Date.monthNames,
89       dayNames          : Date.dayNames,
90       nextText          : 'Pr&oacute;ximo M&ecirc;s (Control+Direita)',
91       prevText          : 'M&ecirc;s Anterior (Control+Esquerda)',
92       monthYearText     : 'Escolha um M&ecirc;s (Control+Cima/Baixo para mover entre os anos)',
93       todayTip          : "{0} (Espa&ccedil;o)",
94       format            : "d/m/Y",
95       okText            : "&#160;OK&#160;",
96       cancelText        : "Cancelar",
97       startDay          : 0
98    });
99 }
100
101 if(Ext.PagingToolbar){
102    Ext.apply(Ext.PagingToolbar.prototype, {
103       beforePageText : "P&aacute;gina",
104       afterPageText  : "de {0}",
105       firstText      : "Primeira P&aacute;gina",
106       prevText       : "P&aacute;gina Anterior",
107       nextText       : "Pr&oacute;xima P&aacute;gina",
108       lastText       : "&Uacute;ltima P&aacute;gina",
109       refreshText    : "Atualizar",
110       displayMsg     : "<b>{0} &agrave; {1} de {2} registo(s)</b>",
111       emptyMsg       : 'Sem registos para exibir'
112    });
113 }
114
115 if(Ext.form.TextField){
116    Ext.apply(Ext.form.TextField.prototype, {
117       minLengthText : "O tamanho m&iacute;nimo para este campo &eacute; {0}",
118       maxLengthText : "O tamanho m&aacute;ximo para este campo &eacute; {0}",
119       blankText     : "Este campo &eacute; obrigat&oacute;rio.",
120       regexText     : "",
121       emptyText     : null
122    });
123 }
124
125 if(Ext.form.NumberField){
126    Ext.apply(Ext.form.NumberField.prototype, {
127       minText : "O valor m&iacute;nimo para este campo &eacute; {0}",
128       maxText : "O valor m&aacute;ximo para este campo &eacute; {0}",
129       nanText : "{0} n&atilde;o &eacute; um n&uacute;mero v&aacute;lido"
130    });
131 }
132
133 if(Ext.form.DateField){
134    Ext.apply(Ext.form.DateField.prototype, {
135       disabledDaysText  : "Desabilitado",
136       disabledDatesText : "Desabilitado",
137       minText           : "A data deste campo deve ser posterior a {0}",
138       maxText           : "A data deste campo deve ser anterior a {0}",
139       invalidText       : "{0} n&atilde;o &eacute; uma data v&aacute;lida - deve ser usado o formato {1}",
140       format            : "d/m/Y"
141    });
142 }
143
144 if(Ext.form.ComboBox){
145    Ext.apply(Ext.form.ComboBox.prototype, {
146       loadingText       : "Carregando...",
147       valueNotFoundText : undefined
148    });
149 }
150
151 if(Ext.form.VTypes){
152    Ext.apply(Ext.form.VTypes, {
153       emailText    : 'Este campo deve ser um endere&ccedil;o de e-mail v&aacute;lido, no formato "utilizador@dominio.com"',
154       urlText      : 'Este campo deve ser um URL no formato "http:/'+'/www.dominio.com"',
155       alphaText    : 'Este campo deve conter apenas letras e _',
156       alphanumText : 'Este campo deve conter apenas letras, n&uacute;meros e _'
157    });
158 }
159
160 if(Ext.form.HtmlEditor){
161    Ext.apply(Ext.form.HtmlEditor.prototype, {
162          createLinkText : 'Por favor, entre com o URL do link:',
163          buttonTips : {
164             bold : {
165                title: 'Negrito (Ctrl+B)',
166                text: 'Deixa o texto seleccionado em negrito.',
167                cls: 'x-html-editor-tip'
168             },
169             italic : {
170                title: 'Italico (Ctrl+I)',
171                text: 'Deixa o texto seleccionado em italico.',
172                cls: 'x-html-editor-tip'
173             },
174             underline : {
175                title: 'Sublinhado (Ctrl+U)',
176                text: 'Sublinha o texto seleccionado.',
177                cls: 'x-html-editor-tip'
178            },
179            increasefontsize : {
180                title: 'Aumentar Texto',
181                text: 'Aumenta o tamanho da fonte.',
182                cls: 'x-html-editor-tip'
183            },
184            decreasefontsize : {
185                title: 'Diminuir Texto',
186                text: 'Diminui o tamanho da fonte.',
187                cls: 'x-html-editor-tip'
188            },
189            backcolor : {
190                title: 'Cor de Fundo',
191                text: 'Muda a cor do fundo do texto seleccionado.',
192                cls: 'x-html-editor-tip'
193            },
194            forecolor : {
195                title: 'Cor da Fonte',
196                text: 'Muda a cor do texto seleccionado.',
197                cls: 'x-html-editor-tip'
198            },
199            justifyleft : {
200                title: 'Alinhar &agrave; Esquerda',
201                text: 'Alinha o texto &agrave; esquerda.',
202                cls: 'x-html-editor-tip'
203            },
204            justifycenter : {
205                title: 'Centrar Texto',
206                text: 'Centra o texto no editor.',
207                cls: 'x-html-editor-tip'
208            },
209            justifyright : {
210                title: 'Alinhar &agrave; Direita',
211                text: 'Alinha o texto &agrave; direita.',
212                cls: 'x-html-editor-tip'
213            },
214            insertunorderedlist : {
215                title: 'Lista com Marcadores',
216                text: 'Inicia uma lista com marcadores.',
217                cls: 'x-html-editor-tip'
218            },
219            insertorderedlist : {
220                title: 'Lista Numerada',
221                text: 'Inicia uma lista numerada.',
222                cls: 'x-html-editor-tip'
223            },
224            createlink : {
225                title: 'Hyperliga&ccedil;&atilde;o',
226                text: 'Transforma o texto selecionado num hyperlink.',
227                cls: 'x-html-editor-tip'
228            },
229            sourceedit : {
230                title: 'Editar Fonte',
231                text: 'Troca para o modo de edi&ccedil;&atilde;o de c&oacute;digo fonte.',
232                cls: 'x-html-editor-tip'
233            }
234         }
235    });
236 }
237
238 if(Ext.grid.GridView){
239    Ext.apply(Ext.grid.GridView.prototype, {
240       sortAscText  : "Ordem Ascendente",
241       sortDescText : "Ordem Descendente",
242       lockText     : "Bloquear Coluna",
243       unlockText   : "Desbloquear Coluna",
244       columnsText  : "Colunas"
245    });
246 }
247
248 if(Ext.grid.PropertyColumnModel){
249    Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
250       nameText   : "Nome",
251       valueText  : "Valor",
252       dateFormat : "d/m/Y"
253    });
254 }
255
256 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
257    Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
258       splitTip            : "Arraste para redimensionar.",
259       collapsibleSplitTip : "Arraste para redimensionar. Duplo clique para esconder."
260    });
261 }
262 </pre>    \r
263 </body>\r
264 </html>