mn.php
4.0 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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.
*/
/*
* 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
* - lucifer-crybaby
*/
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_mode' => 'last',
'ago' => ':time өмнө',
'year_ago' => ':count жилийн',
'y_ago' => ':count жилийн',
'month_ago' => ':count сарын',
'm_ago' => ':count сарын',
'day_ago' => ':count хоногийн',
'd_ago' => ':count хоногийн',
'week_ago' => ':count долоо хоногийн',
'w_ago' => ':count долоо хоногийн',
'hour_ago' => ':count цагийн',
'minute_ago' => ':count минутын',
'second_ago' => ':count секундын',
'from_now_mode' => 'last',
'from_now' => 'одоогоос :time',
'year_from_now' => ':count жилийн дараа',
'y_from_now' => ':count жилийн дараа',
'month_from_now' => ':count сарын дараа',
'm_from_now' => ':count сарын дараа',
'day_from_now' => ':count хоногийн дараа',
'd_from_now' => ':count хоногийн дараа',
'hour_from_now' => ':count цагийн дараа',
'minute_from_now' => ':count минутын дараа',
'second_from_now' => ':count секундын дараа',
'after_mode' => 'last',
'after' => ':time дараа',
'year_after' => ':count жилийн',
'y_after' => ':count жилийн',
'month_after' => ':count сарын',
'm_after' => ':count сарын',
'day_after' => ':count хоногийн',
'd_after' => ':count хоногийн',
'hour_after' => ':count цагийн',
'minute_after' => ':count минутын',
'second_after' => ':count секундын',
'before_mode' => 'last',
'before' => ':time өмнө',
'year_before' => ':count жилийн',
'y_before' => ':count жилийн',
'month_before' => ':count сарын',
'm_before' => ':count сарын',
'day_before' => ':count хоногийн',
'd_before' => ':count хоногийн',
'hour_before' => ':count цагийн',
'minute_before' => ':count минутын',
'second_before' => ':count секундын',
'list' => ', ',
'diff_now' => 'одоо',
'diff_yesterday' => 'өчигдөр',
'diff_tomorrow' => 'маргааш',
'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,
];