3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
\r
4 <title>The source code</title>
\r
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js">/*
10 * Spanish/Latin American Translation by genius551v 04-08-2007
11 * Revised by efege, 2007-04-15.
12 * Revised by Rafaga2k 10-01-2007 (mm/dd/yyyy)
13 * Revised by FeDe 12-13-2007 (mm/dd/yyyy)
14 * Synchronized with 2.2 version of ext-lang-en.js (provided by Condor 8 aug 2008)
15 * by halkon_polako 14-aug-2008
18 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Cargando...</div>';
21 Ext.DataView.prototype.emptyText = "";
24 if(Ext.grid.GridPanel){
25 Ext.grid.GridPanel.prototype.ddText = "{0} fila(s) seleccionada(s)";
29 Ext.LoadMask.prototype.msg = "Cargando...";
47 Date.getShortMonthName = function(month) {
48 return Date.monthNames[month].substring(0, 3);
66 Date.getMonthNumber = function(name) {
67 return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
80 Date.getShortDayName = function(day) {
81 if (day==3) return "Mié";
82 if (day==6) return "Sáb";
83 return Date.dayNames[day].substring(0, 3);
86 Date.parseCodes.S.s = "(?:st|nd|rd|th)";
89 Ext.MessageBox.buttonText = {
98 Ext.util.Format.date = function(v, format){
100 if(!(v instanceof Date)) v = new Date(Date.parse(v));
101 return v.dateFormat(format || "d/m/Y");
106 Ext.apply(Ext.DatePicker.prototype, {
108 minText : "Esta fecha es anterior a la fecha mínima",
109 maxText : "Esta fecha es posterior a la fecha máxima",
110 disabledDaysText : "",
111 disabledDatesText : "",
112 monthNames : Date.monthNames,
113 dayNames : Date.dayNames,
114 nextText : 'Mes Siguiente (Control+Right)',
115 prevText : 'Mes Anterior (Control+Left)',
116 monthYearText : 'Seleccione un mes (Control+Up/Down para desplazar el año)',
117 todayTip : "{0} (Barra espaciadora)",
119 okText : " Ok ",
120 cancelText : "Cancelar",
125 if(Ext.PagingToolbar){
126 Ext.apply(Ext.PagingToolbar.prototype, {
127 beforePageText : "Página",
128 afterPageText : "de {0}",
129 firstText : "Primera página",
130 prevText : "Página anterior",
131 nextText : "Página siguiente",
132 lastText : "Última página",
133 refreshText : "Actualizar",
134 displayMsg : "Mostrando {0} - {1} de {2}",
135 emptyMsg : 'Sin datos para mostrar'
140 Ext.form.Field.prototype.invalidText = "El valor en este campo es inválido";
143 if(Ext.form.TextField){
144 Ext.apply(Ext.form.TextField.prototype, {
145 minLengthText : "El tamaño mínimo para este campo es de {0}",
146 maxLengthText : "El tamaño máximo para este campo es de {0}",
147 blankText : "Este campo es obligatorio",
153 if(Ext.form.NumberField){
154 Ext.apply(Ext.form.NumberField.prototype, {
155 decimalSeparator : ".",
156 decimalPrecision : 2,
157 minText : "El valor mínimo para este campo es de {0}",
158 maxText : "El valor máximo para este campo es de {0}",
159 nanText : "{0} no es un número válido"
163 if(Ext.form.DateField){
164 Ext.apply(Ext.form.DateField.prototype, {
165 disabledDaysText : "Deshabilitado",
166 disabledDatesText : "Deshabilitado",
167 minText : "La fecha para este campo debe ser posterior a {0}",
168 maxText : "La fecha para este campo debe ser anterior a {0}",
169 invalidText : "{0} no es una fecha válida - debe tener el formato {1}",
171 altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
175 if(Ext.form.ComboBox){
176 Ext.apply(Ext.form.ComboBox.prototype, {
177 loadingText : "Cargando...",
178 valueNotFoundText : undefined
183 Ext.apply(Ext.form.VTypes, {
184 emailText : 'Este campo debe ser una dirección de correo electrónico con el formato "usuario@dominio.com"',
185 urlText : 'Este campo debe ser una URL con el formato "http:/'+'/www.dominio.com"',
186 alphaText : 'Este campo sólo debe contener letras y _',
187 alphanumText : 'Este campo sólo debe contener letras, números y _'
191 if(Ext.form.HtmlEditor){
192 Ext.apply(Ext.form.HtmlEditor.prototype, {
193 createLinkText : "Por favor proporcione la URL para el enlace:",
196 title: 'Negritas (Ctrl+B)',
197 text: 'Transforma el texto seleccionado en Negritas.',
198 cls: 'x-html-editor-tip'
201 title: 'Itálica (Ctrl+I)',
202 text: 'Transforma el texto seleccionado en Itálicas.',
203 cls: 'x-html-editor-tip'
206 title: 'Subrayado (Ctrl+U)',
207 text: 'Subraya el texto seleccionado.',
208 cls: 'x-html-editor-tip'
211 title: 'Aumentar la fuente',
212 text: 'Aumenta el tamaño de la fuente',
213 cls: 'x-html-editor-tip'
216 title: 'Reducir la fuente',
217 text: 'Reduce el tamaño de la fuente.',
218 cls: 'x-html-editor-tip'
221 title: 'Color de fondo',
222 text: 'Modifica el color de fondo del texto seleccionado.',
223 cls: 'x-html-editor-tip'
226 title: 'Color de la fuente',
227 text: 'Modifica el color del texto seleccionado.',
228 cls: 'x-html-editor-tip'
231 title: 'Alinear a la izquierda',
232 text: 'Alinea el texto a la izquierda.',
233 cls: 'x-html-editor-tip'
237 text: 'Centrar el texto.',
238 cls: 'x-html-editor-tip'
241 title: 'Alinear a la derecha',
242 text: 'Alinea el texto a la derecha.',
243 cls: 'x-html-editor-tip'
245 insertunorderedlist : {
246 title: 'Lista de viñetas',
247 text: 'Inicia una lista con viñetas.',
248 cls: 'x-html-editor-tip'
250 insertorderedlist : {
251 title: 'Lista numerada',
252 text: 'Inicia una lista numerada.',
253 cls: 'x-html-editor-tip'
257 text: 'Inserta un enlace de hipertexto.',
258 cls: 'x-html-editor-tip'
261 title: 'Código Fuente',
262 text: 'Pasar al modo de edición de código fuente.',
263 cls: 'x-html-editor-tip'
269 if(Ext.grid.GridView){
270 Ext.apply(Ext.grid.GridView.prototype, {
271 sortAscText : "Ordenar en forma ascendente",
272 sortDescText : "Ordenar en forma descendente",
273 columnsText : "Columnas"
277 if(Ext.grid.GroupingView){
278 Ext.apply(Ext.grid.GroupingView.prototype, {
279 emptyGroupText : '(Ninguno)',
280 groupByText : 'Agrupar por este campo',
281 showGroupsText : 'Mostrar en grupos'
285 if(Ext.grid.PropertyColumnModel){
286 Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
293 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
294 Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
295 splitTip : "Arrastre para redimensionar.",
296 collapsibleSplitTip : "Arrastre para redimensionar. Doble clic para ocultar."
300 if(Ext.form.TimeField){
301 Ext.apply(Ext.form.TimeField.prototype, {
302 minText : "La hora en este campo debe ser igual o posterior a {0}",
303 maxText : "La hora en este campo debe ser igual o anterior a {0}",
304 invalidText : "{0} no es una hora válida",
306 altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H"
310 if(Ext.form.CheckboxGroup){
311 Ext.apply(Ext.form.CheckboxGroup.prototype, {
312 blankText : "Debe seleccionar al menos un étem de este grupo"
316 if(Ext.form.RadioGroup){
317 Ext.apply(Ext.form.RadioGroup.prototype, {
318 blankText : "Debe seleccionar un étem de este grupo"