2011-07-28 23:58:52 +02:00
|
|
|
/* 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',
|
|
|
|
timezoneText: 'Fus orar',
|
|
|
|
currentText: 'Acum',
|
|
|
|
closeText: 'Închide',
|
|
|
|
timeFormat: 'hh:mm',
|
2011-08-11 07:43:48 +02:00
|
|
|
amNames: ['AM', 'A'],
|
|
|
|
pmNames: ['PM', 'P'],
|
2011-07-28 23:58:52 +02:00
|
|
|
ampm: false
|
|
|
|
};
|
|
|
|
$.timepicker.setDefaults($.timepicker.regional['ro']);
|
|
|
|
})(jQuery);
|