<?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' => ['I bik??glà', 'I ?ugaj?p'], 
    'weekdays' => ['?gwà n??y', '?gwà nja?gumba', '?gwà ûm', '?gwà ?gê', '?gwà mb?k', '?gwà k??', '?gwà jôn'], 
    'weekdays_short' => ['n?y', 'nja', 'uum', '?ge', 'mb?', 'k??', 'jon'], 
    'weekdays_min' => ['n?y', 'nja', 'uum', '?ge', 'mb?', 'k??', 'jon'], 
    'months' => ['K?nd??', 'Màc??l', 'Màtùmb', 'Màtop', 'M?puy?', 'Hìlònd??', 'Njèbà', 'Hìka?', 'Dìp??s', 'Bìòôm', 'Mày?sèp', 'Lìbuy li ?yèe'], 
    'months_short' => ['k?n', 'mac', 'mat', 'mto', 'mpu', 'hil', 'nje', 'hik', 'dip', 'bio', 'may', 'li?'], 
    'first_day_of_week' => 1, 
    'formats' => [ 
        'LT' => 'HH:mm', 
        'LTS' => 'HH:mm:ss', 
        'L' => 'D/M/YYYY', 
        'LL' => 'D MMM, YYYY', 
        'LLL' => 'D MMMM YYYY HH:mm', 
        'LLLL' => 'dddd D MMMM YYYY HH:mm', 
    ], 
 
    'second' => ':count móndî', // less reliable 
    's' => ':count móndî', // less reliable 
    'a_second' => ':count móndî', // less reliable 
]); 
 
 |