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