Merge "Added release notes for 'ContentHandler::runLegacyHooks' removal"
[mediawiki.git] / resources / lib / moment / locale / km.js
blob62297916c2752ca19d5533266fea2429819480fa
1 // moment.js locale configuration
2 // locale : khmer (km)
3 // author : Kruy Vanna : https://github.com/kruyvanna
5 (function (factory) {
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
11     } else {
12         factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
13     }*/
14     factory(this.moment);
15 }(function (moment) {
16     return moment.defineLocale('km', {
17         months: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
18         monthsShort: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
19         weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
20         weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
21         weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
22         longDateFormat: {
23             LT: 'HH:mm',
24             LTS : 'LT:ss',
25             L: 'DD/MM/YYYY',
26             LL: 'D MMMM YYYY',
27             LLL: 'D MMMM YYYY LT',
28             LLLL: 'dddd, D MMMM YYYY LT'
29         },
30         calendar: {
31             sameDay: '[ថ្ងៃនៈ ម៉ោង] LT',
32             nextDay: '[ស្អែក ម៉ោង] LT',
33             nextWeek: 'dddd [ម៉ោង] LT',
34             lastDay: '[ម្សិលមិញ ម៉ោង] LT',
35             lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',
36             sameElse: 'L'
37         },
38         relativeTime: {
39             future: '%sទៀត',
40             past: '%sមុន',
41             s: 'ប៉ុន្មានវិនាទី',
42             m: 'មួយនាទី',
43             mm: '%d នាទី',
44             h: 'មួយម៉ោង',
45             hh: '%d ម៉ោង',
46             d: 'មួយថ្ងៃ',
47             dd: '%d ថ្ងៃ',
48             M: 'មួយខែ',
49             MM: '%d ខែ',
50             y: 'មួយឆ្នាំ',
51             yy: '%d ឆ្នាំ'
52         },
53         week: {
54             dow: 1, // Monday is the first day of the week.
55             doy: 4 // The week that contains Jan 4th is the first week of the year.
56         }
57     });
58 }));