1 // moment.js language configuration
2 // language : 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(window.moment); // Browser 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.lang('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("_"),
62 LLL : "YYYY. MMMM D., LT",
63 LLLL : "YYYY. MMMM D., dddd LT"
65 meridiem : function (hours, minutes, isLower) {
67 return isLower === true ? 'de' : 'DE';
69 return isLower === true ? 'du' : 'DU';
73 sameDay : '[ma] LT[-kor]',
74 nextDay : '[holnap] LT[-kor]',
75 nextWeek : function () {
76 return week.call(this, true);
78 lastDay : '[tegnap] LT[-kor]',
79 lastWeek : function () {
80 return week.call(this, false);
101 dow : 1, // Monday is the first day of the week.
102 doy : 7 // The week that contains Jan 1st is the first week of the year.