jquery-ui-timepicker-he.js 635 B

12345678910111213141516171819202122
  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. microsecText: "מיקרו",
  12. timezoneText: "אזור זמן",
  13. currentText: "עכשיו",
  14. closeText:"סגור",
  15. timeFormat: "HH:mm",
  16. timeSuffix: '',
  17. amNames: ['לפנה"צ', 'AM', 'A'],
  18. pmNames: ['אחה"צ', 'PM', 'P'],
  19. isRTL: true
  20. };
  21. $.timepicker.setDefaults($.timepicker.regional["he"]);
  22. })(jQuery);