2011-06-07 15:50:32 +02:00
|
|
|
/* French translation for the jQuery Timepicker Addon */
|
2011-05-24 19:10:51 +02:00
|
|
|
/* Written by Thomas Lété */
|
2011-06-07 00:41:59 +02:00
|
|
|
(function($) {
|
|
|
|
$.timepicker.regional['fr'] = {
|
|
|
|
timeOnlyTitle: 'Choisir une heure',
|
|
|
|
timeText: 'Heure',
|
|
|
|
hourText: 'Heures',
|
|
|
|
minuteText: 'Minutes',
|
|
|
|
secondText: 'Secondes',
|
2011-07-24 16:07:00 +02:00
|
|
|
millisecText: 'Millisecondes',
|
2011-06-07 00:41:59 +02:00
|
|
|
timezoneText: 'Fuseau horaire',
|
|
|
|
currentText: 'Maintenant',
|
|
|
|
closeText: 'Terminé',
|
2011-06-07 15:50:32 +02:00
|
|
|
timeFormat: 'hh:mm',
|
2011-06-07 00:41:59 +02:00
|
|
|
ampm: false
|
|
|
|
};
|
|
|
|
$.timepicker.setDefaults($.timepicker.regional['fr']);
|
|
|
|
})(jQuery);
|