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