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