blob: 68719114ed2e07fc65d11ec220cd6f9c563b6374 [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 */
11return array_replace_recursive(require __DIR__.'/fa.php', [
12 'weekdays' => ['یکشنبه', 'دوشنبه', 'سه‌شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'],
13 'weekdays_short' => ['ی.', 'د.', 'س.', 'چ.', 'پ.', 'ج.', 'ش.'],
14 'weekdays_min' => ['ی.', 'د.', 'س.', 'چ.', 'پ.', 'ج.', 'ش.'],
15 'months' => ['جنوری', 'فبروری', 'مارچ', 'اپریل', 'می', 'جون', 'جولای', 'اگست', 'سپتمبر', 'اکتوبر', 'نومبر', 'دسمبر'],
16 'months_short' => ['جنو', 'فبر', 'مار', 'اپر', 'می', 'جون', 'جول', 'اگس', 'سپت', 'اکت', 'نوم', 'دسم'],
17 'first_day_of_week' => 6,
18 'weekend' => [4, 5],
19 'formats' => [
20 'LT' => 'HH:mm',
21 'LTS' => 'HH:mm:ss',
22 'L' => 'YYYY-MM-dd',
23 'LL' => 'YYYY MMM D',
24 'LLL' => 'YYYY MMMM D HH:mm',
25 'LLLL' => 'YYYY MMMM D, dddd HH:mm',
26 ],
27]);