19 lines
514 B
JavaScript
19 lines
514 B
JavaScript
/* Hebrew translation for the jQuery Timepicker Addon */
|
|
/* Written by Lior Lapid */
|
|
(function($) {
|
|
$.timepicker.regional["he"] = {
|
|
timeOnlyTitle: "בחרית זמן",
|
|
timeText: "שעה",
|
|
hourText: "שעות",
|
|
minuteText: "דקות",
|
|
secondText: "שניות",
|
|
millisecText: "אלפית השנייה",
|
|
timezoneText: "אזור זמן",
|
|
currentText: "עכשיו",
|
|
closeText:"סגור",
|
|
timeFormat: "hh:mm tt",
|
|
ampm: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional["he"]);
|
|
})(jQuery);
|