source: trunk/web/addons/job_monarch/lib/extjs/source/locale/ext-lang-pt.js @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

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