blob: 2583bcf866c4a2e0edf4e756c312644ddb84dfa5 [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 */
11return array_replace_recursive(require __DIR__.'/ne.php', [
12 'formats' => [
13 'LT' => 'h:mm a',
14 'LTS' => 'h:mm:ss a',
15 'L' => 'yy/M/d',
16 'LL' => 'YYYY MMM D',
17 'LLL' => 'YYYY MMMM D, h:mm a',
18 'LLLL' => 'YYYY MMMM D, dddd, h:mm a',
19 ],
20 'months' => ['जनवरी', 'फेब्रुअरी', 'मार्च', 'अप्रिल', 'मे', 'जुन', 'जुलाई', 'अगस्ट', 'सेप्टेम्बर', 'अक्टोबर', 'नोभेम्बर', 'डिसेम्बर'],
21 'months_short' => ['जनवरी', 'फेब्रुअरी', 'मार्च', 'अप्रिल', 'मे', 'जुन', 'जुलाई', 'अगस्ट', 'सेप्टेम्बर', 'अक्टोबर', 'नोभेम्बर', 'डिसेम्बर'],
22 'weekend' => [0, 0],
23 'meridiem' => ['पूर्वाह्न', 'अपराह्न'],
24]);