‰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:
 * - Josh Soref
 * - Alan Agius
 * - Erhan Gundogan
 * - FranÃ§ois B
 * - JD Isaacks
 * - Murat YÃ¼ksel
 * - Baran ÅžengÃ¼l
 * - Selami (selamialtin)
 * - TeomanBey
 */
return [
    'year' => ':count yÄ±l',
    'a_year' => '{1}bir yÄ±l|]1,Inf[:count yÄ±l',
    'y' => ':county',
    'month' => ':count ay',
    'a_month' => '{1}bir ay|]1,Inf[:count ay',
    'm' => ':countay',
    'week' => ':count hafta',
    'a_week' => '{1}bir hafta|]1,Inf[:count hafta',
    'w' => ':counth',
    'day' => ':count gÃ¼n',
    'a_day' => '{1}bir gÃ¼n|]1,Inf[:count gÃ¼n',
    'd' => ':countg',
    'hour' => ':count saat',
    'a_hour' => '{1}bir saat|]1,Inf[:count saat',
    'h' => ':countsa',
    'minute' => ':count dakika',
    'a_minute' => '{1}bir dakika|]1,Inf[:count dakika',
    'min' => ':countdk',
    'second' => ':count saniye',
    'a_second' => '{1}birkaÃ§ saniye|]1,Inf[:count saniye',
    's' => ':countsn',
    'ago' => ':time Ã¶nce',
    'from_now' => ':time sonra',
    'after' => ':time sonra',
    'before' => ':time Ã¶nce',
    'diff_now' => 'ÅŸimdi',
    'diff_today' => 'bugÃ¼n',
    'diff_today_regexp' => 'bugÃ¼n(?:\\s+saat)?',
    'diff_yesterday' => 'dÃ¼n',
    'diff_tomorrow' => 'yarÄ±n',
    'diff_tomorrow_regexp' => 'yarÄ±n(?:\\s+saat)?',
    'diff_before_yesterday' => 'evvelsi gÃ¼n',
    'diff_after_tomorrow' => 'Ã¶bÃ¼r gÃ¼n',
    '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' => '[bugÃ¼n saat] LT',
        'nextDay' => '[yarÄ±n saat] LT',
        'nextWeek' => '[gelecek] dddd [saat] LT',
        'lastDay' => '[dÃ¼n] LT',
        'lastWeek' => '[geÃ§en] dddd [saat] LT',
        'sameElse' => 'L',
    ],
    'ordinal' => function ($number, $period) {
        switch ($period) {
            case 'd':
            case 'D':
            case 'Do':
            case 'DD':
                return $number;
            default:
                if ($number === 0) {  // special case for zero
                    return "$number'Ä±ncÄ±";
                }

                static $suffixes = [
                    1 => '\'inci',
                    5 => '\'inci',
                    8 => '\'inci',
                    70 => '\'inci',
                    80 => '\'inci',
                    2 => '\'nci',
                    7 => '\'nci',
                    20 => '\'nci',
                    50 => '\'nci',
                    3 => '\'Ã¼ncÃ¼',
                    4 => '\'Ã¼ncÃ¼',
                    100 => '\'Ã¼ncÃ¼',
                    6 => '\'ncÄ±',
                    9 => '\'uncu',
                    10 => '\'uncu',
                    30 => '\'uncu',
                    60 => '\'Ä±ncÄ±',
                    90 => '\'Ä±ncÄ±',
                ];

                $lastDigit = $number % 10;

                return $number.($suffixes[$lastDigit] ?? $suffixes[$number % 100 - $lastDigit] ?? $suffixes[$number >= 100 ? 100 : -1] ?? '');
        }
    },
    'meridiem' => ['Ã–Ã–', 'Ã–S', 'Ã¶Ã¶', 'Ã¶s'],
    'months' => ['Ocak', 'Åžubat', 'Mart', 'Nisan', 'MayÄ±s', 'Haziran', 'Temmuz', 'AÄŸustos', 'EylÃ¼l', 'Ekim', 'KasÄ±m', 'AralÄ±k'],
    'months_short' => ['Oca', 'Åžub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'AÄŸu', 'Eyl', 'Eki', 'Kas', 'Ara'],
    'weekdays' => ['Pazar', 'Pazartesi', 'SalÄ±', 'Ã‡arÅŸamba', 'PerÅŸembe', 'Cuma', 'Cumartesi'],
    'weekdays_short' => ['Paz', 'Pts', 'Sal', 'Ã‡ar', 'Per', 'Cum', 'Cts'],
    'weekdays_min' => ['Pz', 'Pt', 'Sa', 'Ã‡a', 'Pe', 'Cu', 'Ct'],
    'first_day_of_week' => 1,
    'day_of_first_week_of_year' => 1,
    'list' => [', ', ' ve '],
];
