<?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:
* - Ge'ez Frontier Foundation locales@geez.org
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'formats' => [
'L' => 'DD/MM/YYYY',
],
'months' => ['???', '???', '???', '???', '????', '???', '???', '???', '???', '???', '???', '???'],
'months_short' => ['???', '???', '???', '???', '???', '???', '???', '???', '???', '???', '???', '???'],
'weekdays' => ['???', '???', '???', '???', '???', '???', '????'],
'weekdays_short' => ['???', '???', '???', '???', '???', '???', '???'],
'weekdays_min' => ['???', '???', '???', '???', '???', '???', '???'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 1,
'meridiem' => ['???', '???'],
'month' => ':count ???', // less reliable
'm' => ':count ???', // less reliable
'a_month' => ':count ???', // less reliable
'week' => ':count ???', // less reliable
'w' => ':count ???', // less reliable
'a_week' => ':count ???', // less reliable
'hour' => ':count ????', // less reliable
'h' => ':count ????', // less reliable
'a_hour' => ':count ????', // less reliable
'minute' => ':count ???', // less reliable
'min' => ':count ???', // less reliable
'a_minute' => ':count ???', // less reliable
'year' => ':count ???',
'y' => ':count ???',
'a_year' => ':count ???',
'day' => ':count ???',
'd' => ':count ???',
'a_day' => ':count ???',
'second' => ':count ???',
's' => ':count ???',
'a_second' => ':count ???',
]);
|