33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Carbon package.
|
|
*
|
|
* (c) Brian Nesbitt <brian@nesbot.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
/**
|
|
* Translation messages. See http://symfony.com/doc/current/book/translation.html
|
|
* for possible formats.
|
|
*
|
|
*/
|
|
/**
|
|
* Extracted from https://github.com/jenssegers/laravel-date/blob/master/src/lang/ar/date.php
|
|
*/
|
|
|
|
return array(
|
|
'year' => '{0}سنة|{1}سنة|{2}سنتين|[3,10]:count سنوات|[11,Inf] سنة',
|
|
'month' => '{0}شهر|{1}شهر|{2}شهرين|[3,10]:count أشهر|[11,Inf] شهر',
|
|
'week' => '{0}أسبوع|{1}أسبوع|{2}أسبوعين|[3,10]:count أسابيع|[11,Inf] أسبوع',
|
|
'day' => '{0}يوم|{1}يوم|{2}يومين|[3,10]:count أيام|[11,Inf] يوم',
|
|
'hour' => '{0}ساعة|{1}ساعة|{2}ساعتين|[3,10]:count ساعات|[11,Inf] ساعة',
|
|
'minute' => '{0}دقيقة|{1}دقيقة|{2}دقيقتين|[3,10]:count دقائق|[11,Inf]:count دقيقة',
|
|
'second' => '{0}ثانية|{1}ثانية|{2}ثانيتين|[3,10]:count ثوان|[11,Inf] ثانية',
|
|
'ago' => 'منذ :time',
|
|
'from_now' => 'من الآن :time',
|
|
'after' => 'بعد :time',
|
|
'before' => 'قبل :time',
|
|
);
|