/javascripts/lib/docs/source/ext-lang-pt_PT.html
HTML | 308 lines | 281 code | 27 blank | 0 comment | 0 complexity | ed6f26713e3cc160fd950ccc08b9ece6 MD5 | raw file
Possible License(s): GPL-3.0
1<html> 2<head> 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <title>The source code</title> 5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> 6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script> 7</head> 8<body onload="prettyPrint();"> 9 <pre class="prettyprint lang-js">/*! 10 * Ext JS Library 3.2.1 11 * Copyright(c) 2006-2010 Ext JS, Inc. 12 * licensing@extjs.com 13 * http://www.extjs.com/license 14 */ 15?<div id="prop-Ext.state.Provider-indicatorText"></div>/** 16 * Portuguese/Portugal (pt_PT) Translation 17 * by Nuno Franco da Costa - francodacosta.com 18 * translated from ext-lang-en.js 19 */ 20 21Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">A carregar...</div>'; 22 23if(Ext.View){ 24 Ext.View.prototype.emptyText = ""; 25} 26 27if(Ext.grid.GridPanel){ 28 Ext.grid.GridPanel.prototype.ddText = "{0} linha(s) seleccionada(s)"; 29} 30 31if(Ext.TabPanelItem){ 32 Ext.TabPanelItem.prototype.closeText = "Fechar aba"; 33} 34 35if(Ext.LoadMask){ 36 Ext.LoadMask.prototype.msg = "A carregar..."; 37} 38 39Date.monthNames = [ 40 "Janeiro", 41 "Fevereiro", 42 "Março", 43 "Abril", 44 "Maio", 45 "Junho", 46 "Julho", 47 "Agosto", 48 "Setembro", 49 "Outubro", 50 "Novembro", 51 "Dezembro" 52]; 53 54Date.getShortMonthName = function(month) { 55 return Date.monthNames[month].substring(0, 3); 56}; 57 58Date.monthNumbers = { 59 Jan : 0, 60 Feb : 1, 61 Mar : 2, 62 Apr : 3, 63 May : 4, 64 Jun : 5, 65 Jul : 6, 66 Aug : 7, 67 Sep : 8, 68 Oct : 9, 69 Nov : 10, 70 Dec : 11 71}; 72 73Date.getMonthNumber = function(name) { 74 return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()]; 75}; 76 77Date.dayNames = [ 78 "Domingo", 79 "Segunda", 80 "Terça", 81 "Quarta", 82 "Quinta", 83 "Sexta", 84 "Sabado" 85]; 86 87Date.getShortDayName = function(day) { 88 return Date.dayNames[day].substring(0, 3); 89}; 90 91if(Ext.MessageBox){ 92 Ext.MessageBox.buttonText = { 93 ok : "OK", 94 cancel : "Cancelar", 95 yes : "Sim", 96 no : "Não" 97 }; 98} 99 100if(Ext.util.Format){ 101 Ext.util.Format.date = function(v, format){ 102 if(!v) return ""; 103 if(!(v instanceof Date)) v = new Date(Date.parse(v)); 104 return v.dateFormat(format || "Y/m/d"); 105 }; 106} 107 108if(Ext.DatePicker){ 109 Ext.apply(Ext.DatePicker.prototype, { 110 todayText : "Hoje", 111 minText : "A data é anterior ao mínimo definido", 112 maxText : "A data é posterior ao m?ximo definido", 113 disabledDaysText : "", 114 disabledDatesText : "", 115 monthNames : Date.monthNames, 116 dayNames : Date.dayNames, 117 nextText : 'Mês Seguinte (Control+Right)', 118 prevText : 'Mês Anterior (Control+Left)', 119 monthYearText : 'Escolha um mês (Control+Up/Down avaçar/recuar anos)', 120 todayTip : "{0} (barra de espa?o)", 121 format : "y/m/d", 122 okText : "*OK*", 123 cancelText : "Cancelar", 124 startDay : 0 125 }); 126} 127 128if(Ext.PagingToolbar){ 129 Ext.apply(Ext.PagingToolbar.prototype, { 130 beforePageText : "Página", 131 afterPageText : "de {0}", 132 firstText : "Primeira Página", 133 prevText : "Página Anterior", 134 nextText : "Pr%oacute;xima Página", 135 lastText : "Última Página", 136 refreshText : "Recaregar", 137 displayMsg : "A mostrar {0} - {1} de {2}", 138 emptyMsg : 'Sem dados para mostrar' 139 }); 140} 141 142if(Ext.form.Field){ 143 Ext.form.Field.prototype.invalidText = "O valor deste campo é inválido"; 144} 145 146if(Ext.form.TextField){ 147 Ext.apply(Ext.form.TextField.prototype, { 148 minLengthText : "O comprimento mínimo deste campo &eaute; {0}", 149 maxLengthText : "O comprimento máximo deste campo &eaute; {0}", 150 blankText : "Este campo é de preenchimento obrigatório", 151 regexText : "", 152 emptyText : null 153 }); 154} 155 156if(Ext.form.NumberField){ 157 Ext.apply(Ext.form.NumberField.prototype, { 158 minText : "O valor mínimo deste campo &eaute; {0}", 159 maxText : "O valor máximo deste campo &eaute; {0}", 160 nanText : "{0} não é um numero" 161 }); 162} 163 164if(Ext.form.DateField){ 165 Ext.apply(Ext.form.DateField.prototype, { 166 disabledDaysText : "Desabilitado", 167 disabledDatesText : "Desabilitado", 168 minText : "A data deste campo deve ser posterior a {0}", 169 maxText : "A data deste campo deve ser anterior a {0}", 170 invalidText : "{0} não é uma data válida - deve estar no seguinte formato{1}", 171 format : "y/m/d", 172 altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d" 173 }); 174} 175 176if(Ext.form.ComboBox){ 177 Ext.apply(Ext.form.ComboBox.prototype, { 178 loadingText : "A Carregar...", 179 valueNotFoundText : undefined 180 }); 181} 182 183if(Ext.form.VTypes){ 184 Ext.apply(Ext.form.VTypes, { 185 emailText : 'Este campo deve ser um endereço de email no formato "utilizador@dominio.com"', 186 urlText : 'Este campo deve ser um URL no formato "http:/'+'/www.dominio.com"', 187 alphaText : 'Este campo deve conter apenas letras e _', 188 alphanumText : 'Este campo deve conter apenas letras, n@uacute;meros e _' 189 }); 190} 191 192if(Ext.form.HtmlEditor){ 193 Ext.apply(Ext.form.HtmlEditor.prototype, { 194 createLinkText : 'Indique o endereço do link:', 195 buttonTips : { 196 bold : { 197 title: 'Negrito (Ctrl+B)', 198 text: 'Transforma o texto em Negrito.', 199 cls: 'x-html-editor-tip' 200 }, 201 italic : { 202 title: 'Itálico (Ctrl+I)', 203 text: 'Transforma o texto em itálico.', 204 cls: 'x-html-editor-tip' 205 }, 206 underline : { 207 title: 'Sublinhar (Ctrl+U)', 208 text: 'Sublinha o texto.', 209 cls: 'x-html-editor-tip' 210 }, 211 increasefontsize : { 212 title: 'Aumentar texto', 213 text: 'Aumenta o tamanho da fonte.', 214 cls: 'x-html-editor-tip' 215 }, 216 decreasefontsize : { 217 title: 'Encolher texto', 218 text: 'Diminui o tamanho da fonte.', 219 cls: 'x-html-editor-tip' 220 }, 221 backcolor : { 222 title: 'Côr de fundo do texto', 223 text: 'Altera a côr de fundo do texto.', 224 cls: 'x-html-editor-tip' 225 }, 226 forecolor : { 227 title: 'Côr do texo', 228 text: 'Altera a aôr do texo.', 229 cls: 'x-html-editor-tip' 230 }, 231 justifyleft : { 232 title: 'ALinhar à esquerda', 233 text: 'ALinha o texto à esquerda.', 234 cls: 'x-html-editor-tip' 235 }, 236 justifycenter : { 237 title: 'Centrar', 238 text: 'Centra o texto.', 239 cls: 'x-html-editor-tip' 240 }, 241 justifyright : { 242 title: 'ALinhar à direita', 243 text: 'ALinha o texto &agravce; direita.', 244 cls: 'x-html-editor-tip' 245 }, 246 insertunorderedlist : { 247 title: 'Lista', 248 text: 'Inicia uma lista.', 249 cls: 'x-html-editor-tip' 250 }, 251 insertorderedlist : { 252 title: 'Lista Numerada', 253 text: 'Inicia uma lista numerada.', 254 cls: 'x-html-editor-tip' 255 }, 256 createlink : { 257 title: 'Hyperlink', 258 text: 'Transforma o texto num hyperlink.', 259 cls: 'x-html-editor-tip' 260 }, 261 sourceedit : { 262 title: 'Editar código', 263 text: 'Alterar para o modo de edição de código.', 264 cls: 'x-html-editor-tip' 265 } 266 } 267 }); 268} 269 270if(Ext.form.BasicForm){ 271 Ext.form.BasicForm.prototype.waitTitle = "Por favor espere..."; 272} 273 274if(Ext.grid.GridView){ 275 Ext.apply(Ext.grid.GridView.prototype, { 276 sortAscText : "Ordenação Crescente", 277 sortDescText : "Ordenação Decrescente", 278 lockText : "Fixar Coluna", 279 unlockText : "Libertar Coluna", 280 columnsText : "Colunas" 281 }); 282} 283 284if(Ext.grid.GroupingView){ 285 Ext.apply(Ext.grid.GroupingView.prototype, { 286 emptyGroupText : '(Nenhum)', 287 groupByText : 'Agrupar por este campo', 288 showGroupsText : 'Mostrar nos Grupos' 289 }); 290} 291 292if(Ext.grid.PropertyColumnModel){ 293 Ext.apply(Ext.grid.PropertyColumnModel.prototype, { 294 nameText : "Nome", 295 valueText : "Valor", 296 dateFormat : "Y/j/m" 297 }); 298} 299 300if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){ 301 Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, { 302 splitTip : "Arastar para redimensionar.", 303 collapsibleSplitTip : "Arastar para redimensionar. DUplo clique para esconder" 304 }); 305} 306</pre> 307</body> 308</html>