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.

22 lines
732 B

2 years ago
  1. /* Spanish translation for the jQuery Timepicker Addon */
  2. /* Written by Ianaré Sévi */
  3. /* Modified by Carlos Martínez */
  4. (function ($) {
  5. $.timepicker.regional['es'] = {
  6. timeOnlyTitle: 'Elegir una hora',
  7. timeText: 'Hora',
  8. hourText: 'Horas',
  9. minuteText: 'Minutos',
  10. secondText: 'Segundos',
  11. millisecText: 'Milisegundos',
  12. microsecText: 'Microsegundos',
  13. timezoneText: 'Uso horario',
  14. currentText: 'Hoy',
  15. closeText: 'Cerrar',
  16. timeFormat: 'HH:mm',
  17. timeSuffix: '',
  18. amNames: ['a.m.', 'AM', 'A'],
  19. pmNames: ['p.m.', 'PM', 'P'],
  20. isRTL: false
  21. };
  22. $.timepicker.setDefaults($.timepicker.regional['es']);
  23. })(jQuery);