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.

jquery.ui.datepicker-ro.js 1.1KB

12345678910111213141516171819202122232425262728
  1. /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
  2. /* Romanian initialisation for the jQuery UI date picker plugin.
  3. *
  4. * Written by Edmond L. (ll_edmond@walla.com)
  5. * and Ionut G. Stan (ionut.g.stan@gmail.com)
  6. */
  7. jQuery(function($){
  8. $.datepicker.regional['ro'] = {
  9. closeText: 'Închide',
  10. prevText: '« Luna precedentă',
  11. nextText: 'Luna următoare »',
  12. currentText: 'Azi',
  13. monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie',
  14. 'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'],
  15. monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun',
  16. 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
  17. dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'],
  18. dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'],
  19. dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'],
  20. weekHeader: 'Săpt',
  21. dateFormat: 'dd.mm.yy',
  22. firstDay: 1,
  23. isRTL: false,
  24. showMonthAfterYear: false,
  25. yearSuffix: ''};
  26. $.datepicker.setDefaults($.datepicker.regional['ro']);
  27. });
  28. /* @license-end */