blob: 7c7872bcbba12e981dd13b61a437194282d063e6 [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 * - Josh Soref
15 * - Kaushik Thanki
16 * - Josh Soref
17 */
18return [
19 'year' => 'એક વર્ષ|:count વર્ષ',
20 'y' => ':countવર્ષ|:countવર્ષો',
21 'month' => 'એક મહિનો|:count મહિનો',
22 'm' => ':countમહિનો|:countમહિના',
23 'week' => ':count અઠવાડિયું|:count અઠવાડિયા',
24 'w' => ':countઅઠ.|:countઅઠ.',
25 'day' => 'એક દિવસ|:count દિવસ',
26 'd' => ':countદિ.|:countદિ.',
27 'hour' => 'એક કલાક|:count કલાક',
28 'h' => ':countક.|:countક.',
29 'minute' => 'એક મિનિટ|:count મિનિટ',
30 'min' => ':countમિ.|:countમિ.',
31 'second' => 'અમુક પળો|:count સેકંડ',
32 's' => ':countસે.|:countસે.',
33 'ago' => ':time પેહલા',
34 'from_now' => ':time મા',
35 'after' => ':time પછી',
36 'before' => ':time પહેલા',
37 'diff_now' => 'હમણાં',
38 'diff_today' => 'આજ',
39 'diff_yesterday' => 'ગઇકાલે',
40 'diff_tomorrow' => 'કાલે',
41 'formats' => [
42 'LT' => 'A h:mm વાગ્યે',
43 'LTS' => 'A h:mm:ss વાગ્યે',
44 'L' => 'DD/MM/YYYY',
45 'LL' => 'D MMMM YYYY',
46 'LLL' => 'D MMMM YYYY, A h:mm વાગ્યે',
47 'LLLL' => 'dddd, D MMMM YYYY, A h:mm વાગ્યે',
48 ],
49 'calendar' => [
50 'sameDay' => '[આજ] LT',
51 'nextDay' => '[કાલે] LT',
52 'nextWeek' => 'dddd, LT',
53 'lastDay' => '[ગઇકાલે] LT',
54 'lastWeek' => '[પાછલા] dddd, LT',
55 'sameElse' => 'L',
56 ],
57 'meridiem' => function ($hour) {
58 if ($hour < 4) {
59 return 'રાત';
60 }
61 if ($hour < 10) {
62 return 'સવાર';
63 }
64 if ($hour < 17) {
65 return 'બપોર';
66 }
67 if ($hour < 20) {
68 return 'સાંજ';
69 }
70
71 return 'રાત';
72 },
73 'months' => ['જાન્યુઆરી', 'ફેબ્રુઆરી', 'માર્ચ', 'એપ્રિલ', 'મે', 'જૂન', 'જુલાઈ', 'ઑગસ્ટ', 'સપ્ટેમ્બર', 'ઑક્ટ્બર', 'નવેમ્બર', 'ડિસેમ્બર'],
74 'months_short' => ['જાન્યુ.', 'ફેબ્રુ.', 'માર્ચ', 'એપ્રિ.', 'મે', 'જૂન', 'જુલા.', 'ઑગ.', 'સપ્ટે.', 'ઑક્ટ્.', 'નવે.', 'ડિસે.'],
75 'weekdays' => ['રવિવાર', 'સોમવાર', 'મંગળવાર', 'બુધ્વાર', 'ગુરુવાર', 'શુક્રવાર', 'શનિવાર'],
76 'weekdays_short' => ['રવિ', 'સોમ', 'મંગળ', 'બુધ્', 'ગુરુ', 'શુક્ર', 'શનિ'],
77 'weekdays_min' => ['ર', 'સો', 'મં', 'બુ', 'ગુ', 'શુ', 'શ'],
78 'list' => [', ', ' અને '],
79 'first_day_of_week' => 0,
80 'day_of_first_week_of_year' => 1,
81 'weekend' => [0, 0],
82];