blob: ac38218f336cf323d5ece573098276feb452420e [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 * - Kunal Marwaha
15 * - Josh Soref
16 * - François B
17 * - kc
18 */
19return [
20 'year' => ':count సంవత్సరం|:count సంవత్సరాలు',
21 'a_year' => 'ఒక సంవత్సరం|:count సంవత్సరాలు',
22 'y' => ':count సం.',
23 'month' => ':count నెల|:count నెలలు',
24 'a_month' => 'ఒక నెల|:count నెలలు',
25 'm' => ':count నెల|:count నెల.',
26 'week' => ':count వారం|:count వారాలు',
27 'a_week' => 'ఒక వారం|:count వారాలు',
28 'w' => ':count వార.|:count వారా.',
29 'day' => ':count రోజు|:count రోజులు',
30 'a_day' => 'ఒక రోజు|:count రోజులు',
31 'd' => ':count రోజు|:count రోజు.',
32 'hour' => ':count గంట|:count గంటలు',
33 'a_hour' => 'ఒక గంట|:count గంటలు',
34 'h' => ':count గం.',
35 'minute' => ':count నిమిషం|:count నిమిషాలు',
36 'a_minute' => 'ఒక నిమిషం|:count నిమిషాలు',
37 'min' => ':count నిమి.',
38 'second' => ':count సెకను|:count సెకన్లు',
39 'a_second' => 'కొన్ని క్షణాలు|:count సెకన్లు',
40 's' => ':count సెక.',
41 'ago' => ':time క్రితం',
42 'from_now' => ':time లో',
43 'diff_now' => 'ప్రస్తుతం',
44 'diff_today' => 'నేడు',
45 'diff_yesterday' => 'నిన్న',
46 'diff_tomorrow' => 'రేపు',
47 'formats' => [
48 'LT' => 'A h:mm',
49 'LTS' => 'A h:mm:ss',
50 'L' => 'DD/MM/YYYY',
51 'LL' => 'D MMMM YYYY',
52 'LLL' => 'D MMMM YYYY, A h:mm',
53 'LLLL' => 'dddd, D MMMM YYYY, A h:mm',
54 ],
55 'calendar' => [
56 'sameDay' => '[నేడు] LT',
57 'nextDay' => '[రేపు] LT',
58 'nextWeek' => 'dddd, LT',
59 'lastDay' => '[నిన్న] LT',
60 'lastWeek' => '[గత] dddd, LT',
61 'sameElse' => 'L',
62 ],
63 'ordinal' => ':numberవ',
64 'meridiem' => function ($hour) {
65 if ($hour < 4) {
66 return 'రాత్రి';
67 }
68 if ($hour < 10) {
69 return 'ఉదయం';
70 }
71 if ($hour < 17) {
72 return 'మధ్యాహ్నం';
73 }
74 if ($hour < 20) {
75 return 'సాయంత్రం';
76 }
77
78 return ' రాత్రి';
79 },
80 'months' => ['జనవరి', 'ఫిబ్రవరి', 'మార్చి', 'ఏప్రిల్', 'మే', 'జూన్', 'జూలై', 'ఆగస్టు', 'సెప్టెంబర్', 'అక్టోబర్', 'నవంబర్', 'డిసెంబర్'],
81 'months_short' => ['జన.', 'ఫిబ్ర.', 'మార్చి', 'ఏప్రి.', 'మే', 'జూన్', 'జూలై', 'ఆగ.', 'సెప్.', 'అక్టో.', 'నవ.', 'డిసె.'],
82 'weekdays' => ['ఆదివారం', 'సోమవారం', 'మంగళవారం', 'బుధవారం', 'గురువారం', 'శుక్రవారం', 'శనివారం'],
83 'weekdays_short' => ['ఆది', 'సోమ', 'మంగళ', 'బుధ', 'గురు', 'శుక్ర', 'శని'],
84 'weekdays_min' => ['ఆ', 'సో', 'మం', 'బు', 'గు', 'శు', 'శ'],
85 'list' => ', ',
86 'first_day_of_week' => 0,
87 'day_of_first_week_of_year' => 1,
88 'weekend' => [0, 0],
89];