blob: 5fbc3dba35ccd54ac18501d6a4dc056effd58bb4 [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 * - Amitakhya Phukan, Red Hat bug-glibc@gnu.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'D-MM-YYYY',
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 বছৰ',
29 'y' => ':count বছৰ',
30 'a_year' => ':count বছৰ',
31
32 'month' => ':count মাহ',
33 'm' => ':count মাহ',
34 'a_month' => ':count মাহ',
35
36 'week' => ':count সপ্তাহ',
37 'w' => ':count সপ্তাহ',
38 'a_week' => ':count সপ্তাহ',
39
40 'day' => ':count বাৰ',
41 'd' => ':count বাৰ',
42 'a_day' => ':count বাৰ',
43
44 'hour' => ':count ঘণ্টা',
45 'h' => ':count ঘণ্টা',
46 'a_hour' => ':count ঘণ্টা',
47
48 'minute' => ':count মিনিট',
49 'min' => ':count মিনিট',
50 'a_minute' => ':count মিনিট',
51
52 'second' => ':count দ্বিতীয়',
53 's' => ':count দ্বিতীয়',
54 'a_second' => ':count দ্বিতীয়',
55]);