| 
<?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.
 */
 return array_replace_recursive(require __DIR__.'/en.php', [
 'meridiem' => ['?', '?'],
 'weekdays' => ['k?si?a', 'dzo?a', 'bla?a', 'ku?a', 'yawo?a', 'fi?a', 'memle?a'],
 'weekdays_short' => ['k?s', 'dzo', 'bla', 'ku?', 'yaw', 'fi?', 'mem'],
 'weekdays_min' => ['k?s', 'dzo', 'bla', 'ku?', 'yaw', 'fi?', 'mem'],
 'months' => ['dzove', 'dzodze', 'tedoxe', 'af?f?e', 'dama', 'masa', 'siaml?m', 'deasiamime', 'any?ny?', 'kele', 'ade?mekp?xe', 'dzome'],
 'months_short' => ['dzv', 'dzd', 'ted', 'af?', 'dam', 'mas', 'sia', 'dea', 'any', 'kel', 'ade', 'dzm'],
 'first_day_of_week' => 1,
 'formats' => [
 'LT' => 'a [ga] h:mm',
 'LTS' => 'a [ga] h:mm:ss',
 'L' => 'M/D/YYYY',
 'LL' => 'MMM D [lia], YYYY',
 'LLL' => 'a [ga] h:mm MMMM D [lia] YYYY',
 'LLLL' => 'a [ga] h:mm dddd, MMMM D [lia] YYYY',
 ],
 
 'year' => '?e :count',
 'y' => '?e :count',
 'a_year' => '?e :count',
 
 'month' => '?leti :count',
 'm' => '?leti :count',
 'a_month' => '?leti :count',
 
 'week' => 'kwasi?a :count',
 'w' => 'kwasi?a :count',
 'a_week' => 'kwasi?a :count',
 
 'day' => '?keke :count',
 'd' => '?keke :count',
 'a_day' => '?keke :count',
 
 'hour' => 'ga?o?o :count',
 'h' => 'ga?o?o :count',
 'a_hour' => 'ga?o?o :count',
 
 'minute' => 'miniti :count', // less reliable
 'min' => 'miniti :count', // less reliable
 'a_minute' => 'miniti :count', // less reliable
 
 'second' => 's?k?nd :count', // less reliable
 's' => 's?k?nd :count', // less reliable
 'a_second' => 's?k?nd :count', // less reliable
 ]);
 
 |