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