<?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' => '???|{2}??????|:count ????', 
    'y' => '???|{2}??????|:count ????', 
    'month' => '????|{2}???????|:count ??????', 
    'm' => '????|{2}???????|:count ??????', 
    'week' => '????|{2}???????|:count ??????', 
    'w' => '????|{2}???????|:count ??????', 
    'day' => '???|{2}??????|:count ????', 
    'd' => '???|{2}??????|:count ????', 
    'hour' => '???|{2}??????|:count ????', 
    'h' => '???|{2}??????|:count ????', 
    'minute' => '???|{2}???????|:count ????', 
    'min' => '???|{2}???????|:count ????', 
    'second' => '????|:count ?????', 
    's' => '????|:count ?????', 
    'ago' => '???? :time', 
    'from_now' => '???? :time', 
    'after' => '???? :time', 
    'before' => '???? :time', 
); 
 
 |