calendar-sp.js 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // ** I18N
  2. // Calendar SP language
  3. // Author: Rafael Velasco <rvu_at_idecnet_dot_com>
  4. // Encoding: any
  5. // Distributed under the same terms as the calendar itself.
  6. // For translators: please use UTF-8 if possible. We strongly believe that
  7. // Unicode is the answer to a real internationalized world. Also please
  8. // include your contact information in the header, as can be seen above.
  9. // full day names
  10. Calendar._DN = new Array
  11. ("Domingo",
  12. "Lunes",
  13. "Martes",
  14. "Miercoles",
  15. "Jueves",
  16. "Viernes",
  17. "Sabado",
  18. "Domingo");
  19. Calendar._SDN = new Array
  20. ("Dom",
  21. "Lun",
  22. "Mar",
  23. "Mie",
  24. "Jue",
  25. "Vie",
  26. "Sab",
  27. "Dom");
  28. // full month names
  29. Calendar._MN = new Array
  30. ("Enero",
  31. "Febrero",
  32. "Marzo",
  33. "Abril",
  34. "Mayo",
  35. "Junio",
  36. "Julio",
  37. "Agosto",
  38. "Septiembre",
  39. "Octubre",
  40. "Noviembre",
  41. "Diciembre");
  42. // short month names
  43. Calendar._SMN = new Array
  44. ("Ene",
  45. "Feb",
  46. "Mar",
  47. "Abr",
  48. "May",
  49. "Jun",
  50. "Jul",
  51. "Ago",
  52. "Sep",
  53. "Oct",
  54. "Nov",
  55. "Dic");
  56. // tooltips
  57. Calendar._TT = {};
  58. Calendar._TT["INFO"] = "Información del Calendario";
  59. Calendar._TT["ABOUT"] =
  60. "DHTML Date/Time Selector\n" +
  61. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  62. "Nuevas versiones en: http://www.dynarch.com/projects/calendar/\n" +
  63. "Distribuida bajo licencia GNU LGPL. Para detalles vea http://gnu.org/licenses/lgpl.html ." +
  64. "\n\n" +
  65. "Selección de Fechas:\n" +
  66. "- Use \xab, \xbb para seleccionar el año\n" +
  67. "- Use " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para seleccionar el mes\n" +
  68. "- Mantenga presionado el botón del ratón en cualquiera de las opciones superiores para un acceso rapido .";
  69. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  70. "Selección del Reloj:\n" +
  71. "- Seleccione la hora para cambiar el reloj\n" +
  72. "- o presione Shift-click para disminuirlo\n" +
  73. "- o presione click y arrastre del ratón para una selección rapida.";
  74. Calendar._TT["PREV_YEAR"] = "Año anterior (Presione para menu)";
  75. Calendar._TT["PREV_MONTH"] = "Mes Anterior (Presione para menu)";
  76. Calendar._TT["GO_TODAY"] = "Ir a Hoy";
  77. Calendar._TT["NEXT_MONTH"] = "Mes Siguiente (Presione para menu)";
  78. Calendar._TT["NEXT_YEAR"] = "Año Siguiente (Presione para menu)";
  79. Calendar._TT["SEL_DATE"] = "Seleccione fecha";
  80. Calendar._TT["DRAG_TO_MOVE"] = "Arrastre y mueva";
  81. Calendar._TT["PART_TODAY"] = " (Hoy)";
  82. // the following is to inform that "%s" is to be the first day of week
  83. // %s will be replaced with the day name.
  84. Calendar._TT["DAY_FIRST"] = "Mostrar %s primero";
  85. // This may be locale-dependent. It specifies the week-end days, as an array
  86. // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
  87. // means Monday, etc.
  88. Calendar._TT["WEEKEND"] = "0,6";
  89. Calendar._TT["CLOSE"] = "Cerrar";
  90. Calendar._TT["TODAY"] = "Hoy";
  91. Calendar._TT["TIME_PART"] = "(Shift-)Click o arrastra para cambar el valor";
  92. // date formats
  93. Calendar._TT["DEF_DATE_FORMAT"] = "%dd-%mm-%yy";
  94. Calendar._TT["TT_DATE_FORMAT"] = "%A, %e de %B de %Y";
  95. Calendar._TT["WK"] = "Sm";
  96. Calendar._TT["TIME"] = "Hora:";