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-fa.js 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
  2. /* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
  3. /* Javad Mowlanezhad -- jmowla@gmail.com */
  4. /* Jalali calendar should supported soon! (Its implemented but I have to test it) */
  5. jQuery(function($) {
  6. $.datepicker.regional['fa'] = {
  7. closeText: 'بستن',
  8. prevText: '<قبلی',
  9. nextText: 'بعدی>',
  10. currentText: 'امروز',
  11. monthNames: [
  12. 'فروردين',
  13. 'ارديبهشت',
  14. 'خرداد',
  15. 'تير',
  16. 'مرداد',
  17. 'شهريور',
  18. 'مهر',
  19. 'آبان',
  20. 'آذر',
  21. 'دی',
  22. 'بهمن',
  23. 'اسفند'
  24. ],
  25. monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
  26. dayNames: [
  27. 'يکشنبه',
  28. 'دوشنبه',
  29. 'سه‌شنبه',
  30. 'چهارشنبه',
  31. 'پنجشنبه',
  32. 'جمعه',
  33. 'شنبه'
  34. ],
  35. dayNamesShort: [
  36. 'ی',
  37. 'د',
  38. 'س',
  39. 'چ',
  40. 'پ',
  41. 'ج',
  42. 'ش'
  43. ],
  44. dayNamesMin: [
  45. 'ی',
  46. 'د',
  47. 'س',
  48. 'چ',
  49. 'پ',
  50. 'ج',
  51. 'ش'
  52. ],
  53. weekHeader: 'هف',
  54. dateFormat: 'yy/mm/dd',
  55. firstDay: 6,
  56. isRTL: true,
  57. showMonthAfterYear: false,
  58. yearSuffix: ''};
  59. $.datepicker.setDefaults($.datepicker.regional['fa']);
  60. });
  61. /* @license-end */