blob: 4aaeafd0c21a56ec750fcd7c9607fb7da3360a09 [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 * - Vikram-enyota
15 */
16return [
17 'year' => ':count वर्ष',
18 'y' => ':count वर्ष',
19 'month' => ':count महिना|:count महिने',
20 'm' => ':count महिना|:count महिने',
21 'week' => ':count आठवडा|:count आठवडे',
22 'w' => ':count आठवडा|:count आठवडे',
23 'day' => ':count दिवस',
24 'd' => ':count दिवस',
25 'hour' => ':count तास',
26 'h' => ':count तास',
27 'minute' => ':count मिनिटे',
28 'min' => ':count मिनिटे',
29 'second' => ':count सेकंद',
30 's' => ':count सेकंद',
31
32 'ago' => ':timeपूर्वी',
33 'from_now' => ':timeमध्ये',
34 'before' => ':timeपूर्वी',
35 'after' => ':timeनंतर',
36
37 'diff_now' => 'आत्ता',
38 'diff_today' => 'आज',
39 'diff_yesterday' => 'काल',
40 'diff_tomorrow' => 'उद्या',
41
42 'formats' => [
43 'LT' => 'A h:mm वाजता',
44 'LTS' => 'A h:mm:ss वाजता',
45 'L' => 'DD/MM/YYYY',
46 'LL' => 'D MMMM YYYY',
47 'LLL' => 'D MMMM YYYY, A h:mm वाजता',
48 'LLLL' => 'dddd, D MMMM YYYY, A h:mm वाजता',
49 ],
50
51 'calendar' => [
52 'sameDay' => '[आज] LT',
53 'nextDay' => '[उद्या] LT',
54 'nextWeek' => 'dddd, LT',
55 'lastDay' => '[काल] LT',
56 'lastWeek' => '[मागील] dddd, LT',
57 'sameElse' => 'L',
58 ],
59
60 'meridiem' => function ($hour) {
61 if ($hour < 4) {
62 return 'रात्री';
63 }
64 if ($hour < 10) {
65 return 'सकाळी';
66 }
67 if ($hour < 17) {
68 return 'दुपारी';
69 }
70 if ($hour < 20) {
71 return 'सायंकाळी';
72 }
73
74 return 'रात्री';
75 },
76
77 'months' => ['जानेवारी', 'फेब्रुवारी', 'मार्च', 'एप्रिल', 'मे', 'जून', 'जुलै', 'ऑगस्ट', 'सप्टेंबर', 'ऑक्टोबर', 'नोव्हेंबर', 'डिसेंबर'],
78 'months_short' => ['जाने.', 'फेब्रु.', 'मार्च.', 'एप्रि.', 'मे.', 'जून.', 'जुलै.', 'ऑग.', 'सप्टें.', 'ऑक्टो.', 'नोव्हें.', 'डिसें.'],
79 'weekdays' => ['रविवार', 'सोमवार', 'मंगळवार', 'बुधवार', 'गुरूवार', 'शुक्रवार', 'शनिवार'],
80 'weekdays_short' => ['रवि', 'सोम', 'मंगळ', 'बुध', 'गुरू', 'शुक्र', 'शनि'],
81 'weekdays_min' => ['र', 'सो', 'मं', 'बु', 'गु', 'शु', 'श'],
82 'list' => [', ', ' आणि '],
83 'first_day_of_week' => 0,
84 'day_of_first_week_of_year' => 1,
85 'weekend' => [0, 0],
86];