jquery-ui-timepicker-ro.js 583 B

12345678910111213141516171819202122
  1. /* Romanian translation for the jQuery Timepicker Addon */
  2. /* Written by Romeo Adrian Cioaba */
  3. (function($) {
  4. $.timepicker.regional['ro'] = {
  5. timeOnlyTitle: 'Alegeţi o oră',
  6. timeText: 'Timp',
  7. hourText: 'Ore',
  8. minuteText: 'Minute',
  9. secondText: 'Secunde',
  10. millisecText: 'Milisecunde',
  11. microsecText: 'Microsecunde',
  12. timezoneText: 'Fus orar',
  13. currentText: 'Acum',
  14. closeText: 'Închide',
  15. timeFormat: 'HH:mm',
  16. timeSuffix: '',
  17. amNames: ['AM', 'A'],
  18. pmNames: ['PM', 'P'],
  19. isRTL: false
  20. };
  21. $.timepicker.setDefaults($.timepicker.regional['ro']);
  22. })(jQuery);