1234567891011121314151617181920 |
- /* 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);
|