1 // moment.js locale configuration
2 // locale : hungarian (hu)
3 // author : Adam Brunner : https://github.com/adambrunner
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 var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
16 function translate(number, withoutSuffix, key, isFuture) {
22 return (isFuture || withoutSuffix) ? 'néhány másodperc' : 'néhány másodperce';
24 return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
26 return num + (isFuture || withoutSuffix ? ' perc' : ' perce');
28 return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');
30 return num + (isFuture || withoutSuffix ? ' óra' : ' órája');
32 return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');
34 return num + (isFuture || withoutSuffix ? ' nap' : ' napja');
36 return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
38 return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
40 return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');
42 return num + (isFuture || withoutSuffix ? ' év' : ' éve');
48 function week(isFuture) {
49 return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]';
52 return moment.defineLocale('hu', {
53 months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'),
54 monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'),
55 weekdays : 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
56 weekdaysShort : 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
57 weekdaysMin : 'v_h_k_sze_cs_p_szo'.split('_'),
63 LLL : 'YYYY. MMMM D., LT',
64 LLLL : 'YYYY. MMMM D., dddd LT'
66 meridiem : function (hours, minutes, isLower) {
68 return isLower === true ? 'de' : 'DE';
70 return isLower === true ? 'du' : 'DU';
74 sameDay : '[ma] LT[-kor]',
75 nextDay : '[holnap] LT[-kor]',
76 nextWeek : function () {
77 return week.call(this, true);
79 lastDay : '[tegnap] LT[-kor]',
80 lastWeek : function () {
81 return week.call(this, false);
100 ordinalParse: /\d{1,2}\./,
103 dow : 1, // Monday is the first day of the week.
104 doy : 7 // The week that contains Jan 1st is the first week of the year.