‰PNG

   IHDR         ôxÔú   sBIT|dˆ   	pHYs  Ä  Ä•+   tEXtSoftware www.inkscape.org›î<  ,àtEXtComment 
<?php

/**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <brian@nesbot.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/*
 * Authors:
 * - Adam Brunner
 * - Brett Johnson
 * - balping
 */

use Carbon\CarbonInterface;

$huWeekEndings = ['vasÃ¡rnap', 'hÃ©tfÅ‘n', 'kedden', 'szerdÃ¡n', 'csÃ¼tÃ¶rtÃ¶kÃ¶n', 'pÃ©nteken', 'szombaton'];

return [
    'year' => ':count Ã©v',
    'y' => ':count Ã©v',
    'month' => ':count hÃ³nap',
    'm' => ':count hÃ³nap',
    'week' => ':count hÃ©t',
    'w' => ':count hÃ©t',
    'day' => ':count nap',
    'd' => ':count nap',
    'hour' => ':count Ã³ra',
    'h' => ':count Ã³ra',
    'minute' => ':count perc',
    'min' => ':count perc',
    'second' => ':count mÃ¡sodperc',
    's' => ':count mÃ¡sodperc',
    'ago' => ':time',
    'from_now' => ':time mÃºlva',
    'after' => ':time kÃ©sÅ‘bb',
    'before' => ':time korÃ¡bban',
    'year_ago' => ':count Ã©ve',
    'y_ago' => ':count Ã©ve',
    'month_ago' => ':count hÃ³napja',
    'm_ago' => ':count hÃ³napja',
    'week_ago' => ':count hete',
    'w_ago' => ':count hete',
    'day_ago' => ':count napja',
    'd_ago' => ':count napja',
    'hour_ago' => ':count Ã³rÃ¡ja',
    'h_ago' => ':count Ã³rÃ¡ja',
    'minute_ago' => ':count perce',
    'min_ago' => ':count perce',
    'second_ago' => ':count mÃ¡sodperce',
    's_ago' => ':count mÃ¡sodperce',
    'year_after' => ':count Ã©vvel',
    'y_after' => ':count Ã©vvel',
    'month_after' => ':count hÃ³nappal',
    'm_after' => ':count hÃ³nappal',
    'week_after' => ':count hÃ©ttel',
    'w_after' => ':count hÃ©ttel',
    'day_after' => ':count nappal',
    'd_after' => ':count nappal',
    'hour_after' => ':count Ã³rÃ¡val',
    'h_after' => ':count Ã³rÃ¡val',
    'minute_after' => ':count perccel',
    'min_after' => ':count perccel',
    'second_after' => ':count mÃ¡sodperccel',
    's_after' => ':count mÃ¡sodperccel',
    'year_before' => ':count Ã©vvel',
    'y_before' => ':count Ã©vvel',
    'month_before' => ':count hÃ³nappal',
    'm_before' => ':count hÃ³nappal',
    'week_before' => ':count hÃ©ttel',
    'w_before' => ':count hÃ©ttel',
    'day_before' => ':count nappal',
    'd_before' => ':count nappal',
    'hour_before' => ':count Ã³rÃ¡val',
    'h_before' => ':count Ã³rÃ¡val',
    'minute_before' => ':count perccel',
    'min_before' => ':count perccel',
    'second_before' => ':count mÃ¡sodperccel',
    's_before' => ':count mÃ¡sodperccel',
    'months' => ['januÃ¡r', 'februÃ¡r', 'mÃ¡rcius', 'Ã¡prilis', 'mÃ¡jus', 'jÃºnius', 'jÃºlius', 'augusztus', 'szeptember', 'oktÃ³ber', 'november', 'december'],
    'months_short' => ['jan.', 'feb.', 'mÃ¡rc.', 'Ã¡pr.', 'mÃ¡j.', 'jÃºn.', 'jÃºl.', 'aug.', 'szept.', 'okt.', 'nov.', 'dec.'],
    'weekdays' => ['vasÃ¡rnap', 'hÃ©tfÅ‘', 'kedd', 'szerda', 'csÃ¼tÃ¶rtÃ¶k', 'pÃ©ntek', 'szombat'],
    'weekdays_short' => ['vas', 'hÃ©t', 'kedd', 'sze', 'csÃ¼t', 'pÃ©n', 'szo'],
    'weekdays_min' => ['v', 'h', 'k', 'sze', 'cs', 'p', 'sz'],
    'ordinal' => ':number.',
    'diff_now' => 'most',
    'diff_today' => 'ma',
    'diff_yesterday' => 'tegnap',
    'diff_tomorrow' => 'holnap',
    'formats' => [
        'LT' => 'H:mm',
        'LTS' => 'H:mm:ss',
        'L' => 'YYYY.MM.DD.',
        'LL' => 'YYYY. MMMM D.',
        'LLL' => 'YYYY. MMMM D. H:mm',
        'LLLL' => 'YYYY. MMMM D., dddd H:mm',
    ],
    'calendar' => [
        'sameDay' => '[ma] LT[-kor]',
        'nextDay' => '[holnap] LT[-kor]',
        'nextWeek' => function (CarbonInterface $date) use ($huWeekEndings) {
            return '['.$huWeekEndings[$date->dayOfWeek].'] LT[-kor]';
        },
        'lastDay' => '[tegnap] LT[-kor]',
        'lastWeek' => function (CarbonInterface $date) use ($huWeekEndings) {
            return '[mÃºlt '.$huWeekEndings[$date->dayOfWeek].'] LT[-kor]';
        },
        'sameElse' => 'L',
    ],
    'meridiem' => ['DE', 'DU'],
    'first_day_of_week' => 1,
    'day_of_first_week_of_year' => 4,
    'list' => [', ', ' Ã©s '],
];
