[76] | 1 | /*! |
---|
| 2 | * Ext JS Library 3.4.0 |
---|
| 3 | * Copyright(c) 2006-2011 Sencha Inc. |
---|
| 4 | * licensing@sencha.com |
---|
| 5 | * http://www.sencha.com/license |
---|
| 6 | */ |
---|
| 7 | /* |
---|
| 8 | * Portuguese/Brazil Translation by Weber Souza |
---|
| 9 | * 08 April 2007 |
---|
| 10 | * Updated by Allan Brazute Alves (EthraZa) |
---|
| 11 | * 06 September 2007 |
---|
| 12 | * Adapted to European Portuguese by Helder Batista (hbatista) |
---|
| 13 | * 31 January 2008 |
---|
| 14 | */ |
---|
| 15 | |
---|
| 16 | Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Carregando...</div>'; |
---|
| 17 | |
---|
| 18 | if(Ext.View){ |
---|
| 19 | Ext.View.prototype.emptyText = ""; |
---|
| 20 | } |
---|
| 21 | |
---|
| 22 | if(Ext.grid.GridPanel){ |
---|
| 23 | Ext.grid.GridPanel.prototype.ddText = "{0} linha(s) seleccionada(s)"; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | if(Ext.TabPanelItem){ |
---|
| 27 | Ext.TabPanelItem.prototype.closeText = "Fechar"; |
---|
| 28 | } |
---|
| 29 | |
---|
| 30 | if(Ext.form.Field){ |
---|
| 31 | Ext.form.Field.prototype.invalidText = "O valor para este campo é inválido"; |
---|
| 32 | } |
---|
| 33 | |
---|
| 34 | if(Ext.LoadMask){ |
---|
| 35 | Ext.LoadMask.prototype.msg = "Carregando..."; |
---|
| 36 | } |
---|
| 37 | |
---|
| 38 | Date.monthNames = [ |
---|
| 39 | "Janeiro", |
---|
| 40 | "Fevereiro", |
---|
| 41 | "Março", |
---|
| 42 | "Abril", |
---|
| 43 | "Maio", |
---|
| 44 | "Junho", |
---|
| 45 | "Julho", |
---|
| 46 | "Agosto", |
---|
| 47 | "Setembro", |
---|
| 48 | "Outubro", |
---|
| 49 | "Novembro", |
---|
| 50 | "Dezembro" |
---|
| 51 | ]; |
---|
| 52 | |
---|
| 53 | Date.dayNames = [ |
---|
| 54 | "Domingo", |
---|
| 55 | "Segunda", |
---|
| 56 | "Terça", |
---|
| 57 | "Quarta", |
---|
| 58 | "Quinta", |
---|
| 59 | "Sexta", |
---|
| 60 | "Sábado" |
---|
| 61 | ]; |
---|
| 62 | |
---|
| 63 | if(Ext.MessageBox){ |
---|
| 64 | Ext.MessageBox.buttonText = { |
---|
| 65 | ok : "OK", |
---|
| 66 | cancel : "Cancelar", |
---|
| 67 | yes : "Sim", |
---|
| 68 | no : "Não" |
---|
| 69 | }; |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | if(Ext.util.Format){ |
---|
| 73 | Ext.util.Format.date = function(v, format){ |
---|
| 74 | if(!v) return ""; |
---|
| 75 | if(!(v instanceof Date)) v = new Date(Date.parse(v)); |
---|
| 76 | return v.dateFormat(format || "d/m/Y"); |
---|
| 77 | }; |
---|
| 78 | } |
---|
| 79 | |
---|
| 80 | if(Ext.DatePicker){ |
---|
| 81 | Ext.apply(Ext.DatePicker.prototype, { |
---|
| 82 | todayText : "Hoje", |
---|
| 83 | minText : "Esta data é anterior à menor data", |
---|
| 84 | maxText : "Esta data é posterior à maior data", |
---|
| 85 | disabledDaysText : "", |
---|
| 86 | disabledDatesText : "", |
---|
| 87 | monthNames : Date.monthNames, |
---|
| 88 | dayNames : Date.dayNames, |
---|
| 89 | nextText : 'Próximo Mês (Control+Direita)', |
---|
| 90 | prevText : 'Mês Anterior (Control+Esquerda)', |
---|
| 91 | monthYearText : 'Escolha um Mês (Control+Cima/Baixo para mover entre os anos)', |
---|
| 92 | todayTip : "{0} (Espaço)", |
---|
| 93 | format : "d/m/Y", |
---|
| 94 | okText : " OK ", |
---|
| 95 | cancelText : "Cancelar", |
---|
| 96 | startDay : 0 |
---|
| 97 | }); |
---|
| 98 | } |
---|
| 99 | |
---|
| 100 | if(Ext.PagingToolbar){ |
---|
| 101 | Ext.apply(Ext.PagingToolbar.prototype, { |
---|
| 102 | beforePageText : "Página", |
---|
| 103 | afterPageText : "de {0}", |
---|
| 104 | firstText : "Primeira Página", |
---|
| 105 | prevText : "Página Anterior", |
---|
| 106 | nextText : "Próxima Página", |
---|
| 107 | lastText : "Última Página", |
---|
| 108 | refreshText : "Atualizar", |
---|
| 109 | displayMsg : "<b>{0} à {1} de {2} registo(s)</b>", |
---|
| 110 | emptyMsg : 'Sem registos para exibir' |
---|
| 111 | }); |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | if(Ext.form.TextField){ |
---|
| 115 | Ext.apply(Ext.form.TextField.prototype, { |
---|
| 116 | minLengthText : "O tamanho mínimo para este campo é {0}", |
---|
| 117 | maxLengthText : "O tamanho máximo para este campo é {0}", |
---|
| 118 | blankText : "Este campo é obrigatório.", |
---|
| 119 | regexText : "", |
---|
| 120 | emptyText : null |
---|
| 121 | }); |
---|
| 122 | } |
---|
| 123 | |
---|
| 124 | if(Ext.form.NumberField){ |
---|
| 125 | Ext.apply(Ext.form.NumberField.prototype, { |
---|
| 126 | minText : "O valor mínimo para este campo é {0}", |
---|
| 127 | maxText : "O valor máximo para este campo é {0}", |
---|
| 128 | nanText : "{0} não é um número válido" |
---|
| 129 | }); |
---|
| 130 | } |
---|
| 131 | |
---|
| 132 | if(Ext.form.DateField){ |
---|
| 133 | Ext.apply(Ext.form.DateField.prototype, { |
---|
| 134 | disabledDaysText : "Desabilitado", |
---|
| 135 | disabledDatesText : "Desabilitado", |
---|
| 136 | minText : "A data deste campo deve ser posterior a {0}", |
---|
| 137 | maxText : "A data deste campo deve ser anterior a {0}", |
---|
| 138 | invalidText : "{0} não é uma data válida - deve ser usado o formato {1}", |
---|
| 139 | format : "d/m/Y", |
---|
| 140 | startDay : 0 |
---|
| 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ço de e-mail vá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ú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 à Esquerda', |
---|
| 201 | text: 'Alinha o texto à 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 à Direita', |
---|
| 211 | text: 'Alinha o texto à 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çã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ção de có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 | } |
---|