Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

fa.js 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //! moment.js locale configuration
  2. //! locale : Persian [fa]
  3. //! author : Ebrahim Byagowi : https://github.com/ebraminio
  4. import moment from '../moment';
  5. var symbolMap = {
  6. 1: '۱',
  7. 2: '۲',
  8. 3: '۳',
  9. 4: '۴',
  10. 5: '۵',
  11. 6: '۶',
  12. 7: '۷',
  13. 8: '۸',
  14. 9: '۹',
  15. 0: '۰',
  16. },
  17. numberMap = {
  18. '۱': '1',
  19. '۲': '2',
  20. '۳': '3',
  21. '۴': '4',
  22. '۵': '5',
  23. '۶': '6',
  24. '۷': '7',
  25. '۸': '8',
  26. '۹': '9',
  27. '۰': '0',
  28. };
  29. export default moment.defineLocale('fa', {
  30. months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
  31. '_'
  32. ),
  33. monthsShort: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
  34. '_'
  35. ),
  36. weekdays: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
  37. '_'
  38. ),
  39. weekdaysShort: 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
  40. '_'
  41. ),
  42. weekdaysMin: 'ی_د_س_چ_پ_ج_ش'.split('_'),
  43. weekdaysParseExact: true,
  44. longDateFormat: {
  45. LT: 'HH:mm',
  46. LTS: 'HH:mm:ss',
  47. L: 'DD/MM/YYYY',
  48. LL: 'D MMMM YYYY',
  49. LLL: 'D MMMM YYYY HH:mm',
  50. LLLL: 'dddd, D MMMM YYYY HH:mm',
  51. },
  52. meridiemParse: /قبل از ظهر|بعد از ظهر/,
  53. isPM: function (input) {
  54. return /بعد از ظهر/.test(input);
  55. },
  56. meridiem: function (hour, minute, isLower) {
  57. if (hour < 12) {
  58. return 'قبل از ظهر';
  59. } else {
  60. return 'بعد از ظهر';
  61. }
  62. },
  63. calendar: {
  64. sameDay: '[امروز ساعت] LT',
  65. nextDay: '[فردا ساعت] LT',
  66. nextWeek: 'dddd [ساعت] LT',
  67. lastDay: '[دیروز ساعت] LT',
  68. lastWeek: 'dddd [پیش] [ساعت] LT',
  69. sameElse: 'L',
  70. },
  71. relativeTime: {
  72. future: 'در %s',
  73. past: '%s پیش',
  74. s: 'چند ثانیه',
  75. ss: '%d ثانیه',
  76. m: 'یک دقیقه',
  77. mm: '%d دقیقه',
  78. h: 'یک ساعت',
  79. hh: '%d ساعت',
  80. d: 'یک روز',
  81. dd: '%d روز',
  82. M: 'یک ماه',
  83. MM: '%d ماه',
  84. y: 'یک سال',
  85. yy: '%d سال',
  86. },
  87. preparse: function (string) {
  88. return string
  89. .replace(/[۰-۹]/g, function (match) {
  90. return numberMap[match];
  91. })
  92. .replace(/،/g, ',');
  93. },
  94. postformat: function (string) {
  95. return string
  96. .replace(/\d/g, function (match) {
  97. return symbolMap[match];
  98. })
  99. .replace(/,/g, '،');
  100. },
  101. dayOfMonthOrdinalParse: /\d{1,2}م/,
  102. ordinal: '%dم',
  103. week: {
  104. dow: 6, // Saturday is the first day of the week.
  105. doy: 12, // The week that contains Jan 12th is the first week of the year.
  106. },
  107. });