You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
673 B
22 lines
673 B
/* Catalan translation for the jQuery Timepicker Addon */
|
|
/* Written by Sergi Faber */
|
|
(function ($) {
|
|
$.timepicker.regional['ca'] = {
|
|
timeOnlyTitle: 'Escollir una hora',
|
|
timeText: 'Hora',
|
|
hourText: 'Hores',
|
|
minuteText: 'Minuts',
|
|
secondText: 'Segons',
|
|
millisecText: 'Milisegons',
|
|
microsecText: 'Microsegons',
|
|
timezoneText: 'Fus horari',
|
|
currentText: 'Ara',
|
|
closeText: 'Tancar',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['AM', 'A'],
|
|
pmNames: ['PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['ca']);
|
|
})(jQuery);
|