jquery-ui-timepicker-he.js 590 B

1234567891011121314151617181920
  1. /* Hebrew translation for the jQuery Timepicker Addon */
  2. /* Written by Lior Lapid */
  3. (function($) {
  4. $.timepicker.regional["he"] = {
  5. timeOnlyTitle: "בחירת זמן",
  6. timeText: "שעה",
  7. hourText: "שעות",
  8. minuteText: "דקות",
  9. secondText: "שניות",
  10. millisecText: "אלפית השנייה",
  11. timezoneText: "אזור זמן",
  12. currentText: "עכשיו",
  13. closeText:"סגור",
  14. timeFormat: "hh:mm tt",
  15. amNames: ['לפנה"צ', 'AM', 'A'],
  16. pmNames: ['אחה"צ', 'PM', 'P'],
  17. ampm: false
  18. };
  19. $.timepicker.setDefaults($.timepicker.regional["he"]);
  20. })(jQuery);