Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / hy-am.js
blobe495232dd11faa2c50cc28f86f0683aeb9816795
1 //! moment.js locale configuration
2 //! locale : Armenian [hy-am]
3 //! author : Armendarabyan : https://github.com/armendarabyan
5 ;(function (global, factory) {
6    typeof exports === 'object' && typeof module !== 'undefined'
7        && typeof require === 'function' ? factory(require('../moment')) :
8    typeof define === 'function' && define.amd ? define(['../moment'], factory) :
9    factory(global.moment)
10 }(this, (function (moment) { 'use strict';
12     //! moment.js locale configuration
14     var hyAm = moment.defineLocale('hy-am', {
15         months: {
16             format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split(
17                 '_'
18             ),
19             standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split(
20                 '_'
21             ),
22         },
23         monthsShort: 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),
24         weekdays: 'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split(
25             '_'
26         ),
27         weekdaysShort: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
28         weekdaysMin: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
29         longDateFormat: {
30             LT: 'HH:mm',
31             LTS: 'HH:mm:ss',
32             L: 'DD.MM.YYYY',
33             LL: 'D MMMM YYYY թ.',
34             LLL: 'D MMMM YYYY թ., HH:mm',
35             LLLL: 'dddd, D MMMM YYYY թ., HH:mm',
36         },
37         calendar: {
38             sameDay: '[այսօր] LT',
39             nextDay: '[վաղը] LT',
40             lastDay: '[երեկ] LT',
41             nextWeek: function () {
42                 return 'dddd [օրը ժամը] LT';
43             },
44             lastWeek: function () {
45                 return '[անցած] dddd [օրը ժամը] LT';
46             },
47             sameElse: 'L',
48         },
49         relativeTime: {
50             future: '%s հետո',
51             past: '%s առաջ',
52             s: 'մի քանի վայրկյան',
53             ss: '%d վայրկյան',
54             m: 'րոպե',
55             mm: '%d րոպե',
56             h: 'ժամ',
57             hh: '%d ժամ',
58             d: 'օր',
59             dd: '%d օր',
60             M: 'ամիս',
61             MM: '%d ամիս',
62             y: 'տարի',
63             yy: '%d տարի',
64         },
65         meridiemParse: /գիշերվա|առավոտվա|ցերեկվա|երեկոյան/,
66         isPM: function (input) {
67             return /^(ցերեկվա|երեկոյան)$/.test(input);
68         },
69         meridiem: function (hour) {
70             if (hour < 4) {
71                 return 'գիշերվա';
72             } else if (hour < 12) {
73                 return 'առավոտվա';
74             } else if (hour < 17) {
75                 return 'ցերեկվա';
76             } else {
77                 return 'երեկոյան';
78             }
79         },
80         dayOfMonthOrdinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
81         ordinal: function (number, period) {
82             switch (period) {
83                 case 'DDD':
84                 case 'w':
85                 case 'W':
86                 case 'DDDo':
87                     if (number === 1) {
88                         return number + '-ին';
89                     }
90                     return number + '-րդ';
91                 default:
92                     return number;
93             }
94         },
95         week: {
96             dow: 1, // Monday is the first day of the week.
97             doy: 7, // The week that contains Jan 7th is the first week of the year.
98         },
99     });
101     return hyAm;
103 })));