<?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. 
 * 
 * @translator Batmandakh Erdenebileg <[email protected]> 
 */ 
 
/* 
 * Authors: 
 * - Philippe Vaucher 
 * - Tsutomu Kuroda 
 * - tjku 
 * - Max Melentiev 
 * - Zolzaya Erdenebaatar 
 * - Tom Hughes 
 * - Akira Matsuda 
 * - Christopher Dell 
 * - Michael Kessler 
 * - Enrique Vidal 
 * - Simone Carletti 
 * - Aaron Patterson 
 * - Nicolás Hock Isaza 
 * - Ochirkhuyag 
 * - Batmandakh 
 */ 
return [ 
    'year' => ':count ???', 
    'y' => ':count ???', 
    'month' => ':count ???', 
    'm' => ':count ???', 
    'week' => ':count ????? ?????', 
    'w' => ':count ????? ?????', 
    'day' => ':count ????', 
    'd' => ':count ????', 
    'hour' => ':count ???', 
    'h' => ':count?', 
    'minute' => ':count ?????', 
    'min' => ':count?', 
    'second' => ':count ??????', 
    's' => ':count?', 
 
    'ago' => ':time? ????', 
    'year_ago' => ':count ?????', 
    'month_ago' => ':count ????', 
    'day_ago' => ':count ???????', 
    'hour_ago' => ':count ?????', 
    'minute_ago' => ':count ??????', 
    'second_ago' => ':count ???????', 
 
    'from_now' => '???????? :time', 
    'year_from_now' => ':count ?????? ?????', 
    'month_from_now' => ':count ????? ?????', 
    'day_from_now' => ':count ???????? ?????', 
    'hour_from_now' => ':count ?????? ?????', 
    'minute_from_now' => ':count ??????? ?????', 
    'second_from_now' => ':count ???????? ?????', 
 
    // Does it required to make translation for before, after as follows? hmm, I think we've made it with ago and from now keywords already. Anyway, I've included it just in case of undesired action... 
    'after' => ':time? ?????', 
    'year_after' => ':count ?????', 
    'month_after' => ':count ????', 
    'day_after' => ':count ???????', 
    'hour_after' => ':count ?????', 
    'minute_after' => ':count ??????', 
    'second_after' => ':count ???????', 
    'before' => ':time? ????', 
    'year_before' => ':count ?????', 
    'month_before' => ':count ????', 
    'day_before' => ':count ???????', 
    'hour_before' => ':count ?????', 
    'minute_before' => ':count ??????', 
    'second_before' => ':count ???????', 
    'list' => ', ', 
    'formats' => [ 
        'LT' => 'HH:mm', 
        'LTS' => 'HH:mm:ss', 
        'L' => 'YYYY-MM-DD', 
        'LL' => 'YYYY MMMM DD', 
        'LLL' => 'YY-MM-DD, HH:mm', 
        'LLLL' => 'YYYY MMMM DD, HH:mm', 
    ], 
    'weekdays' => ['???', '?????', '??????', '??????', '?????', '??????', '?????'], 
    'weekdays_short' => ['??', '??', '??', '??', '??', '??', '??'], 
    'weekdays_min' => ['??', '??', '??', '??', '??', '??', '??'], 
    'months' => ['1 ???', '2 ???', '3 ???', '4 ???', '5 ???', '6 ???', '7 ???', '8 ???', '9 ???', '10 ???', '11 ???', '12 ???'], 
    'months_short' => ['1 ???', '2 ???', '3 ???', '4 ???', '5 ???', '6 ???', '7 ???', '8 ???', '9 ???', '10 ???', '11 ???', '12 ???'], 
    'meridiem' => ['?????', '????'], 
    'first_day_of_week' => 1, 
]; 
 
 |