1 //! moment.js locale configuration
2 //! locale : Hungarian [hu]
3 //! author : Adam Brunner : https://github.com/adambrunner
5 ;(function (global, factory) {
6 typeof exports === 'object' && typeof module !== 'undefined'
7 && typeof require === 'function' ? factory(require('../moment')) :
8 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10 }(this, (function (moment) { 'use strict';
12 //! moment.js locale configuration
14 var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(
17 function translate(number, withoutSuffix, key, isFuture) {
21 return isFuture || withoutSuffix
23 : 'néhány másodperce';
25 return num + (isFuture || withoutSuffix)
29 return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
31 return num + (isFuture || withoutSuffix ? ' perc' : ' perce');
33 return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');
35 return num + (isFuture || withoutSuffix ? ' óra' : ' órája');
37 return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');
39 return num + (isFuture || withoutSuffix ? ' nap' : ' napja');
41 return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
43 return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
45 return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');
47 return num + (isFuture || withoutSuffix ? ' év' : ' éve');
51 function week(isFuture) {
53 (isFuture ? '' : '[múlt] ') +
55 weekEndings[this.day()] +
60 var hu = moment.defineLocale('hu', {
61 months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(
64 monthsShort: 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split(
67 weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
68 weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
69 weekdaysMin: 'v_h_k_sze_cs_p_szo'.split('_'),
75 LLL: 'YYYY. MMMM D. H:mm',
76 LLLL: 'YYYY. MMMM D., dddd H:mm',
78 meridiemParse: /de|du/i,
79 isPM: function (input) {
80 return input.charAt(1).toLowerCase() === 'u';
82 meridiem: function (hours, minutes, isLower) {
84 return isLower === true ? 'de' : 'DE';
86 return isLower === true ? 'du' : 'DU';
90 sameDay: '[ma] LT[-kor]',
91 nextDay: '[holnap] LT[-kor]',
92 nextWeek: function () {
93 return week.call(this, true);
95 lastDay: '[tegnap] LT[-kor]',
96 lastWeek: function () {
97 return week.call(this, false);
117 dayOfMonthOrdinalParse: /\d{1,2}\./,
120 dow: 1, // Monday is the first day of the week.
121 doy: 4, // The week that contains Jan 4th is the first week of the year.