You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calendar-es.js 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // ** I18N
  2. // Calendar ES (spanish) language
  3. // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
  4. // Updater: Servilio Afre Puentes <servilios@yahoo.com>
  5. // Updated: 2004-06-03
  6. // Encoding: utf-8
  7. // Distributed under the same terms as the calendar itself.
  8. // For translators: please use UTF-8 if possible. We strongly believe that
  9. // Unicode is the answer to a real internationalized world. Also please
  10. // include your contact information in the header, as can be seen above.
  11. // full day names
  12. Calendar._DN = new Array
  13. ("Domingo",
  14. "Lunes",
  15. "Martes",
  16. "Miércoles",
  17. "Jueves",
  18. "Viernes",
  19. "Sábado",
  20. "Domingo");
  21. // Please note that the following array of short day names (and the same goes
  22. // for short month names, _SMN) isn't absolutely necessary. We give it here
  23. // for exemplification on how one can customize the short day names, but if
  24. // they are simply the first N letters of the full name you can simply say:
  25. //
  26. // Calendar._SDN_len = N; // short day name length
  27. // Calendar._SMN_len = N; // short month name length
  28. //
  29. // If N = 3 then this is not needed either since we assume a value of 3 if not
  30. // present, to be compatible with translation files that were written before
  31. // this feature.
  32. // short day names
  33. Calendar._SDN = new Array
  34. ("Dom",
  35. "Lun",
  36. "Mar",
  37. "Mié",
  38. "Jue",
  39. "Vie",
  40. "Sáb",
  41. "Dom");
  42. // First day of the week. "0" means display Sunday first, "1" means display
  43. // Monday first, etc.
  44. Calendar._FD = 1;
  45. // full month names
  46. Calendar._MN = new Array
  47. ("Enero",
  48. "Febrero",
  49. "Marzo",
  50. "Abril",
  51. "Mayo",
  52. "Junio",
  53. "Julio",
  54. "Agosto",
  55. "Septiembre",
  56. "Octubre",
  57. "Noviembre",
  58. "Diciembre");
  59. // short month names
  60. Calendar._SMN = new Array
  61. ("Ene",
  62. "Feb",
  63. "Mar",
  64. "Abr",
  65. "May",
  66. "Jun",
  67. "Jul",
  68. "Ago",
  69. "Sep",
  70. "Oct",
  71. "Nov",
  72. "Dic");
  73. // tooltips
  74. Calendar._TT = {};
  75. Calendar._TT["INFO"] = "Acerca del calendario";
  76. Calendar._TT["ABOUT"] =
  77. "Selector DHTML de Fecha/Hora\n" +
  78. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  79. "Para conseguir la última versión visite: http://www.dynarch.com/projects/calendar/\n" +
  80. "Distribuido bajo licencia GNU LGPL. Visite http://gnu.org/licenses/lgpl.html para más detalles." +
  81. "\n\n" +
  82. "Selección de fecha:\n" +
  83. "- Use los botones \xab, \xbb para seleccionar el año\n" +
  84. "- Use los botones " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para seleccionar el mes\n" +
  85. "- Mantenga pulsado el ratón en cualquiera de estos botones para una selección rápida.";
  86. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  87. "Selección de hora:\n" +
  88. "- Pulse en cualquiera de las partes de la hora para incrementarla\n" +
  89. "- o pulse las mayúsculas mientras hace clic para decrementarla\n" +
  90. "- o haga clic y arrastre el ratón para una selección más rápida.";
  91. Calendar._TT["PREV_YEAR"] = "Año anterior (mantener para menú)";
  92. Calendar._TT["PREV_MONTH"] = "Mes anterior (mantener para menú)";
  93. Calendar._TT["GO_TODAY"] = "Ir a hoy";
  94. Calendar._TT["NEXT_MONTH"] = "Mes siguiente (mantener para menú)";
  95. Calendar._TT["NEXT_YEAR"] = "Año siguiente (mantener para menú)";
  96. Calendar._TT["SEL_DATE"] = "Seleccionar fecha";
  97. Calendar._TT["DRAG_TO_MOVE"] = "Arrastrar para mover";
  98. Calendar._TT["PART_TODAY"] = " (hoy)";
  99. // the following is to inform that "%s" is to be the first day of week
  100. // %s will be replaced with the day name.
  101. Calendar._TT["DAY_FIRST"] = "Hacer %s primer día de la semana";
  102. // This may be locale-dependent. It specifies the week-end days, as an array
  103. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  104. // means Monday, etc.
  105. Calendar._TT["WEEKEND"] = "0,6";
  106. Calendar._TT["CLOSE"] = "Cerrar";
  107. Calendar._TT["TODAY"] = "Hoy";
  108. Calendar._TT["TIME_PART"] = "(Mayúscula-)Clic o arrastre para cambiar valor";
  109. // date formats
  110. Calendar._TT["DEF_DATE_FORMAT"] = "%d/%m/%Y";
  111. Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";
  112. Calendar._TT["WK"] = "sem";
  113. Calendar._TT["TIME"] = "Hora:";