| 
<?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;
 }, 'bm');
 
 /*
 * Authors:
 * - Estelle Comment
 */
 return [
 'year' => 'san :count',
 'a_year' => 'san kelen|san :count',
 'y' => 'san :count',
 'month' => 'kalo :count',
 'a_month' => 'kalo kelen|kalo :count',
 'm' => 'k. :count',
 'week' => 'd?g?kun :count',
 'a_week' => 'd?g?kun kelen',
 'w' => 'd. :count',
 'day' => 'tile :count',
 'd' => 't. :count',
 'a_day' => 'tile kelen|tile :count',
 'hour' => 'l?r? :count',
 'a_hour' => 'l?r? kelen|l?r? :count',
 'h' => 'l. :count',
 'minute' => 'miniti :count',
 'a_minute' => 'miniti kelen|miniti :count',
 'min' => 'm. :count',
 'second' => 'sekondi :count',
 'a_second' => 'sanga dama dama|sekondi :count',
 's' => 'sek. :count',
 'ago' => 'a b? :time b?',
 'from_now' => ':time k?n?',
 'formats' => [
 'LT' => 'HH:mm',
 'LTS' => 'HH:mm:ss',
 'L' => 'DD/MM/YYYY',
 'LL' => 'MMMM [tile] D [san] YYYY',
 'LLL' => 'MMMM [tile] D [san] YYYY [l?r?] HH:mm',
 'LLLL' => 'dddd MMMM [tile] D [san] YYYY [l?r?] HH:mm',
 ],
 'calendar' => [
 'sameDay' => '[Bi l?r?] LT',
 'nextDay' => '[Sini l?r?] LT',
 'nextWeek' => 'dddd [don l?r?] LT',
 'lastDay' => '[Kunu l?r?] LT',
 'lastWeek' => 'dddd [t?m?nen l?r?] LT',
 'sameElse' => 'L',
 ],
 'months' => ['Zanwuyekalo', 'Fewuruyekalo', 'Marisikalo', 'Awirilikalo', 'M?kalo', 'Zuw?nkalo', 'Zuluyekalo', 'Utikalo', 'S?tanburukalo', '?kut?burukalo', 'Nowanburukalo', 'Desanburukalo'],
 'months_short' => ['Zan', 'Few', 'Mar', 'Awi', 'M?', 'Zuw', 'Zul', 'Uti', 'S?t', '?ku', 'Now', 'Des'],
 'weekdays' => ['Kari', 'Nt?n?n', 'Tarata', 'Araba', 'Alamisa', 'Juma', 'Sibiri'],
 'weekdays_short' => ['Kar', 'Nt?', 'Tar', 'Ara', 'Ala', 'Jum', 'Sib'],
 'weekdays_min' => ['Ka', 'Nt', 'Ta', 'Ar', 'Al', 'Ju', 'Si'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 4,
 'list' => [', ', ' ni '],
 ];
 
 |