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.8KB

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