<?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. 
 */ 
 
/** 
 * Authors: 
 * - [email protected] 
 */ 
return array_replace_recursive(require __DIR__.'/en.php', [ 
    'formats' => [ 
        'L' => 'YYYY?MM?DD?', 
    ], 
    'months' => ['??', '??', '??', '??', '??', '??', '??', '??', '??', '??', '???', '???'], 
    'months_short' => [' 1?', ' 2?', ' 3?', ' 4?', ' 5?', ' 6?', ' 7?', ' 8?', ' 9?', '10?', '11?', '12?'], 
    'weekdays' => ['???', '???', '???', '???', '???', '???', '???'], 
    'weekdays_short' => ['?', '?', '?', '?', '?', '?', '?'], 
    'weekdays_min' => ['?', '?', '?', '?', '?', '?', '?'], 
    'day_of_first_week_of_year' => 1, 
    'meridiem' => ['??', '??'], 
 
    'year' => ':count ?', 
    'y' => ':count ?', 
    'a_year' => ':count ?', 
 
    'month' => ':count goe?h', 
    'm' => ':count goe?h', 
    'a_month' => ':count goe?h', 
 
    'week' => ':count lé-pài', 
    'w' => ':count lé-pài', 
    'a_week' => ':count lé-pài', 
 
    'day' => ':count ?', 
    'd' => ':count ?', 
    'a_day' => ':count ?', 
 
    'hour' => ':count tiám-cheng', 
    'h' => ':count tiám-cheng', 
    'a_hour' => ':count tiám-cheng', 
 
    'minute' => ':count Hun-cheng', 
    'min' => ':count Hun-cheng', 
    'a_minute' => ':count Hun-cheng', 
 
    'second' => ':count Bió', 
    's' => ':count Bió', 
    'a_second' => ':count Bió', 
]); 
 
 |