<?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.
*/
return array_replace_recursive(require __DIR__.'/en.php', [
'meridiem' => ['Kiroko', 'Hwa?-in?'],
'weekdays' => ['Kiumia', 'Njumatat?', 'Njumaine', 'Njumatana', 'Aramithi', 'Njumaa', 'Njumamothi'],
'weekdays_short' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'],
'weekdays_min' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'],
'months' => ['Njenuar?', 'Mwere wa ker?', 'Mwere wa gatat?', 'Mwere wa kana', 'Mwere wa gatano', 'Mwere wa gatandat?', 'Mwere wa m?gwanja', 'Mwere wa kanana', 'Mwere wa kenda', 'Mwere wa ik?mi', 'Mwere wa ik?mi na ?mwe', 'Ndithemba'],
'months_short' => ['JEN', 'WKR', 'WGT', 'WKN', 'WTN', 'WTD', 'WMJ', 'WNN', 'WKD', 'WIK', 'WMW', 'DIT'],
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD/MM/YYYY',
'LL' => 'D MMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
'year' => ':count m?aka', // less reliable
'y' => ':count m?aka', // less reliable
'a_year' => ':count m?aka', // less reliable
'month' => ':count mweri', // less reliable
'm' => ':count mweri', // less reliable
'a_month' => ':count mweri', // less reliable
'week' => ':count kiumia', // less reliable
'w' => ':count kiumia', // less reliable
'a_week' => ':count kiumia', // less reliable
'day' => ':count m?thenya', // less reliable
'd' => ':count m?thenya', // less reliable
'a_day' => ':count m?thenya', // less reliable
'hour' => ':count thaa', // less reliable
'h' => ':count thaa', // less reliable
'a_hour' => ':count thaa', // less reliable
'minute' => ':count mundu', // less reliable
'min' => ':count mundu', // less reliable
'a_minute' => ':count mundu', // less reliable
'second' => ':count igego', // less reliable
's' => ':count igego', // less reliable
'a_second' => ':count igego', // less reliable
]);
|