‰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:
 * - FranÃ§ois B
 * - Serhan ApaydÄ±n
 * - Dominika
 */
return [
    'year' => '{1}waâ€™ DIS|:count DIS',
    'month' => '{1}waâ€™ jar|:count jar',
    'week' => '{1}waâ€™ hogh|:count hogh',
    'day' => '{1}waâ€™ jaj|:count jaj',
    'hour' => '{1}waâ€™ rep|:count rep',
    'minute' => '{1}waâ€™ tup|:count tup',
    'second' => '{1}puS lup|:count lup',
    'ago' => function ($time) {
        $output = strtr($time, [
            'jaj' => 'Huâ€™',
            'jar' => 'wen',
            'DIS' => 'ben',
        ]);

        return $output === $time ? "$time ret" : $output;
    },
    'from_now' => function ($time) {
        $output = strtr($time, [
            'jaj' => 'leS',
            'jar' => 'waQ',
            'DIS' => 'nem',
        ]);

        return $output === $time ? "$time pIq" : $output;
    },
    'diff_yesterday' => 'waâ€™Huâ€™',
    'diff_today' => 'DaHjaj',
    'diff_tomorrow' => 'waâ€™leS',
    'formats' => [
        'LT' => 'HH:mm',
        'LTS' => 'HH:mm:ss',
        'L' => 'DD.MM.YYYY',
        'LL' => 'D MMMM YYYY',
        'LLL' => 'D MMMM YYYY HH:mm',
        'LLLL' => 'dddd, D MMMM YYYY HH:mm',
    ],
    'calendar' => [
        'sameDay' => '[DaHjaj] LT',
        'nextDay' => '[waâ€™leS] LT',
        'nextWeek' => 'LLL',
        'lastDay' => '[waâ€™Huâ€™] LT',
        'lastWeek' => 'LLL',
        'sameElse' => 'L',
    ],
    'ordinal' => ':number.',
    'months' => ['teraâ€™ jar waâ€™', 'teraâ€™ jar chaâ€™', 'teraâ€™ jar wej', 'teraâ€™ jar loS', 'teraâ€™ jar vagh', 'teraâ€™ jar jav', 'teraâ€™ jar Soch', 'teraâ€™ jar chorgh', 'teraâ€™ jar Hut', 'teraâ€™ jar waâ€™maH', 'teraâ€™ jar waâ€™maH waâ€™', 'teraâ€™ jar waâ€™maH chaâ€™'],
    'months_short' => ['jar waâ€™', 'jar chaâ€™', 'jar wej', 'jar loS', 'jar vagh', 'jar jav', 'jar Soch', 'jar chorgh', 'jar Hut', 'jar waâ€™maH', 'jar waâ€™maH waâ€™', 'jar waâ€™maH chaâ€™'],
    'weekdays' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],
    'weekdays_short' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],
    'weekdays_min' => ['lojmItjaj', 'DaSjaj', 'povjaj', 'ghItlhjaj', 'loghjaj', 'buqjaj', 'ghInjaj'],
    'first_day_of_week' => 1,
    'day_of_first_week_of_year' => 4,
    'list' => [', ', ' â€™ej '],
];
