az.js 3.5 KB

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