<?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: 
 * - Muhammad Nasir Rahimi 
 * - Nassim Nasibullah (spinzar) 
 */ 
return [ 
    'year' => ':count ???|:count ????', 
    'y' => ':count???|:count????', 
    'month' => ':count ?????|:count ??????', 
    'm' => ':count?????|:count??????', 
    'week' => ':count ????|:count ????', 
    'w' => ':count????|:count????', 
    'day' => ':count ???|:count ????', 
    'd' => ':count???|:count????', 
    'hour' => ':count ????|:count ?????', 
    'h' => ':count????|:count?????', 
    'minute' => ':count ?????|:count ?????', 
    'min' => ':count?????|:count?????', 
    'second' => ':count ?????|:count ?????', 
    's' => ':count?????|:count?????', 
    'ago' => ':time ????', 
    'from_now' => ':time ?? ??? ???', 
    'after' => ':time ??????', 
    'before' => ':time ????', 
    'list' => ['? ', ' ?? '], 
    'meridiem' => ['?.?.', '?.?.'], 
    'weekdays' => ['?????', '??', '???', '????', '?????', '????', '????'], 
    'weekdays_short' => ['?', '?', '?', '?', '?', '?', '?'], 
    'weekdays_min' => ['?', '?', '?', '?', '?', '?', '?'], 
    'months' => ['?????', '??????', '????', '?????', '??', '???', '?????', '????', '???????', '??????', '?????', '?????'], 
    'months_short' => ['?????', '??????', '????', '?????', '??', '???', '?????', '????', '???????', '??????', '?????', '?????'], 
    'months_standalone' => ['?????', '???????', '????', '?????', '??', '???', '?????', '????', '??????', '??????', '?????', '?????'], 
    'months_short_standalone' => ['?????', '??????', '????', '?????', '??', '???', '?????', '????', '??????', '??????', '?????', '?????'], 
    'first_day_of_week' => 6, 
    'weekend' => [4, 5], 
    'formats' => [ 
        'LT' => 'H:mm', 
        'LTS' => 'H:mm:ss', 
        'L' => 'YYYY/M/d', 
        'LL' => 'YYYY MMM D', 
        'LLL' => '? YYYY ? MMMM D H:mm', 
        'LLLL' => 'dddd ? YYYY ? MMMM D H:mm', 
    ], 
]; 
 
 |