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 3.5KB

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