You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
735 B
22 lines
735 B
/* 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",
|
|
timeSuffix: '',
|
|
amNames: ['לפנה"צ', 'AM', 'A'],
|
|
pmNames: ['אחה"צ', 'PM', 'P'],
|
|
isRTL: true
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional["he"]);
|
|
})(jQuery);
|