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-hu.js 1.0KB

12345678910111213141516171819202122232425
  1. /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
  2. /* Hungarian initialisation for the jQuery UI date picker plugin. */
  3. /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */
  4. jQuery(function($){
  5. $.datepicker.regional['hu'] = {
  6. closeText: 'bezár',
  7. prevText: 'vissza',
  8. nextText: 'előre',
  9. currentText: 'ma',
  10. monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
  11. 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
  12. monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
  13. 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
  14. dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
  15. dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
  16. dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
  17. weekHeader: 'Hét',
  18. dateFormat: 'yy.mm.dd.',
  19. firstDay: 1,
  20. isRTL: false,
  21. showMonthAfterYear: true,
  22. yearSuffix: ''};
  23. $.datepicker.setDefaults($.datepicker.regional['hu']);
  24. });
  25. /* @license-end */