blob: bc54f36313919383a2bb63d3c4d9fe4f44065029 [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 * - bhashaghar@googlegroups.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 'hour' => ':count मौसम',
29 'h' => ':count मौसम',
30 'a_hour' => ':count मौसम',
31
32 'minute' => ':count कला',
33 'min' => ':count कला',
34 'a_minute' => ':count कला',
35
36 'second' => ':count सोमार',
37 's' => ':count सोमार',
38 'a_second' => ':count सोमार',
39
40 'year' => ':count साल',
41 'y' => ':count साल',
42 'a_year' => ':count साल',
43
44 'month' => ':count महिना',
45 'm' => ':count महिना',
46 'a_month' => ':count महिना',
47
48 'week' => ':count सप्ताह',
49 'w' => ':count सप्ताह',
50 'a_week' => ':count सप्ताह',
51
52 'day' => ':count दिन',
53 'd' => ':count दिन',
54 'a_day' => ':count दिन',
55]);