| 
<?php
 /**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
 
 /*
 * Authors:
 * - Josh Soref
 * - Kunal Marwaha
 * - François B
 * - JD Isaacks
 * - Orxan
 * - ??hriyar ?manov
 * - Baran ?engül
 */
 return [
 'year' => ':count il',
 'a_year' => '{1}bir il|]1,Inf[:count il',
 'y' => ':count il',
 'month' => ':count ay',
 'a_month' => '{1}bir ay|]1,Inf[:count ay',
 'm' => ':count ay',
 'week' => ':count h?ft?',
 'a_week' => '{1}bir h?ft?|]1,Inf[:count h?ft?',
 'w' => ':count h.',
 'day' => ':count gün',
 'a_day' => '{1}bir gün|]1,Inf[:count gün',
 'd' => ':count g.',
 'hour' => ':count saat',
 'a_hour' => '{1}bir saat|]1,Inf[:count saat',
 'h' => ':count saat',
 'minute' => ':count d.',
 'a_minute' => '{1}bir d?qiq?|]1,Inf[:count d?qiq?',
 'min' => ':count d?qiq?',
 'second' => ':count san.',
 'a_second' => '{1}birneç? saniy?|]1,Inf[:count saniy?',
 's' => ':count saniy?',
 'ago' => ':time ?vv?l',
 'from_now' => ':time sonra',
 'after' => ':time sonra',
 'before' => ':time ?vv?l',
 'diff_now' => 'indi',
 'diff_yesterday' => 'dün?n',
 'diff_tomorrow' => 'sabah',
 'diff_before_yesterday' => 'sra?agün',
 'diff_after_tomorrow' => 'birisi gün',
 'period_recurrences' => ':count d?f?d?n bir',
 'period_interval' => 'h?r :interval',
 'period_start_date' => ':date tarixind?n ba?layaraq',
 'period_end_date' => ':date tarixin?d?k',
 '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' => '[sabah saat] LT',
 'nextWeek' => '[g?l?n h?ft?] dddd [saat] LT',
 'lastDay' => '[dün?n] LT',
 'lastWeek' => '[keç?n h?ft?] dddd [saat] LT',
 'sameElse' => 'L',
 ],
 'ordinal' => function ($number) {
 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' => function ($hour) {
 if ($hour < 4) {
 return 'gec?';
 }
 if ($hour < 12) {
 return 's?h?r';
 }
 if ($hour < 17) {
 return 'gündüz';
 }
 
 return 'ax?am';
 },
 'months' => ['yanvar', 'fevral', 'mart', 'aprel', 'may', 'iyun', 'iyul', 'avqust', 'sentyabr', 'oktyabr', 'noyabr', 'dekabr'],
 'months_short' => ['yan', 'fev', 'mar', 'apr', 'may', 'iyn', 'iyl', 'avq', 'sen', 'okt', 'noy', 'dek'],
 'months_standalone' => ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', '?yun', '?yul', 'Avqust', 'Sentyabr', 'Oktyabr', 'Noyabr', 'Dekabr'],
 'weekdays' => ['bazar', 'bazar ert?si', 'ç?r??nb? ax?am?', 'ç?r??nb?', 'cüm? ax?am?', 'cüm?', '??nb?'],
 'weekdays_short' => ['baz', 'bze', 'çax', 'ç?r', 'cax', 'cüm', '??n'],
 'weekdays_min' => ['bz', 'be', 'ça', 'ç?', 'ca', 'cü', '??'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 1,
 'list' => [', ', ' v? '],
 ];
 
 |