ext-lang-es.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:9k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /*
  8.  * Spanish/Latin American Translation by genius551v 04-08-2007
  9.  * Revised by efege, 2007-04-15.
  10.  * Revised by Rafaga2k 10-01-2007 (mm/dd/yyyy)
  11.  * Revised by FeDe 12-13-2007 (mm/dd/yyyy)
  12.  * Synchronized with 2.2 version of ext-lang-en.js (provided by Condor 8 aug 2008) 
  13.  *     by halkon_polako 14-aug-2008
  14.  */
  15. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Cargando...</div>';
  16. if(Ext.DataView){
  17.   Ext.DataView.prototype.emptyText = "";
  18. }
  19. if(Ext.grid.GridPanel){
  20.   Ext.grid.GridPanel.prototype.ddText = "{0} fila(s) seleccionada(s)";
  21. }
  22. if(Ext.LoadMask){
  23.   Ext.LoadMask.prototype.msg = "Cargando...";
  24. }
  25. Date.monthNames = [
  26.   "Enero",
  27.   "Febrero",
  28.   "Marzo",
  29.   "Abril",
  30.   "Mayo",
  31.   "Junio",
  32.   "Julio",
  33.   "Agosto",
  34.   "Septiembre",
  35.   "Octubre",
  36.   "Noviembre",
  37.   "Diciembre"
  38. ];
  39. Date.getShortMonthName = function(month) {
  40.   return Date.monthNames[month].substring(0, 3);
  41. };
  42. Date.monthNumbers = {
  43.   Ene : 0,
  44.   Feb : 1,
  45.   Mar : 2,
  46.   Abr : 3,
  47.   May : 4,
  48.   Jun : 5,
  49.   Jul : 6,
  50.   Ago : 7,
  51.   Sep : 8,
  52.   Oct : 9,
  53.   Nov : 10,
  54.   Dic : 11
  55. };
  56. Date.getMonthNumber = function(name) {
  57.   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
  58. };
  59. Date.dayNames = [
  60.   "Domingo",
  61.   "Lunes",
  62.   "Martes",
  63.   "Mi&#233;rcoles",
  64.   "Jueves",
  65.   "Viernes",
  66.   "S&#225;bado"
  67. ];
  68. Date.getShortDayName = function(day) {
  69.   if (day==3) return "Mié";
  70.   if (day==6) return "Sáb";
  71.   return Date.dayNames[day].substring(0, 3);
  72. };
  73. Date.parseCodes.S.s = "(?:st|nd|rd|th)";
  74. if(Ext.MessageBox){
  75.   Ext.MessageBox.buttonText = {
  76.     ok     : "Aceptar",
  77.     cancel : "Cancelar",
  78.     yes    : "S&#237;",
  79.     no     : "No"
  80.   };
  81. }
  82. if(Ext.util.Format){
  83.   Ext.util.Format.date = function(v, format){
  84.     if(!v) return "";
  85.     if(!(v instanceof Date)) v = new Date(Date.parse(v));
  86.     return v.dateFormat(format || "d/m/Y");
  87.   };
  88. }
  89. if(Ext.DatePicker){
  90.   Ext.apply(Ext.DatePicker.prototype, {
  91.     todayText         : "Hoy",
  92.     minText           : "Esta fecha es anterior a la fecha m&#237;nima",
  93.     maxText           : "Esta fecha es posterior a la fecha m&#225;xima",
  94.     disabledDaysText  : "",
  95.     disabledDatesText : "",
  96.     monthNames       : Date.monthNames,
  97.     dayNames   : Date.dayNames,
  98.     nextText          : 'Mes Siguiente (Control+Right)',
  99.     prevText          : 'Mes Anterior (Control+Left)',
  100.     monthYearText     : 'Seleccione un mes (Control+Up/Down para desplazar el a&#241;o)',
  101.     todayTip          : "{0} (Barra espaciadora)",
  102.     format            : "d/m/Y",
  103.     okText            : "&#160;Ok&#160;",
  104.     cancelText        : "Cancelar",
  105.     startDay          : 1
  106.   });
  107. }
  108. if(Ext.PagingToolbar){
  109.   Ext.apply(Ext.PagingToolbar.prototype, {
  110.     beforePageText : "P&#225;gina",
  111.     afterPageText  : "de {0}",
  112.     firstText      : "Primera p&#225;gina",
  113.     prevText       : "P&#225;gina anterior",
  114.     nextText       : "P&#225;gina siguiente",
  115.     lastText       : "Última p&#225;gina",
  116.     refreshText    : "Actualizar",
  117.     displayMsg     : "Mostrando {0} - {1} de {2}",
  118.     emptyMsg       : 'Sin datos para mostrar'
  119.   });
  120. }
  121. if(Ext.form.Field){
  122.   Ext.form.Field.prototype.invalidText = "El valor en este campo es inv&#225;lido";
  123. }
  124. if(Ext.form.TextField){
  125.   Ext.apply(Ext.form.TextField.prototype, {
  126.     minLengthText : "El tama&#241;o m&#237;nimo para este campo es de {0}",
  127.     maxLengthText : "El tama&#241;o m&#225;ximo para este campo es de {0}",
  128.     blankText     : "Este campo es obligatorio",
  129.     regexText     : "",
  130.     emptyText     : null
  131.   });
  132. }
  133. if(Ext.form.NumberField){
  134.   Ext.apply(Ext.form.NumberField.prototype, {
  135.     decimalSeparator : ".",
  136.     decimalPrecision : 2,
  137.     minText : "El valor m&#237;nimo para este campo es de {0}",
  138.     maxText : "El valor m&#225;ximo para este campo es de {0}",
  139.     nanText : "{0} no es un n&#250;mero v&#225;lido"
  140.   });
  141. }
  142. if(Ext.form.DateField){
  143.   Ext.apply(Ext.form.DateField.prototype, {
  144.     disabledDaysText  : "Deshabilitado",
  145.     disabledDatesText : "Deshabilitado",
  146.     minText           : "La fecha para este campo debe ser posterior a {0}",
  147.     maxText           : "La fecha para este campo debe ser anterior a {0}",
  148.     invalidText       : "{0} no es una fecha v&#225;lida - debe tener el formato {1}",
  149.     format            : "d/m/Y",
  150.     altFormats        : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
  151.   });
  152. }
  153. if(Ext.form.ComboBox){
  154.   Ext.apply(Ext.form.ComboBox.prototype, {
  155.     loadingText       : "Cargando...",
  156.     valueNotFoundText : undefined
  157.   });
  158. }
  159. if(Ext.form.VTypes){
  160.   Ext.apply(Ext.form.VTypes, {
  161.     emailText    : 'Este campo debe ser una direcci&#243;n de correo electr&#243;nico con el formato "usuario@dominio.com"',
  162.     urlText      : 'Este campo debe ser una URL con el formato "http:/'+'/www.dominio.com"',
  163.     alphaText    : 'Este campo s&#243;lo debe contener letras y _',
  164.     alphanumText : 'Este campo s&#243;lo debe contener letras, n&#250;meros y _'
  165.   });
  166. }
  167. if(Ext.form.HtmlEditor){
  168.   Ext.apply(Ext.form.HtmlEditor.prototype, {
  169.     createLinkText : "Por favor proporcione la URL para el enlace:",
  170.     buttonTips : {
  171.       bold : {
  172.         title: 'Negritas (Ctrl+B)',
  173.     text: 'Transforma el texto seleccionado en Negritas.',
  174.         cls: 'x-html-editor-tip'
  175.       },
  176.       italic : {
  177.         title: 'It&#225;lica (Ctrl+I)',
  178.         text: 'Transforma el texto seleccionado en It&#225;licas.',
  179.         cls: 'x-html-editor-tip'
  180.       },
  181.       underline : {
  182.         title: 'Subrayado (Ctrl+U)',
  183.         text: 'Subraya el texto seleccionado.',
  184.         cls: 'x-html-editor-tip'
  185.       },
  186.       increasefontsize : {
  187.         title: 'Aumentar la fuente',
  188.         text: 'Aumenta el tama&#241;o de la fuente',
  189.         cls: 'x-html-editor-tip'
  190.       },
  191.       decreasefontsize : {
  192.         title: 'Reducir la fuente',
  193.         text: 'Reduce el tama&#241;o de la fuente.',
  194.         cls: 'x-html-editor-tip'
  195.       },
  196.       backcolor : {
  197.         title: 'Color de fondo',
  198.         text: 'Modifica el color de fondo del texto seleccionado.',
  199.         cls: 'x-html-editor-tip'
  200.       },
  201.       forecolor : {
  202.         title: 'Color de la fuente',
  203.         text: 'Modifica el color del texto seleccionado.',
  204.         cls: 'x-html-editor-tip'
  205.       },
  206.       justifyleft : {
  207.         title: 'Alinear a la izquierda',
  208.         text: 'Alinea el texto a la izquierda.',
  209.         cls: 'x-html-editor-tip'
  210.       },
  211.       justifycenter : {
  212.         title: 'Centrar',
  213.         text: 'Centrar el texto.',
  214.         cls: 'x-html-editor-tip'
  215.       },
  216.       justifyright : {
  217.         title: 'Alinear a la derecha',
  218.         text: 'Alinea el texto a la derecha.',
  219.         cls: 'x-html-editor-tip'
  220.       },
  221.       insertunorderedlist : {
  222.         title: 'Lista de vi&#241;etas',
  223.         text: 'Inicia una lista con vi&#241;etas.',
  224.         cls: 'x-html-editor-tip'
  225.       },
  226.       insertorderedlist : {
  227.         title: 'Lista numerada',
  228.         text: 'Inicia una lista numerada.',
  229.         cls: 'x-html-editor-tip'
  230.       },
  231.       createlink : {
  232.         title: 'Enlace',
  233.         text: 'Inserta un enlace de hipertexto.',
  234.         cls: 'x-html-editor-tip'
  235.       },
  236.       sourceedit : {
  237.         title: 'C&#243;digo Fuente',
  238.         text: 'Pasar al modo de edici&#243;n de c&#243;digo fuente.',
  239.         cls: 'x-html-editor-tip'
  240.       }
  241.     }
  242.   });
  243. }
  244. if(Ext.grid.GridView){
  245.   Ext.apply(Ext.grid.GridView.prototype, {
  246.     sortAscText  : "Ordenar en forma ascendente",
  247.     sortDescText : "Ordenar en forma descendente",
  248.     columnsText  : "Columnas"
  249.   });
  250. }
  251. if(Ext.grid.GroupingView){
  252.   Ext.apply(Ext.grid.GroupingView.prototype, {
  253.     emptyGroupText : '(Ninguno)',
  254.     groupByText    : 'Agrupar por este campo',
  255.     showGroupsText : 'Mostrar en grupos'
  256.   });
  257. }
  258. if(Ext.grid.PropertyColumnModel){
  259.   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  260.     nameText   : "Nombre",
  261.     valueText  : "Valor",
  262.     dateFormat : "j/m/Y"
  263.   });
  264. }
  265. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  266.   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  267.     splitTip            : "Arrastre para redimensionar.",
  268.     collapsibleSplitTip : "Arrastre para redimensionar. Doble clic para ocultar."
  269.   });
  270. }
  271. if(Ext.form.TimeField){
  272.   Ext.apply(Ext.form.TimeField.prototype, {
  273.     minText : "La hora en este campo debe ser igual o posterior a {0}",
  274.     maxText : "La hora en este campo debe ser igual o anterior a {0}",
  275.     invalidText : "{0} no es una hora v&#225;lida",
  276.     format : "g:i A",
  277.     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"
  278.   });
  279. }
  280. if(Ext.form.CheckboxGroup){
  281.   Ext.apply(Ext.form.CheckboxGroup.prototype, {
  282.     blankText : "Debe seleccionar al menos un &#233;tem de este grupo"
  283.   });
  284. }
  285. if(Ext.form.RadioGroup){
  286.   Ext.apply(Ext.form.RadioGroup.prototype, {
  287.     blankText : "Debe seleccionar un &#233;tem de este grupo"
  288.   });
  289. }