<?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' => '1 year|:count years', 
    'y' => '1yr|:countyrs', 
    'month' => '1 month|:count months', 
    'm' => '1mo|:countmos', 
    'week' => '1 week|:count weeks', 
    'w' => '1w|:countw', 
    'day' => '1 day|:count days', 
    'd' => '1d|:countd', 
    'hour' => '1 hour|:count hours', 
    'h' => '1h|:counth', 
    'minute' => '1 minute|:count minutes', 
    'min' => '1m|:countm', 
    'second' => '1 second|:count seconds', 
    's' => '1s|:counts', 
    'ago' => ':time ago', 
    'from_now' => ':time from now', 
    'after' => ':time after', 
    'before' => ':time before', 
); 
 
 |