calendar-sp.js
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

PHP

  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髇 del Calendario";
  59. Calendar._TT["ABOUT"] =
  60. "DHTML Date/Time Selectorn" +
  61. "(c) dynarch.com 2002-2005 / Author: Mihai Bazonn" + // 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. "nn" +
  65. "Selecci髇 de Fechas:n" +
  66. "- Use  xab, xbb para seleccionar el a駉n" +
  67. "- Use " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " para seleccionar el mesn" +
  68. "- Mantenga presionado el bot髇 del rat髇 en cualquiera de las opciones superiores para un acceso rapido .";
  69. Calendar._TT["ABOUT_TIME"] = "nn" +
  70. "Selecci髇 del Reloj:n" +
  71. "- Seleccione la hora para cambiar el relojn" +
  72. "- o presione  Shift-click para disminuirlon" +
  73. "- o presione click y arrastre del rat髇 para una selecci髇 rapida.";
  74. Calendar._TT["PREV_YEAR"] = "A駉 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駉 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:";