blob: 6ad3604253eac10d0ff411751e19007e1082c5cc [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 'months' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],
13 'months_short' => ['ژانویه', 'فوریه', 'مارس', 'آوریل', 'مه', 'ژوئن', 'ژوئیه', 'اوت', 'سپتامبر', 'اکتبر', 'نوامبر', 'دسامبر'],
14 'first_day_of_week' => 6,
15 'weekend' => [5, 5],
16 'formats' => [
17 'LT' => 'HH:mm',
18 'LTS' => 'HH:mm:ss',
19 'L' => 'YYYY-MM-dd',
20 'LL' => 'YYYY MMM D',
21 'LLL' => 'YYYY MMMM D HH:mm',
22 'LLLL' => 'YYYY MMMM D, dddd HH:mm',
23 ],
24]);