<?php 
 
/** 
 * This file is part of the Carbon package. 
 * 
 * (c) Brian Nesbitt <[email protected]> 
 * 
 * For the full copyright and license information, please view the LICENSE 
 * file that was distributed with this source code. 
 */ 
 
/** 
 * Authors: 
 * - Daniel Cohen Gindi 
 * - JD Isaacks 
 * - Itai Nathaniel 
 * - GabMic 
 */ 
return [ 
    'year' => '???|{2}??????|:count ????', 
    'y' => '???|{2}??????|:count ????', 
    'month' => '????|{2}???????|:count ??????', 
    'm' => '????|{2}???????|:count ??????', 
    'week' => '????|{2}???????|:count ??????', 
    'w' => '????|{2}???????|:count ??????', 
    'day' => '???|{2}??????|:count ????', 
    'd' => '???|{2}??????|:count ????', 
    'hour' => '???|{2}??????|:count ????', 
    'h' => '???|{2}??????|:count ????', 
    'minute' => '???|{2}??? ????|:count ????', 
    'min' => '???|{2}??? ????|:count ????', 
    'second' => '?????|:count ?????', 
    'a_second' => '??? ?????|:count ?????', 
    's' => '????|:count ?????', 
    'ago' => '???? :time', 
    'from_now' => '???? :time ??????', 
    'after' => '???? :time', 
    'before' => '???? :time', 
    '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' => '[???? ??]LT', 
        'nextDay' => '[??? ??]LT', 
        'nextWeek' => 'dddd [????] LT', 
        'lastDay' => '[????? ??]LT', 
        'lastWeek' => '[????] dddd [?????? ????] LT', 
        'sameElse' => 'L', 
    ], 
    'meridiem' => function ($hour, $minute, $isLower) { 
        if ($hour < 5) { 
            return '????? ????'; 
        } 
        if ($hour < 10) { 
            return '?????'; 
        } 
        if ($hour < 12) { 
            return $isLower ? '????"?' : '???? ???????'; 
        } 
        if ($hour < 18) { 
            return $isLower ? '???"?' : '???? ???????'; 
        } 
 
        return '????'; 
    }, 
    'months' => ['?????', '??????', '???', '?????', '???', '????', '????', '??????', '??????', '???????', '??????', '?????'], 
    'months_short' => ['????', '????', '???', '????', '???', '????', '????', '????', '????', '????', '????', '????'], 
    'weekdays' => ['?????', '???', '?????', '?????', '?????', '????', '???'], 
    'weekdays_short' => ['??', '??', '??', '??', '??', '??', '??'], 
    'weekdays_min' => ['?', '?', '?', '?', '?', '?', '?'], 
    'list' => [', ', ' ? -'], 
    'weekend' => [5, 6], 
]; 
 
 |