Koha/koha-tmpl/intranet-tmpl/prog/en/includes/timepicker.inc
Owen Leonard 76daec8bff Bug 11618: ensure jQuery timepicker is picked up by the i18n toolchain
We handle internationalization of the jQuery datepicker by adding
language configuration strings to calendar.inc which can be processed by
the translation script. This patch adds a similar configuration file for
the timepicker.

This patch also upgrades the timepicker plugin to the latest version,
minified, and places it outside the prog template directory for global
use. The path in templates has been updated accordingly.

CSS has been added to more completely hide the controls for seconds,
milliseconds, and microseconds.

To test, apply the patch and clear your cache so that the browser
loads the new version of the jQuery plugin. Confirm that date and time
selection still function correctly on the circulation page, the patron
detail page, and the offline circulation page (circ/offline.pl).

Test at least one datepicker instance which does not use the
timepicker.

Run translate update on a po file and confirm that the timepicker
strings are now present.

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Works as expected, no regression found.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
2014-02-18 21:19:16 +00:00

26 lines
908 B
SourcePawn

<script type="text/javascript">
//<![CDATA[
/* Localization of the timepicker plugin */
jQuery(function($){
$.timepicker.regional[''] = {
currentText: _("Now"),
closeText: _("Done"),
amNames: [_("AM"), _("A")],
pmNames: [_("PM"), _("P")],
timeSuffix: "",
timeOnlyTitle: _("Choose time"),
timeText: _("Time"),
hourText: _("Hour"),
minuteText: _("Minute"),
secondText: _("Second"),
millisecText: _("Millisecond"),
microsecText: _("Microsecond"),
timezoneText: _("Time zone"),
[% IF ( bidi ) %] isRTL: true [% ELSE %] isRTL: false [% END %]
};
$.timepicker.setDefaults($.timepicker.regional['']);
});
//]]>
</script>