1 // moment.js locale configuration
2 // locale : Armenian (hy-am)
3 // author : Armendarabyan : https://github.com/armendarabyan
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 function monthsCaseReplace(m
, format
) {
18 'nominative': 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_'),
19 'accusative': 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_')
22 nounCase
= (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format
) ?
26 return months
[nounCase
][m
.month()];
29 function monthsShortCaseReplace(m
, format
) {
30 var monthsShort
= 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_');
32 return monthsShort
[m
.month()];
35 function weekdaysCaseReplace(m
, format
) {
36 var weekdays
= 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_');
38 return weekdays
[m
.day()];
41 return moment
.defineLocale('hy-am', {
42 months
: monthsCaseReplace
,
43 monthsShort
: monthsShortCaseReplace
,
44 weekdays
: weekdaysCaseReplace
,
45 weekdaysShort
: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
46 weekdaysMin
: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
51 LL
: 'D MMMM YYYY թ.',
52 LLL
: 'D MMMM YYYY թ., LT',
53 LLLL
: 'dddd, D MMMM YYYY թ., LT'
56 sameDay
: '[այսօր] LT',
59 nextWeek: function () {
60 return 'dddd [օրը ժամը] LT';
62 lastWeek: function () {
63 return '[անցած] dddd [օրը ժամը] LT';
70 s
: 'մի քանի վայրկյան',
83 meridiem : function (hour
) {
86 } else if (hour
< 12) {
88 } else if (hour
< 17) {
95 ordinalParse
: /\d{1,2}|\d{1,2}-(ին|րդ)/,
96 ordinal: function (number
, period
) {
103 return number
+ '-ին';
105 return number
+ '-րդ';
112 dow
: 1, // Monday is the first day of the week.
113 doy
: 7 // The week that contains Jan 1st is the first week of the year.