| 
<?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
 * - Nasser Ghiasi
 * - JD Isaacks
 * - Hossein Jabbari
 * - nimamo
 * - hafezdivandari
 * - Hassan Pezeshk (hpez)
 */
 return [
 'year' => ':count ???',
 'a_year' => '?? ???'.'|:count '.'???',
 'y' => ':count ???',
 'month' => ':count ???',
 'a_month' => '?? ???'.'|:count '.'???',
 'm' => ':count ???',
 'week' => ':count ????',
 'a_week' => '?? ????'.'|:count '.'????',
 'w' => ':count ????',
 'day' => ':count ???',
 'a_day' => '?? ???'.'|:count '.'???',
 'd' => ':count ???',
 'hour' => ':count ????',
 'a_hour' => '?? ????'.'|:count '.'????',
 'h' => ':count ????',
 'minute' => ':count ?????',
 'a_minute' => '?? ?????'.'|:count '.'?????',
 'min' => ':count ?????',
 'second' => ':count ?????',
 's' => ':count ?????',
 'ago' => ':time ???',
 'from_now' => ':time ????',
 'after' => ':time ?? ??',
 'before' => ':time ??? ??',
 'formats' => [
 'LT' => 'OH:Om',
 'LTS' => 'OH:Om:Os',
 'L' => 'OD/OM/OY',
 'LL' => 'OD MMMM OY',
 'LLL' => 'OD MMMM OY OH:Om',
 'LLLL' => 'dddd, OD MMMM OY OH:Om',
 ],
 'calendar' => [
 'sameDay' => '[????? ????] LT',
 'nextDay' => '[???? ????] LT',
 'nextWeek' => 'dddd [????] LT',
 'lastDay' => '[????? ????] LT',
 'lastWeek' => 'dddd [???] [????] LT',
 'sameElse' => 'L',
 ],
 'ordinal' => ':time?',
 'meridiem' => ['??? ?? ???', '??? ?? ???'],
 'months' => ['??????', '?????', '????', '?????', '??', '????', '?????', '???', '???????', '?????', '??????', '??????'],
 'months_short' => ['??????', '?????', '????', '?????', '??', '????', '?????', '???', '???????', '?????', '??????', '??????'],
 'weekdays' => ['??????', '??????', '???????', '????????', '???????', '????', '????'],
 'weekdays_short' => ['??????', '??????', '???????', '????????', '???????', '????', '????'],
 'weekdays_min' => ['?', '?', '?', '?', '?', '?', '?'],
 'first_day_of_week' => 6,
 'day_of_first_week_of_year' => 1,
 'list' => ['? ', ' ? '],
 'alt_numbers' => ['??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '??'],
 'months_short_standalone' => ['??????', '?????', '????', '?????', '??', '????', '?????', '???', '???????', '?????', '??????', '??????'],
 'weekend' => [5, 5],
 ];
 
 |