blob: e55aff28ebc88ace25890b2858d5095719a1f84f [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 * - Sawood Alam
39 * - Mehshan
40 * - Philippe Vaucher
41 * - Tsutomu Kuroda
42 * - tjku
43 * - Zaid Akram
44 * - Max Melentiev
45 * - hafezdivandari
46 * - Hossein Jabbari
47 * - nimamo
48 */
49return [
50 'year' => 'ایک سال|:count سال',
51 'month' => 'ایک ماہ|:count ماہ',
52 'week' => ':count ہفتے',
53 'day' => 'ایک دن|:count دن',
54 'hour' => 'ایک گھنٹہ|:count گھنٹے',
55 'minute' => 'ایک منٹ|:count منٹ',
56 'second' => 'چند سیکنڈ|:count سیکنڈ',
57 'ago' => ':time قبل',
58 'from_now' => ':time بعد',
59 'after' => ':time بعد',
60 'before' => ':time پہلے',
61 'diff_now' => 'اب',
62 'diff_today' => 'آج',
63 'diff_today_regexp' => 'آج(?:\\s+بوقت)?',
64 'diff_yesterday' => 'گزشتہ کل',
65 'diff_yesterday_regexp' => 'گذشتہ(?:\\s+روز)?(?:\\s+بوقت)?',
66 'diff_tomorrow' => 'آئندہ کل',
67 'diff_tomorrow_regexp' => 'کل(?:\\s+بوقت)?',
68 'formats' => [
69 'LT' => 'HH:mm',
70 'LTS' => 'HH:mm:ss',
71 'L' => 'DD/MM/YYYY',
72 'LL' => 'D MMMM YYYY',
73 'LLL' => 'D MMMM YYYY HH:mm',
74 'LLLL' => 'dddd، D MMMM YYYY HH:mm',
75 ],
76 'calendar' => [
77 'sameDay' => '[آج بوقت] LT',
78 'nextDay' => '[کل بوقت] LT',
79 'nextWeek' => 'dddd [بوقت] LT',
80 'lastDay' => '[گذشتہ روز بوقت] LT',
81 'lastWeek' => '[گذشتہ] dddd [بوقت] LT',
82 'sameElse' => 'L',
83 ],
84 'meridiem' => ['صبح', 'شام'],
85 'months' => $months,
86 'months_short' => $months,
87 'weekdays' => $weekdays,
88 'weekdays_short' => $weekdays,
89 'weekdays_min' => $weekdays,
90 'first_day_of_week' => 1,
91 'day_of_first_week_of_year' => 4,
92 'list' => ['، ', ' اور '],
93];