22 lines
565 B
JavaScript
22 lines
565 B
JavaScript
|
/* Romanian translation for the jQuery Timepicker Addon */
|
||
|
/* Written by Romeo Adrian Cioaba */
|
||
|
(function($) {
|
||
|
$.timepicker.regional['ro'] = {
|
||
|
timeOnlyTitle: 'Alegeţi o oră',
|
||
|
timeText: 'Timp',
|
||
|
hourText: 'Ore',
|
||
|
minuteText: 'Minute',
|
||
|
secondText: 'Secunde',
|
||
|
millisecText: 'Milisecunde',
|
||
|
microsecText: 'Microsecunde',
|
||
|
timezoneText: 'Fus orar',
|
||
|
currentText: 'Acum',
|
||
|
closeText: 'Închide',
|
||
|
timeFormat: 'HH:mm',
|
||
|
amNames: ['AM', 'A'],
|
||
|
pmNames: ['PM', 'P'],
|
||
|
isRTL: false
|
||
|
};
|
||
|
$.timepicker.setDefaults($.timepicker.regional['ro']);
|
||
|
})(jQuery);
|