Ohm-Management - Projektarbeit B-ME
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 3.3KB

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