blob: cfda9a6367d844dfe886b247d309b3b17c588cd1 [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 * - The Debian project Christian Perrier bubulle@debian.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'D-MM-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 'minute' => ':count होरा', // less reliable
29 'min' => ':count होरा', // less reliable
30 'a_minute' => ':count होरा', // less reliable
31
32 'year' => ':count वर्ष',
33 'y' => ':count वर्ष',
34 'a_year' => ':count वर्ष',
35
36 'month' => ':count मास',
37 'm' => ':count मास',
38 'a_month' => ':count मास',
39
40 'week' => ':count सप्ताहः saptahaĥ',
41 'w' => ':count सप्ताहः saptahaĥ',
42 'a_week' => ':count सप्ताहः saptahaĥ',
43
44 'day' => ':count दिन',
45 'd' => ':count दिन',
46 'a_day' => ':count दिन',
47
48 'hour' => ':count घण्टा',
49 'h' => ':count घण्टा',
50 'a_hour' => ':count घण्टा',
51
52 'second' => ':count द्वितीयः',
53 's' => ':count द्वितीयः',
54 'a_second' => ':count द्वितीयः',
55]);