6
;(function (global, factory) {
7
typeof exports === 'object' && typeof module !== 'undefined'
8
&& typeof require === 'function' ? factory(require('../moment')) :
9
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
10
factory(global.moment)
11
}(this, (function (moment) { 'use strict';
15
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) {
22
return isFuture || withoutSuffix
24
: 'néhány másodperce';
26
return num + (isFuture || withoutSuffix)
30
return 'egy' + (isFuture || withoutSuffix ? ' perc' : ' perce');
32
return num + (isFuture || withoutSuffix ? ' perc' : ' perce');
34
return 'egy' + (isFuture || withoutSuffix ? ' óra' : ' órája');
36
return num + (isFuture || withoutSuffix ? ' óra' : ' órája');
38
return 'egy' + (isFuture || withoutSuffix ? ' nap' : ' napja');
40
return num + (isFuture || withoutSuffix ? ' nap' : ' napja');
42
return 'egy' + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
44
return num + (isFuture || withoutSuffix ? ' hónap' : ' hónapja');
46
return 'egy' + (isFuture || withoutSuffix ? ' év' : ' éve');
48
return num + (isFuture || withoutSuffix ? ' év' : ' éve');
52
function week(isFuture) {
54
(isFuture ? '' : '[múlt] ') +
56
weekEndings[this.day()] +
61
var hu = moment.defineLocale('hu', {
62
months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(
65
monthsShort: 'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(
68
monthsParseExact: true,
69
weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
70
weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
71
weekdaysMin: 'v_h_k_sze_cs_p_szo'.split('_'),
77
LLL: 'YYYY. MMMM D. H:mm',
78
LLLL: 'YYYY. MMMM D., dddd H:mm',
80
meridiemParse: /de|du/i,
81
isPM: function (input) {
82
return input.charAt(1).toLowerCase() === 'u';
84
meridiem: function (hours, minutes, isLower) {
86
return isLower === true ? 'de' : 'DE';
88
return isLower === true ? 'du' : 'DU';
92
sameDay: '[ma] LT[-kor]',
93
nextDay: '[holnap] LT[-kor]',
94
nextWeek: function () {
95
return week.call(this, true);
97
lastDay: '[tegnap] LT[-kor]',
98
lastWeek: function () {
99
return week.call(this, false);
119
dayOfMonthOrdinalParse: /\d{1,2}\./,