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