PNG

   IHDR         ๔xิ๚   sBIT|d   	pHYs  ฤ  ฤ+   tEXtSoftware www.inkscape.org๎<  ,เtEXtComment 
<?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.
 */

/*
 * Authors:
 * - Daniel Cohen Gindi
 * - JD Isaacks
 * - Itai Nathaniel
 * - GabMic
 * - Yaakov Dahan (yakidahan)
 */
return [
    'year' => 'ืฉื ื|{2}ืฉื ืชืืื|:count ืฉื ืื',
    'y' => 'ืฉื ื|:count ืฉื ืณ',
    'month' => 'ืืืืฉ|{2}ืืืืฉืืื|:count ืืืืฉืื',
    'm' => 'ืืืืฉ|:count ืืืณ',
    'week' => 'ืฉืืืข|{2}ืฉืืืขืืื|:count ืฉืืืขืืช',
    'w' => 'ืฉืืืข|:count ืฉืืณ',
    'day' => 'ืืื|{2}ืืืืืื|:count ืืืื',
    'd' => 'ืืื|:count ืืืณ',
    'hour' => 'ืฉืขื|{2}ืฉืขืชืืื|:count ืฉืขืืช',
    'h' => 'ืฉืขื|:count ืฉืขืณ',
    'minute' => 'ืืงื|{2}ืฉืชื ืืงืืช|:count ืืงืืช',
    'min' => 'ืืงื|:count ืืงืณ',
    'second' => 'ืฉื ืืื|:count ืฉื ืืืช',
    'a_second' => 'ืืื ืฉื ืืืช|:count ืฉื ืืืช',
    's' => 'ืฉื ืื|:count ืฉื ืณ',
    'ago' => 'ืืคื ื :time',
    'from_now' => 'ืืขืื :time ืืขืืฉืื',
    'after' => 'ืืืจื :time',
    'before' => 'ืืคื ื :time',
    'diff_now' => 'ืขืืฉืื',
    'diff_today' => 'ืืืื',
    'diff_today_regexp' => 'ืืืื(?:\\s+ืึพ)?',
    'diff_yesterday' => 'ืืชืืื',
    'diff_yesterday_regexp' => 'ืืชืืื(?:\\s+ืึพ)?',
    'diff_tomorrow' => 'ืืืจ',
    'diff_tomorrow_regexp' => 'ืืืจ(?:\\s+ืึพ)?',
    'formats' => [
        'LT' => 'HH:mm',
        'LTS' => 'HH:mm:ss',
        'L' => 'DD/MM/YYYY',
        'LL' => 'D [ื]MMMM YYYY',
        'LLL' => 'D [ื]MMMM YYYY HH:mm',
        'LLLL' => 'dddd, D [ื]MMMM YYYY HH:mm',
    ],
    'calendar' => [
        'sameDay' => '[ืืืื ืึพ]LT',
        'nextDay' => '[ืืืจ ืึพ]LT',
        'nextWeek' => 'dddd [ืืฉืขื] LT',
        'lastDay' => '[ืืชืืื ืึพ]LT',
        'lastWeek' => '[ืืืื] dddd [ืืืืจืื ืืฉืขื] LT',
        'sameElse' => 'L',
    ],
    'meridiem' => function ($hour, $minute, $isLower) {
        if ($hour < 5) {
            return 'ืืคื ืืช ืืืงืจ';
        }
        if ($hour < 10) {
            return 'ืืืืงืจ';
        }
        if ($hour < 12) {
            return $isLower ? 'ืืคื ื"ืฆ' : 'ืืคื ื ืืฆืืจืืื';
        }
        if ($hour < 18) {
            return $isLower ? 'ืืื"ืฆ' : 'ืืืจื ืืฆืืจืืื';
        }

        return 'ืืขืจื';
    },
    'months' => ['ืื ืืืจ', 'ืคืืจืืืจ', 'ืืจืฅ', 'ืืคืจืื', 'ืืื', 'ืืื ื', 'ืืืื', 'ืืืืืกื', 'ืกืคืืืืจ', 'ืืืงืืืืจ', 'ื ืืืืืจ', 'ืืฆืืืจ'],
    'months_short' => ['ืื ืืณ', 'ืคืืจืณ', 'ืืจืฅ', 'ืืคืจืณ', 'ืืื', 'ืืื ื', 'ืืืื', 'ืืืืณ', 'ืกืคืืณ', 'ืืืงืณ', 'ื ืืืณ', 'ืืฆืืณ'],
    'weekdays' => ['ืจืืฉืื', 'ืฉื ื', 'ืฉืืืฉื', 'ืจืืืขื', 'ืืืืฉื', 'ืฉืืฉื', 'ืฉืืช'],
    'weekdays_short' => ['ืืณ', 'ืืณ', 'ืืณ', 'ืืณ', 'ืืณ', 'ืืณ', 'ืฉืณ'],
    'weekdays_min' => ['ื', 'ื', 'ื', 'ื', 'ื', 'ื', 'ืฉ'],
    'list' => [', ', ' ื -'],
    'weekend' => [5, 6],
];
