blob: 45d430ef94968d52b5c46d6148d1ec3d8f6d2242 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - Red Hat Pune libc-alpha@sourceware.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'D/M/YY',
19 ],
20 'months' => ['জানুৱারি', 'ফেব্রুৱারি', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগষ্ট', 'সেপ্তেম্বর', 'ওক্তোবর', 'নবেম্বর', 'ডিসেম্বর'],
21 'months_short' => ['জান', 'ফেব', 'মার', 'এপ্রি', 'মে', 'জুন', 'জুল', 'আগ', 'সেপ', 'ওক্ত', 'নবে', 'ডিস'],
22 'weekdays' => ['নোংমাইজিং', 'নিংথৌকাবা', 'লৈবাকপোকপা', 'য়ুমশকৈশা', 'শগোলশেন', 'ইরাই', 'থাংজ'],
23 'weekdays_short' => ['নোং', 'নিং', 'লৈবাক', 'য়ুম', 'শগোল', 'ইরা', 'থাং'],
24 'weekdays_min' => ['নোং', 'নিং', 'লৈবাক', 'য়ুম', 'শগোল', 'ইরা', 'থাং'],
25 'day_of_first_week_of_year' => 1,
26 'meridiem' => ['এ.ম.', 'প.ম.'],
27
28 'year' => ':count ইসিং', // less reliable
29 'y' => ':count ইসিং', // less reliable
30 'a_year' => ':count ইসিং', // less reliable
31
32 'second' => ':count ꯅꯤꯡꯊꯧꯀꯥꯕ', // less reliable
33 's' => ':count ꯅꯤꯡꯊꯧꯀꯥꯕ', // less reliable
34 'a_second' => ':count ꯅꯤꯡꯊꯧꯀꯥꯕ', // less reliable
35]);