<?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' => ['maná', 'kugú'], 
    'weekdays' => ['s??nd?', 'm??nd?', 's??nd? mafú mába', 's??nd? mafú málal', 's??nd? mafú mána', 'mabágá má sukul', 'sásadi'], 
    'weekdays_short' => ['s??n', 'm??n', 'smb', 'sml', 'smn', 'mbs', 'sas'], 
    'weekdays_min' => ['s??n', 'm??n', 'smb', 'sml', 'smn', 'mbs', 'sas'], 
    'months' => ['ngw?n matáhra', 'ngw?n ?mba', 'ngw?n ?lal', 'ngw?n ?na', 'ngw?n ?tan', 'ngw?n ?tuó', 'ngw?n h?mbu?rí', 'ngw?n l?mbi', 'ngw?n r?bvuâ', 'ngw?n wum', 'ngw?n wum nav?r', 'krísimin'], 
    'months_short' => ['ng1', 'ng2', 'ng3', 'ng4', 'ng5', 'ng6', 'ng7', 'ng8', 'ng9', 'ng10', 'ng11', 'kris'], 
    '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', 
    ], 
]); 
 
 |