<?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:
* - Swara Mohammed
*/
$months = [
'????????',
'??????',
'??????',
'?????',
'????????',
'??????',
'???????',
'????????',
'??????',
'?????????',
'?????????',
'?????????',
];
return [
'year' => implode('|', ['{0}:count ?????', '{1}?????', '{2}??? ???', ']2,11[:count ???', ']10,Inf[:count ???']),
'a_year' => implode('|', ['{0}:count ?????', '{1}?????', '{2}??? ???', ']2,11[:count ???', ']10,Inf[:count ???']),
'month' => implode('|', ['{0}:count ??????', '{1}??????', '{2}??? ????', ']2,11[:count ????', ']10,Inf[:count ????']),
'a_month' => implode('|', ['{0}:count ??????', '{1}??????', '{2}??? ????', ']2,11[:count ????', ']10,Inf[:count ????']),
'week' => implode('|', ['{0}:count ????????', '{1}????????', '{2}??? ?????', ']2,11[:count ?????', ']10,Inf[:count ?????']),
'a_week' => implode('|', ['{0}:count ????????', '{1}????????', '{2}??? ?????', ']2,11[:count ?????', ']10,Inf[:count ?????']),
'day' => implode('|', ['{0}:count ?????', '{1}?????', '{2}??? ???', ']2,11[:count ???', ']10,Inf[:count ???']),
'a_day' => implode('|', ['{0}:count ?????', '{1}?????', '{2}??? ???', ']2,11[:count ???', ']10,Inf[:count ???']),
'hour' => implode('|', ['{0}:count ?????????', '{1}?????????', '{2}??? ???????', ']2,11[:count ???????', ']10,Inf[:count ???????']),
'a_hour' => implode('|', ['{0}:count ?????????', '{1}?????????', '{2}??? ???????', ']2,11[:count ???????', ']10,Inf[:count ???????']),
'minute' => implode('|', ['{0}:count ???????', '{1}???????', '{2}??? ?????', ']2,11[:count ?????', ']10,Inf[:count ?????']),
'a_minute' => implode('|', ['{0}:count ???????', '{1}???????', '{2}??? ?????', ']2,11[:count ?????', ']10,Inf[:count ?????']),
'second' => implode('|', ['{0}:count ???????', '{1}???????', '{2}??? ????', ']2,11[:count ????', ']10,Inf[:count ????']),
'a_second' => implode('|', ['{0}:count ???????', '{1}???????', '{2}??? ????', ']2,11[:count ????', ']10,Inf[:count ????']),
'ago' => '??? :time',
'from_now' => ':time ?? ???????',
'after' => '???? :time',
'before' => '??? :time',
'diff_now' => '?????',
'diff_today' => '?????',
'diff_today_regexp' => '???(?:\\s+??)?(?:\\s+???????)?',
'diff_yesterday' => '?????',
'diff_yesterday_regexp' => '?????(?:\\s+??)?(?:\\s+???????)?',
'diff_tomorrow' => '??????',
'diff_tomorrow_regexp' => '??????(?:\\s+??)?(?:\\s+???????)?',
'diff_before_yesterday' => '??? ?????',
'diff_after_tomorrow' => '???? ??????',
'period_recurrences' => implode('|', ['{0}???', '{1}???', '{2}:count ??????', ']2,11[:count ???', ']10,Inf[:count ???']),
'period_interval' => '????? :interval',
'period_start_date' => '?? :date',
'period_end_date' => '?? :date',
'months' => $months,
'months_short' => $months,
'weekdays' => ['????????', '????????', '???????', '?????????', '?????????', '?????', '?????'],
'weekdays_short' => ['????????', '????????', '???????', '?????????', '?????????', '?????', '?????'],
'weekdays_min' => ['????????', '????????', '???????', '?????????', '?????????', '?????', '?????'],
'list' => ['? ', ' ? '],
'first_day_of_week' => 6,
'day_of_first_week_of_year' => 1,
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'D/M/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' => ['?.?', '?.?'],
'weekend' => [5, 6],
];
|