<?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. 
 */ 
 
return array( 
    'year' => ':count il', 
    'y' => ':count il', 
    'month' => ':count ay', 
    'm' => ':count ay', 
    'week' => ':count h?ft?', 
    'w' => ':count h?ft?', 
    'day' => ':count gün', 
    'd' => ':count gün', 
    'hour' => ':count saat', 
    'h' => ':count saat', 
    'minute' => ':count d?qiq?', 
    'min' => ':count d?qiq?', 
    'second' => ':count saniy?', 
    's' => ':count saniy?', 
    'ago' => ':time önc?', 
    'from_now' => ':time sonra', 
    'after' => ':time sonra', 
    'before' => ':time önc?', 
); 
 
 |