blob: 92ba844c5c06d229ddf2e7fa279880f106a2172c [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 bug-glibc-locales@gnu.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 'week' => ':count आदित्यवार', // less reliable
33 'w' => ':count आदित्यवार', // less reliable
34 'a_week' => ':count आदित्यवार', // less reliable
35
36 'minute' => ':count नोंद', // less reliable
37 'min' => ':count नोंद', // less reliable
38 'a_minute' => ':count नोंद', // less reliable
39
40 'second' => ':count तेंको', // less reliable
41 's' => ':count तेंको', // less reliable
42 'a_second' => ':count तेंको', // less reliable
43
44 'month' => ':count मैनो',
45 'm' => ':count मैनो',
46 'a_month' => ':count मैनो',
47
48 'day' => ':count दिवसु',
49 'd' => ':count दिवसु',
50 'a_day' => ':count दिवसु',
51
52 'hour' => ':count घंते',
53 'h' => ':count घंते',
54 'a_hour' => ':count घंते',
55]);