blob: ad8c0009d8ba2dda91181d4daf55bd970e56a1c7 [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$months = [
12 'جنوري',
13 'فيبروري',
14 'مارچ',
15 'اپريل',
16 'مئي',
17 'جون',
18 'جولاءِ',
19 'آگسٽ',
20 'سيپٽمبر',
21 'آڪٽوبر',
22 'نومبر',
23 'ڊسمبر',
24];
25
26$weekdays = [
27 'آچر',
28 'سومر',
29 'اڱارو',
30 'اربع',
31 'خميس',
32 'جمع',
33 'ڇنڇر',
34];
35
36/*
37 * Authors:
38 * - Narain Sagar
39 * - Sawood Alam
40 * - Narain Sagar
41 */
42return [
43 'year' => '{1}'.'هڪ سال'.'|:count '.'سال',
44 'month' => '{1}'.'هڪ مهينو'.'|:count '.'مهينا',
45 'week' => '{1}'.'ھڪ ھفتو'.'|:count '.'هفتا',
46 'day' => '{1}'.'هڪ ڏينهن'.'|:count '.'ڏينهن',
47 'hour' => '{1}'.'هڪ ڪلاڪ'.'|:count '.'ڪلاڪ',
48 'minute' => '{1}'.'هڪ منٽ'.'|:count '.'منٽ',
49 'second' => '{1}'.'چند سيڪنڊ'.'|:count '.'سيڪنڊ',
50 'ago' => ':time اڳ',
51 'from_now' => ':time پوء',
52 'diff_yesterday' => 'ڪالهه',
53 'diff_today' => 'اڄ',
54 'diff_tomorrow' => 'سڀاڻي',
55 'formats' => [
56 'LT' => 'HH:mm',
57 'LTS' => 'HH:mm:ss',
58 'L' => 'DD/MM/YYYY',
59 'LL' => 'D MMMM YYYY',
60 'LLL' => 'D MMMM YYYY HH:mm',
61 'LLLL' => 'dddd، D MMMM YYYY HH:mm',
62 ],
63 'calendar' => [
64 'sameDay' => '[اڄ] LT',
65 'nextDay' => '[سڀاڻي] LT',
66 'nextWeek' => 'dddd [اڳين هفتي تي] LT',
67 'lastDay' => '[ڪالهه] LT',
68 'lastWeek' => '[گزريل هفتي] dddd [تي] LT',
69 'sameElse' => 'L',
70 ],
71 'meridiem' => ['صبح', 'شام'],
72 'months' => $months,
73 'months_short' => $months,
74 'weekdays' => $weekdays,
75 'weekdays_short' => $weekdays,
76 'weekdays_min' => $weekdays,
77 'first_day_of_week' => 1,
78 'day_of_first_week_of_year' => 4,
79 'list' => ['، ', ' ۽ '],
80];