22 lines
617 B
JavaScript
Executable File
22 lines
617 B
JavaScript
Executable File
/* Hebrew translation for the jQuery Timepicker Addon */
|
|
/* Written by Lior Lapid */
|
|
(function($) {
|
|
$.timepicker.regional["he"] = {
|
|
timeOnlyTitle: "בחירת זמן",
|
|
timeText: "שעה",
|
|
hourText: "שעות",
|
|
minuteText: "דקות",
|
|
secondText: "שניות",
|
|
millisecText: "אלפית השנייה",
|
|
microsecText: "מיקרו",
|
|
timezoneText: "אזור זמן",
|
|
currentText: "עכשיו",
|
|
closeText:"סגור",
|
|
timeFormat: "HH:mm",
|
|
amNames: ['לפנה"צ', 'AM', 'A'],
|
|
pmNames: ['אחה"צ', 'PM', 'P'],
|
|
isRTL: true
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional["he"]);
|
|
})(jQuery);
|