<?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: 
 * - RockET Systems Emani Fakaotimanava-Lui [email protected] 
 */ 
return array_replace_recursive(require __DIR__.'/en.php', [ 
    'formats' => [ 
        'L' => 'DD/MM/YY', 
    ], 
    'months' => ['Ianuali', 'Fepuali', 'Masi', 'Apelila', 'Me', 'Iuni', 'Iulai', 'Aokuso', 'Sepetema', 'Oketopa', 'Novema', 'Tesemo'], 
    'months_short' => ['Ian', 'Fep', 'Mas', 'Ape', 'Me', 'Iun', 'Iul', 'Aok', 'Sep', 'Oke', 'Nov', 'Tes'], 
    'weekdays' => ['Aho Tapu', 'Aho Gofua', 'Aho Ua', 'Aho Lotu', 'Aho Tuloto', 'Aho Falaile', 'Aho Faiumu'], 
    'weekdays_short' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'], 
    'weekdays_min' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'], 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 1, 
 
    'year' => ':count tau', 
    'y' => ':count tau', 
    'a_year' => ':count tau', 
 
    'month' => ':count mahina', 
    'm' => ':count mahina', 
    'a_month' => ':count mahina', 
 
    'week' => ':count faahi tapu', 
    'w' => ':count faahi tapu', 
    'a_week' => ':count faahi tapu', 
 
    'day' => ':count aho', 
    'd' => ':count aho', 
    'a_day' => ':count aho', 
 
    'hour' => ':count e tul?', 
    'h' => ':count e tul?', 
    'a_hour' => ':count e tul?', 
 
    'minute' => ':count minuti', 
    'min' => ':count minuti', 
    'a_minute' => ':count minuti', 
 
    'second' => ':count sekone', 
    's' => ':count sekone', 
    'a_second' => ':count sekone', 
]); 
 
 |