blob: 2ff20e0e66f3ec8c03d800be3d30e1539df82888 [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 * - IndLinux.org, Samsung Electronics Co., Ltd. alexey.merzlyakov@samsung.com
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 'month' => ':count ಮೀನ್', // less reliable
33 'm' => ':count ಮೀನ್', // less reliable
34 'a_month' => ':count ಮೀನ್', // less reliable
35
36 'day' => ':count ಸುಗ್ಗಿ', // less reliable
37 'd' => ':count ಸುಗ್ಗಿ', // less reliable
38 'a_day' => ':count ಸುಗ್ಗಿ', // less reliable
39]);