blob: 25f65b332cfc0975740e3bb23d314c522952612d [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 *
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
11 *
12 * @translator Batmandakh Erdenebileg <batmandakh.e@icloud.com>
13 */
14
15/*
16 * Authors:
17 * - Philippe Vaucher
18 * - Tsutomu Kuroda
19 * - tjku
20 * - Max Melentiev
21 * - Zolzaya Erdenebaatar
22 * - Tom Hughes
23 * - Akira Matsuda
24 * - Christopher Dell
25 * - Michael Kessler
26 * - Enrique Vidal
27 * - Simone Carletti
28 * - Aaron Patterson
29 * - Nicolás Hock Isaza
30 * - Ochirkhuyag
31 * - Batmandakh
32 */
33return [
34 'year' => ':count жил',
35 'y' => ':count жил',
36 'month' => ':count сар',
37 'm' => ':count сар',
38 'week' => ':count долоо хоног',
39 'w' => ':count долоо хоног',
40 'day' => ':count өдөр',
41 'd' => ':count өдөр',
42 'hour' => ':count цаг',
43 'h' => ':countц',
44 'minute' => ':count минут',
45 'min' => ':countм',
46 'second' => ':count секунд',
47 's' => ':countс',
48
49 'ago' => ':timeн өмнө',
50 'year_ago' => ':count жилий',
51 'month_ago' => ':count сары',
52 'day_ago' => ':count хоногий',
53 'hour_ago' => ':count цагий',
54 'minute_ago' => ':count минуты',
55 'second_ago' => ':count секунды',
56
57 'from_now' => 'одоогоос :time',
58 'year_from_now' => ':count жилийн дараа',
59 'month_from_now' => ':count сарын дараа',
60 'day_from_now' => ':count хоногийн дараа',
61 'hour_from_now' => ':count цагийн дараа',
62 'minute_from_now' => ':count минутын дараа',
63 'second_from_now' => ':count секундын дараа',
64
65 // 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...
66 'after' => ':timeн дараа',
67 'year_after' => ':count жилий',
68 'month_after' => ':count сары',
69 'day_after' => ':count хоногий',
70 'hour_after' => ':count цагий',
71 'minute_after' => ':count минуты',
72 'second_after' => ':count секунды',
73
74 'before' => ':timeн өмнө',
75 'year_before' => ':count жилий',
76 'month_before' => ':count сары',
77 'day_before' => ':count хоногий',
78 'hour_before' => ':count цагий',
79 'minute_before' => ':count минуты',
80 'second_before' => ':count секунды',
81
82 'list' => ', ',
83 'diff_now' => 'одоо',
84 'diff_yesterday' => 'өчигдөр',
85 'diff_tomorrow' => 'маргааш',
86 'formats' => [
87 'LT' => 'HH:mm',
88 'LTS' => 'HH:mm:ss',
89 'L' => 'YYYY-MM-DD',
90 'LL' => 'YYYY MMMM DD',
91 'LLL' => 'YY-MM-DD, HH:mm',
92 'LLLL' => 'YYYY MMMM DD, HH:mm',
93 ],
94 'weekdays' => ['Ням', 'Даваа', 'Мягмар', 'Лхагва', 'Пүрэв', 'Баасан', 'Бямба'],
95 'weekdays_short' => ['Ня', 'Да', 'Мя', 'Лх', 'Пү', 'Ба', 'Бя'],
96 'weekdays_min' => ['Ня', 'Да', 'Мя', 'Лх', 'Пү', 'Ба', 'Бя'],
97 'months' => ['1 сар', '2 сар', '3 сар', '4 сар', '5 сар', '6 сар', '7 сар', '8 сар', '9 сар', '10 сар', '11 сар', '12 сар'],
98 'months_short' => ['1 сар', '2 сар', '3 сар', '4 сар', '5 сар', '6 сар', '7 сар', '8 сар', '9 сар', '10 сар', '11 сар', '12 сар'],
99 'meridiem' => ['өглөө', 'орой'],
100 'first_day_of_week' => 1,
101];