| 
<?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' => 'DD/MM/YY',
 ],
 'months' => ['Jen?war?', 'Febr?war?', 'Maach?', 'Eprel', 'Mee', 'Juun', 'Jula?', '?g??st', 'Septemba', '?ktoba', 'Novemba', 'Disemba'],
 'months_short' => ['Jen', 'Feb', 'Maa', 'Epr', 'Mee', 'Juu', 'Jul', '?g?', 'Sep', '?kt', 'Nov', 'Dis'],
 'weekdays' => ['s?nde', 'm?nde', 'tuzde', 'wenzde', 't?sde', 'fra?de', 'sat?de'],
 'weekdays_short' => ['s?n', 'm?n', 'tuz', 'wen', 't?s', 'fra', 'sat'],
 'weekdays_min' => ['s?n', 'm?n', 'tuz', 'wen', 't?s', 'fra', 'sat'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 1,
 
 'year' => 'afo :count',
 'y' => 'afo :count',
 'a_year' => 'afo :count',
 
 'month' => 'önwa :count',
 'm' => 'önwa :count',
 'a_month' => 'önwa :count',
 
 'week' => 'izu :count',
 'w' => 'izu :count',
 'a_week' => 'izu :count',
 
 'day' => '?b?ch? :count',
 'd' => '?b?ch? :count',
 'a_day' => '?b?ch? :count',
 
 'hour' => 'awa :count',
 'h' => 'awa :count',
 'a_hour' => 'awa :count',
 
 'minute' => 'minit :count',
 'min' => 'minit :count',
 'a_minute' => 'minit :count',
 
 'second' => 'sek?nd :count',
 's' => 'sek?nd :count',
 'a_second' => 'sek?nd :count',
 ]);
 
 |