<?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:
* - François B
* - Serhan Apayd?n
* - JD Isaacks
* - Malinda Weerasinghe (MalindaWMD)
*/
return [
'year' => '{1}??? 1|??? :count',
'a_year' => '{1}?????|??? :count',
'month' => '{1}??? 1|??? :count',
'a_month' => '{1}????|??? :count',
'week' => '{1}??? 1|??? :count',
'a_week' => '{1}??????|??? :count',
'day' => '{1}??? 1|??? :count',
'a_day' => '{1}?????|??? :count',
'hour' => '{1}??? 1|??? :count',
'a_hour' => '{1}?????|??? :count',
'minute' => '{1}???????? 1|???????? :count',
'a_minute' => '{1}???????????|???????? :count',
'second' => '{1}????? 1|????? :count',
'a_second' => '{1}????? ????????|????? :count',
'ago' => ':time ?? ???',
'from_now' => function ($time) {
if (preg_match('/??? \d/u', $time)) {
return $time.' ??';
}
return $time.' ????';
},
'before' => ':time ?? ???',
'after' => function ($time) {
if (preg_match('/??? \d/u', $time)) {
return $time.' ??';
}
return $time.' ????';
},
'diff_now' => '????',
'diff_today' => '??',
'diff_yesterday' => '???',
'diff_tomorrow' => '???',
'formats' => [
'LT' => 'a h:mm',
'LTS' => 'a h:mm:ss',
'L' => 'YYYY/MM/DD',
'LL' => 'YYYY MMMM D',
'LLL' => 'YYYY MMMM D, a h:mm',
'LLLL' => 'YYYY MMMM D [????] dddd, a h:mm:ss',
],
'calendar' => [
'sameDay' => '[??] LT[?]',
'nextDay' => '[???] LT[?]',
'nextWeek' => 'dddd LT[?]',
'lastDay' => '[???] LT[?]',
'lastWeek' => '[??????] dddd LT[?]',
'sameElse' => 'L',
],
'ordinal' => ':number ????',
'meridiem' => ['??? ???', '??? ???', '??.?.', '?.?.'],
'months' => ['??????', '????????', '??????', '????????', '????', '????', '????', '???????', '???????????', '????????', '?????????', '?????????'],
'months_short' => ['??', '???', '????', '???', '????', '????', '????', '???', '????', '???', '????', '????'],
'weekdays' => ['?????', '?????', '?????????', '?????', '??????????????', '????????', '?????????'],
'weekdays_short' => ['???', '???', '??', '???', '?????', '????', '???'],
'weekdays_min' => ['?', '?', '?', '?', '????', '??', '??'],
'first_day_of_week' => 1,
];
|