1 // moment.js locale configuration
2 // locale : Armenian (hy-am)
3 // author : Armendarabyan : https://github.com/armendarabyan
6 if (typeof define === 'function' && define.amd) {
7 define(['moment'], factory); // AMD
8 } else if (typeof exports === 'object') {
9 module.exports = factory(require('../moment')); // Node
11 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
14 function monthsCaseReplace(m, format) {
16 'nominative': 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_'),
17 'accusative': 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_')
20 nounCase = (/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/).test(format) ?
24 return months[nounCase][m.month()];
27 function monthsShortCaseReplace(m, format) {
28 var monthsShort = 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_');
30 return monthsShort[m.month()];
33 function weekdaysCaseReplace(m, format) {
34 var weekdays = 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split('_');
36 return weekdays[m.day()];
39 return moment.defineLocale('hy-am', {
40 months : monthsCaseReplace,
41 monthsShort : monthsShortCaseReplace,
42 weekdays : weekdaysCaseReplace,
43 weekdaysShort : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
44 weekdaysMin : 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
49 LL : 'D MMMM YYYY թ.',
50 LLL : 'D MMMM YYYY թ., LT',
51 LLLL : 'dddd, D MMMM YYYY թ., LT'
54 sameDay: '[այսօր] LT',
57 nextWeek: function () {
58 return 'dddd [օրը ժամը] LT';
60 lastWeek: function () {
61 return '[անցած] dddd [օրը ժամը] LT';
68 s : 'մի քանի վայրկյան',
81 meridiem : function (hour) {
84 } else if (hour < 12) {
86 } else if (hour < 17) {
93 ordinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
94 ordinal: function (number, period) {
101 return number + '-ին';
103 return number + '-րդ';
110 dow : 1, // Monday is the first day of the week.
111 doy : 7 // The week that contains Jan 1st is the first week of the year.