1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/* * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @translator Batmandakh Erdenebileg <batmandakh.e@icloud.com> */
return array( '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 секунды', );
|