| 
<?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;
 }, 'yo');
 
 /*
 * Authors:
 * - François B
 * - Atolagbe Abisoye
 */
 return [
 'year' => '?du?n :count',
 'a_year' => '?du?n kan|?du?n :count',
 'month' => 'osu? :count',
 'a_month' => 'osu? kan|osu? :count',
 'week' => '?s? :count',
 'a_week' => '?s? kan|?s? :count',
 'day' => '?j?? :count',
 'a_day' => '?j?? kan|?j?? :count',
 'hour' => 'wa?kati :count',
 'a_hour' => 'wa?kati kan|wa?kati :count',
 'minute' => 'i?s?ju? :count',
 'a_minute' => 'i?s?ju? kan|i?s?ju? :count',
 'second' => 'iaaya? :count',
 'a_second' => 'i?s?ju? aaya? die|aaya? :count',
 'ago' => ':time k?ja?',
 'from_now' => 'ni? :time',
 'diff_yesterday' => 'A?na',
 'diff_tomorrow' => '??la',
 'formats' => [
 'LT' => 'h:mm A',
 'LTS' => 'h:mm:ss A',
 'L' => 'DD/MM/YYYY',
 'LL' => 'D MMMM YYYY',
 'LLL' => 'D MMMM YYYY h:mm A',
 'LLLL' => 'dddd, D MMMM YYYY h:mm A',
 ],
 'calendar' => [
 'sameDay' => '[O?ni? ni] LT',
 'nextDay' => '[??la ni] LT',
 'nextWeek' => 'dddd [?s?? to?n\'b?] [ni] LT',
 'lastDay' => '[A?na ni] LT',
 'lastWeek' => 'dddd [?s?? to?l??] [ni] LT',
 'sameElse' => 'L',
 ],
 'ordinal' => '?j?? :number',
 'months' => ['S??r??', 'E?re?le?', '?r??na?', 'I?gbe?', 'E?bibi', 'O?ku?du', 'Ag?mo', 'O?gu?n', 'Owewe', '??wa?ra?', 'Be?lu?', '??p???'],
 'months_short' => ['S??r', 'E?rl', '?rn', 'I?gb', 'E?bi', 'O?ku?', 'Ag?', 'O?gu?', 'Owe', '??wa?', 'Be?l', '??p???'],
 'weekdays' => ['A?i?ku?', 'Aje?', 'I?s??gun', '?j??ru?', '?j??b?', '?ti?', 'A?ba?m??ta'],
 'weekdays_short' => ['A?i?k', 'Aje?', 'I?s??', '?jr', '?jb', '?ti?', 'A?ba?'],
 'weekdays_min' => ['A?i?', 'Aj', 'I?s', '?r', '?b', '?t', 'A?b'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 4,
 'meridiem' => ['Àár??', '??sán'],
 ];
 
 |