<?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: 
 * - Josh Soref 
 * - François B 
 * - shaishavgandhi05 
 * - Serhan Apayd?n 
 * - JD Isaacks 
 * - Glavi? 
 * - Nikola Zeravcic 
 * - Milos Sakovic 
 */ 
return [ 
    'year' => '{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count ??????|[0,Inf[:count ??????', 
    'y' => ':count ?.', 
    'month' => '{1}:count ?????|{2,3,4}:count ??????|[0,Inf[:count ??????', 
    'm' => ':count ?.', 
    'week' => '{1}:count ??????|{2,3,4}:count ??????|[0,Inf[:count ??????', 
    'w' => ':count ???.', 
    'day' => '{1,21,31}:count ???|[0,Inf[:count ????', 
    'd' => ':count ?.', 
    'hour' => '{1,21}:count ???|{2,3,4,22,23,24}:count ????|[0,Inf[:count ????', 
    'h' => ':count ?.', 
    'minute' => '{1,21,31,41,51}:count ?????|[0,Inf[:count ??????', 
    'min' => ':count ???.', 
    'second' => '{1,21,31,41,51}:count ??????|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count ???????|[0,Inf[:count ???????', 
    's' => ':count ???.', 
    'ago' => '??? :time', 
    'from_now' => '?? :time', 
    'after' => ':time ?????', 
    'before' => ':time ???', 
    'year_from_now' => '{1,21,31,41,51}:count ??????|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count ??????|[0,Inf[:count ??????', 
    'year_ago' => '{1,21,31,41,51}:count ??????|{2,3,4,22,23,24,32,33,34,42,43,44,52,53,54}:count ??????|[0,Inf[:count ??????', 
    'week_from_now' => '{1}:count ??????|{2,3,4}:count ??????|[0,Inf[:count ??????', 
    'week_ago' => '{1}:count ??????|{2,3,4}:count ??????|[0,Inf[:count ??????', 
    'diff_now' => '?????? ????', 
    'diff_yesterday' => '????', 
    'diff_tomorrow' => '?????', 
    'diff_before_yesterday' => '????????', 
    'diff_after_tomorrow' => '??????????', 
    'formats' => [ 
        'LT' => 'H:mm', 
        'LTS' => 'H:mm:ss', 
        'L' => 'DD.MM.YYYY', 
        'LL' => 'D. MMMM YYYY', 
        'LLL' => 'D. MMMM YYYY H:mm', 
        'LLLL' => 'dddd, D. MMMM YYYY H:mm', 
    ], 
    'calendar' => [ 
        'sameDay' => '[????? ?] LT', 
        'nextDay' => '[????? ?] LT', 
        'nextWeek' => function (\Carbon\CarbonInterface $date) { 
            switch ($date->dayOfWeek) { 
                case 0: 
                    return '[? ?????? ?] LT'; 
                case 3: 
                    return '[? ????? ?] LT'; 
                case 6: 
                    return '[? ?????? ?] LT'; 
                default: 
                    return '[?] dddd [?] LT'; 
            } 
        }, 
        'lastDay' => '[???? ?] LT', 
        'lastWeek' => function (\Carbon\CarbonInterface $date) { 
            switch ($date->dayOfWeek) { 
                case 0: 
                    return '[?????? ?????? ?] LT'; 
                case 1: 
                    return '[??????? ????????? ?] LT'; 
                case 2: 
                    return '[??????? ?????? ?] LT'; 
                case 3: 
                    return '[?????? ????? ?] LT'; 
                case 4: 
                    return '[??????? ???????? ?] LT'; 
                case 5: 
                    return '[??????? ????? ?] LT'; 
                default: 
                    return '[?????? ?????? ?] LT'; 
            } 
        }, 
        'sameElse' => 'L', 
    ], 
    'ordinal' => ':number.', 
    'months' => ['??????', '???????', '????', '?????', '???', '???', '???', '??????', '?????????', '???????', '????????', '????????'], 
    'months_short' => ['???.', '???.', '???.', '???.', '???', '???', '???', '???.', '???.', '???.', '???.', '???.'], 
    'weekdays' => ['??????', '?????????', '??????', '?????', '????????', '?????', '??????'], 
    'weekdays_short' => ['???.', '???.', '???.', '???.', '???.', '???.', '???.'], 
    'weekdays_min' => ['??', '??', '??', '??', '??', '??', '??'], 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 1, 
    'list' => [', ', ' ? '], 
    'meridiem' => ['??', '??'], 
]; 
 
 |