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.

az.js 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //! moment.js locale configuration
  2. //! locale : Azerbaijani [az]
  3. //! author : topchiyev : https://github.com/topchiyev
  4. import moment from '../moment';
  5. var suffixes = {
  6. 1: '-inci',
  7. 5: '-inci',
  8. 8: '-inci',
  9. 70: '-inci',
  10. 80: '-inci',
  11. 2: '-nci',
  12. 7: '-nci',
  13. 20: '-nci',
  14. 50: '-nci',
  15. 3: '-üncü',
  16. 4: '-üncü',
  17. 100: '-üncü',
  18. 6: '-ncı',
  19. 9: '-uncu',
  20. 10: '-uncu',
  21. 30: '-uncu',
  22. 60: '-ıncı',
  23. 90: '-ıncı',
  24. };
  25. export default moment.defineLocale('az', {
  26. months: 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split(
  27. '_'
  28. ),
  29. monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
  30. weekdays: 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
  31. '_'
  32. ),
  33. weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
  34. weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
  35. weekdaysParseExact: true,
  36. longDateFormat: {
  37. LT: 'HH:mm',
  38. LTS: 'HH:mm:ss',
  39. L: 'DD.MM.YYYY',
  40. LL: 'D MMMM YYYY',
  41. LLL: 'D MMMM YYYY HH:mm',
  42. LLLL: 'dddd, D MMMM YYYY HH:mm',
  43. },
  44. calendar: {
  45. sameDay: '[bugün saat] LT',
  46. nextDay: '[sabah saat] LT',
  47. nextWeek: '[gələn həftə] dddd [saat] LT',
  48. lastDay: '[dünən] LT',
  49. lastWeek: '[keçən həftə] dddd [saat] LT',
  50. sameElse: 'L',
  51. },
  52. relativeTime: {
  53. future: '%s sonra',
  54. past: '%s əvvəl',
  55. s: 'bir neçə saniyə',
  56. ss: '%d saniyə',
  57. m: 'bir dəqiqə',
  58. mm: '%d dəqiqə',
  59. h: 'bir saat',
  60. hh: '%d saat',
  61. d: 'bir gün',
  62. dd: '%d gün',
  63. M: 'bir ay',
  64. MM: '%d ay',
  65. y: 'bir il',
  66. yy: '%d il',
  67. },
  68. meridiemParse: /gecə|səhər|gündüz|axşam/,
  69. isPM: function (input) {
  70. return /^(gündüz|axşam)$/.test(input);
  71. },
  72. meridiem: function (hour, minute, isLower) {
  73. if (hour < 4) {
  74. return 'gecə';
  75. } else if (hour < 12) {
  76. return 'səhər';
  77. } else if (hour < 17) {
  78. return 'gündüz';
  79. } else {
  80. return 'axşam';
  81. }
  82. },
  83. dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
  84. ordinal: function (number) {
  85. if (number === 0) {
  86. // special case for zero
  87. return number + '-ıncı';
  88. }
  89. var a = number % 10,
  90. b = (number % 100) - a,
  91. c = number >= 100 ? 100 : null;
  92. return number + (suffixes[a] || suffixes[b] || suffixes[c]);
  93. },
  94. week: {
  95. dow: 1, // Monday is the first day of the week.
  96. doy: 7, // The week that contains Jan 7th is the first week of the year.
  97. },
  98. });