v1.0.0 initial release
This commit is contained in:
+55
@@ -0,0 +1,55 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Authors:
|
||||
* - RockET Systems Emani Fakaotimanava-Lui emani@niue.nu
|
||||
*/
|
||||
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',
|
||||
]);
|
||||
Reference in New Issue
Block a user