Bug 11529: (follow-up) Remove manage_keywords2koha_mappings permission.
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / timepicker.inc
1 <script>
2     /* Localization of the timepicker plugin */
3     jQuery(function($){
4         $.timepicker.regional[''] = {
5             currentText: _("Now"),
6             closeText: _("Done"),
7             amNames: [_("AM"), _("A")],
8             pmNames: [_("PM"), _("P")],
9             timeSuffix: "",
10             timeOnlyTitle: _("Choose time"),
11             timeText: _("Time"),
12             hourText: _("Hour"),
13             minuteText: _("Minute"),
14             secondText: _("Second"),
15             millisecText: _("Millisecond"),
16             microsecText: _("Microsecond"),
17             timezoneText: _("Time zone"),
18             [% IF ( bidi ) %] isRTL: true [% ELSE %] isRTL: false [% END %]
19         };
20         $.timepicker.setDefaults($.timepicker.regional['']);
21     });
22 </script>