<?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. 
 */ 
\Symfony\Component\Translation\PluralizationRules::set(function ($number) { 
    return $number === 1 ? 0 : 1; 
}, 'mi'); 
 
/* 
 * Authors: 
 * - François B 
 * - John Corrigan 
 * - François B 
 */ 
return [ 
    'year' => ':count tau', 
    'a_year' => 'he tau|:count tau', 
    'month' => ':count marama', 
    'a_month' => 'he marama|:count marama', 
    'week' => ':count wiki', 
    'a_week' => 'he wiki|:count wiki', 
    'day' => ':count ra', 
    'a_day' => 'he ra|:count ra', 
    'hour' => ':count haora', 
    'a_hour' => 'te haora|:count haora', 
    'minute' => ':count meneti', 
    'a_minute' => 'he meneti|:count meneti', 
    'second' => ':count h?kona', 
    'a_second' => 'te h?kona ruarua|:count h?kona', 
    'ago' => ':time i mua', 
    'from_now' => 'i roto i :time', 
    'diff_yesterday' => 'inanahi', 
    'diff_tomorrow' => 'apopo', 
    'formats' => [ 
        'LT' => 'HH:mm', 
        'LTS' => 'HH:mm:ss', 
        'L' => 'DD/MM/YYYY', 
        'LL' => 'D MMMM YYYY', 
        'LLL' => 'D MMMM YYYY [i] HH:mm', 
        'LLLL' => 'dddd, D MMMM YYYY [i] HH:mm', 
    ], 
    'calendar' => [ 
        'sameDay' => '[i teie mahana, i] LT', 
        'nextDay' => '[apopo i] LT', 
        'nextWeek' => 'dddd [i] LT', 
        'lastDay' => '[inanahi i] LT', 
        'lastWeek' => 'dddd [whakamutunga i] LT', 
        'sameElse' => 'L', 
    ], 
    'ordinal' => ':numberş', 
    'months' => ['Kohi-t?te', 'Hui-tanguru', 'Pout?-te-rangi', 'Paenga-wh?wh?', 'Haratua', 'Pipiri', 'H?ngoingoi', 'Here-turi-k?k?', 'Mahuru', 'Whiringa-?-nuku', 'Whiringa-?-rangi', 'Hakihea'], 
    'months_short' => ['Kohi', 'Hui', 'Pou', 'Pae', 'Hara', 'Pipi', 'H?ngoi', 'Here', 'Mahu', 'Whi-nu', 'Whi-ra', 'Haki'], 
    'weekdays' => ['R?tapu', 'Mane', 'T?rei', 'Wenerei', 'T?ite', 'Paraire', 'H?tarei'], 
    'weekdays_short' => ['Ta', 'Ma', 'T?', 'We', 'T?i', 'Pa', 'H?'], 
    'weekdays_min' => ['Ta', 'Ma', 'T?', 'We', 'T?i', 'Pa', 'H?'], 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 4, 
    'list' => [', ', ' me te '], 
]; 
 
 |