blob: 48b203316b1a5250043cb9403ad3ad47682965ef [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 * - Philippe Vaucher
15 * - Tsutomu Kuroda
16 * - Punjab
17 */
18return [
19 'year' => 'ਇੱਕ ਸਾਲ|:count ਸਾਲ',
20 'month' => 'ਇੱਕ ਮਹੀਨਾ|:count ਮਹੀਨੇ',
21 'week' => 'ਹਫਤਾ|:count ਹਫ਼ਤੇ',
22 'day' => 'ਇੱਕ ਦਿਨ|:count ਦਿਨ',
23 'hour' => 'ਇੱਕ ਘੰਟਾ|:count ਘੰਟੇ',
24 'minute' => 'ਇਕ ਮਿੰਟ|:count ਮਿੰਟ',
25 'second' => 'ਕੁਝ ਸਕਿੰਟ|:count ਸਕਿੰਟ',
26 'ago' => ':time ਪਹਿਲਾਂ',
27 'from_now' => ':time ਵਿੱਚ',
28 'before' => ':time ਤੋਂ ਪਹਿਲਾਂ',
29 'after' => ':time ਤੋਂ ਬਾਅਦ',
30 'diff_now' => 'ਹੁਣ',
31 'diff_today' => 'ਅਜ',
32 'diff_yesterday' => 'ਕਲ',
33 'diff_tomorrow' => 'ਕਲ',
34 'formats' => [
35 'LT' => 'A h:mm ਵਜੇ',
36 'LTS' => 'A h:mm:ss ਵਜੇ',
37 'L' => 'DD/MM/YYYY',
38 'LL' => 'D MMMM YYYY',
39 'LLL' => 'D MMMM YYYY, A h:mm ਵਜੇ',
40 'LLLL' => 'dddd, D MMMM YYYY, A h:mm ਵਜੇ',
41 ],
42 'calendar' => [
43 'sameDay' => '[ਅਜ] LT',
44 'nextDay' => '[ਕਲ] LT',
45 'nextWeek' => '[ਅਗਲਾ] dddd, LT',
46 'lastDay' => '[ਕਲ] LT',
47 'lastWeek' => '[ਪਿਛਲੇ] dddd, LT',
48 'sameElse' => 'L',
49 ],
50 'meridiem' => function ($hour) {
51 if ($hour < 4) {
52 return 'ਰਾਤ';
53 }
54 if ($hour < 10) {
55 return 'ਸਵੇਰ';
56 }
57 if ($hour < 17) {
58 return 'ਦੁਪਹਿਰ';
59 }
60 if ($hour < 20) {
61 return 'ਸ਼ਾਮ';
62 }
63
64 return 'ਰਾਤ';
65 },
66 'months' => ['ਜਨਵਰੀ', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ਅਪ੍ਰੈਲ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'],
67 'months_short' => ['ਜਨਵਰੀ', 'ਫ਼ਰਵਰੀ', 'ਮਾਰਚ', 'ਅਪ੍ਰੈਲ', 'ਮਈ', 'ਜੂਨ', 'ਜੁਲਾਈ', 'ਅਗਸਤ', 'ਸਤੰਬਰ', 'ਅਕਤੂਬਰ', 'ਨਵੰਬਰ', 'ਦਸੰਬਰ'],
68 'weekdays' => ['ਐਤਵਾਰ', 'ਸੋਮਵਾਰ', 'ਮੰਗਲਵਾਰ', 'ਬੁਧਵਾਰ', 'ਵੀਰਵਾਰ', 'ਸ਼ੁੱਕਰਵਾਰ', 'ਸ਼ਨੀਚਰਵਾਰ'],
69 'weekdays_short' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁਧ', 'ਵੀਰ', 'ਸ਼ੁਕਰ', 'ਸ਼ਨੀ'],
70 'weekdays_min' => ['ਐਤ', 'ਸੋਮ', 'ਮੰਗਲ', 'ਬੁਧ', 'ਵੀਰ', 'ਸ਼ੁਕਰ', 'ਸ਼ਨੀ'],
71 'first_day_of_week' => 0,
72 'day_of_first_week_of_year' => 1,
73 'list' => [', ', ' ਅਤੇ '],
74 'weekend' => [0, 0],
75 'alt_numbers' => ['੦', '੧', '੨', '੩', '੪', '੫', '੬', '੭', '੮', '੯'],
76];