21 lines
590 B
JavaScript
21 lines
590 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",
|
|
amNames: ['לפנה"צ', 'AM', 'A'],
|
|
pmNames: ['אחה"צ', 'PM', 'P'],
|
|
ampm: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional["he"]);
|
|
})(jQuery);
|