You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
2.4 KiB
28 lines
2.4 KiB
<?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.
|
|
*/
|
|
|
|
return array_replace_recursive(require __DIR__.'/en.php', [
|
|
'weekdays' => ['๐ข๐ง๐๐จ๐๐ข๐ด', '๐ฅ๐ง๐๐ด๐๐ข๐ด', '๐๐ง๐๐๐ง๐ฃ๐ด๐๐ข๐ด', '๐๐ช๐๐ด๐๐ข๐ด', '๐๐ณ๐ข๐จ๐ฅ๐ช๐๐ด๐๐ข๐ด', '๐ฅ๐ช๐๐ด๐๐ฎ๐ข๐ด๐๐ข๐ด', '๐ฅ๐ง๐๐จ๐๐ข๐ด'],
|
|
'weekdays_short' => ['๐ข๐ง๐๐จ', '๐ฅ๐ง๐๐ด', '๐๐ง๐๐๐ง๐ฃ๐ด', '๐๐ช๐๐ด', '๐๐ณ๐ข๐จ๐ฅ๐ช๐๐ด', '๐ฅ๐ช๐๐ด๐๐ฎ๐ข๐ด', '๐ฅ๐ง๐๐จ'],
|
|
'weekdays_min' => ['๐ข๐ง๐๐จ', '๐ฅ๐ง๐๐ด', '๐๐ง๐๐๐ง๐ฃ๐ด', '๐๐ช๐๐ด', '๐๐ณ๐ข๐จ๐ฅ๐ช๐๐ด', '๐ฅ๐ช๐๐ด๐๐ฎ๐ข๐ด', '๐ฅ๐ง๐๐จ'],
|
|
'months' => ['๐๐๐ช๐ ๐ข๐จ', '๐๐ฌ๐๐ด๐๐ณ๐ข๐ช๐ ๐ข๐จ', '๐๐ข๐ด๐๐ง', '๐๐ฌ๐๐ณ๐ข๐จ๐ฃ๐ด', '๐๐ฌ', '๐๐ช๐๐ด', '๐๐ช๐ฃ๐ญ', '๐๐๐ง๐๐ด๐๐ด', '๐ฅ๐ฌ๐๐ด๐๐ฌ๐๐ด๐๐ง๐ข๐ด', '๐๐ง๐๐ด๐๐ฌ๐๐ง๐ข๐ด', '๐๐ง๐๐ฌ๐๐ด๐๐ง๐ข๐ด', '๐๐จ๐ฅ๐ฌ๐๐ด๐๐ง๐ข๐ด'],
|
|
'months_short' => ['๐๐๐ช', '๐๐ฌ๐๐ด', '๐๐ข๐ด๐๐ง', '๐๐ฌ๐๐ณ๐ข๐จ๐ฃ๐ด', '๐๐ฌ', '๐๐ช๐๐ด', '๐๐ช๐ฃ๐ญ', '๐๐๐ง๐๐ด๐๐ด', '๐ฅ๐ฌ๐๐ด๐๐ฌ๐๐ด๐๐ง๐ข๐ด', '๐๐ง๐๐ด๐๐ฎ๐๐ง๐ข๐ด', '๐๐ง๐๐ฌ๐๐ด๐๐ง๐ข๐ด', '๐๐จ๐ฅ๐ฌ๐๐ด๐๐ข๐ด'],
|
|
'months_short_standalone' => ['๐๐๐ช๐ ๐ข๐จ', '๐๐ฌ๐๐ด๐๐ณ๐ข๐ช๐ ๐ข๐จ', '๐๐ข๐ด๐๐ง', '๐๐ฌ๐๐ณ๐ข๐จ๐ฃ๐ด', '๐๐ฌ', '๐๐ช๐๐ด', '๐๐ช๐ฃ๐ญ', '๐๐๐ง๐๐ด๐๐ด', '๐ฅ๐ฌ๐๐ด๐๐ฌ๐๐ด๐๐ง๐ข๐ด', '๐๐ง๐๐ด๐๐ฎ๐๐ง๐ข๐ด', '๐๐ง๐๐ฌ๐๐ด๐๐ง๐ข๐ด', '๐๐จ๐ฅ๐ฌ๐๐ด๐๐ง๐ข๐ด'],
|
|
'formats' => [
|
|
'LT' => 'h:mm a',
|
|
'LTS' => 'h:mm:ss a',
|
|
'L' => 'D/M/YYYY',
|
|
'LL' => 'D MMM, YYYY',
|
|
'LLL' => 'D MMMM, YYYY h:mm a',
|
|
'LLLL' => 'dddd, D MMMM, YYYY h:mm a',
|
|
],
|
|
'first_day_of_week' => 0,
|
|
]);
|
|
|