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.

hy-am.js 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. //! moment.js locale configuration
  2. //! locale : Armenian [hy-am]
  3. //! author : Armendarabyan : https://github.com/armendarabyan
  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 hyAm = moment.defineLocale('hy-am', {
  12. months: {
  13. format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split(
  14. '_'
  15. ),
  16. standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split(
  17. '_'
  18. ),
  19. },
  20. monthsShort: 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),
  21. weekdays: 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split(
  22. '_'
  23. ),
  24. weekdaysShort: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
  25. weekdaysMin: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
  26. longDateFormat: {
  27. LT: 'HH:mm',
  28. LTS: 'HH:mm:ss',
  29. L: 'DD.MM.YYYY',
  30. LL: 'D MMMM YYYY թ.',
  31. LLL: 'D MMMM YYYY թ., HH:mm',
  32. LLLL: 'dddd, D MMMM YYYY թ., HH:mm',
  33. },
  34. calendar: {
  35. sameDay: '[այսօր] LT',
  36. nextDay: '[վաղը] LT',
  37. lastDay: '[երեկ] LT',
  38. nextWeek: function () {
  39. return 'dddd [օրը ժամը] LT';
  40. },
  41. lastWeek: function () {
  42. return '[անցած] dddd [օրը ժամը] LT';
  43. },
  44. sameElse: 'L',
  45. },
  46. relativeTime: {
  47. future: '%s հետո',
  48. past: '%s առաջ',
  49. s: 'մի քանի վայրկյան',
  50. ss: '%d վայրկյան',
  51. m: 'րոպե',
  52. mm: '%d րոպե',
  53. h: 'ժամ',
  54. hh: '%d ժամ',
  55. d: 'օր',
  56. dd: '%d օր',
  57. M: 'ամիս',
  58. MM: '%d ամիս',
  59. y: 'տարի',
  60. yy: '%d տարի',
  61. },
  62. meridiemParse: /գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,
  63. isPM: function (input) {
  64. return /^(ցերեկվա|երեկոյան)$/.test(input);
  65. },
  66. meridiem: function (hour) {
  67. if (hour < 4) {
  68. return 'գիշերվա';
  69. } else if (hour < 12) {
  70. return 'առավոտվա';
  71. } else if (hour < 17) {
  72. return 'ցերեկվա';
  73. } else {
  74. return 'երեկոյան';
  75. }
  76. },
  77. dayOfMonthOrdinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
  78. ordinal: function (number, period) {
  79. switch (period) {
  80. case 'DDD':
  81. case 'w':
  82. case 'W':
  83. case 'DDDo':
  84. if (number === 1) {
  85. return number + '-ին';
  86. }
  87. return number + '-րդ';
  88. default:
  89. return number;
  90. }
  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 hyAm;
  98. })));