vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1023 B
33 lines
1023 B
import type { Locale } from '../interface'; |
|
|
|
const locale: Locale = { |
|
locale: 'mn_MN', |
|
today: 'Өнөөдөр', |
|
now: 'Одоо', |
|
backToToday: 'Өнөөдөрлүү буцах', |
|
ok: 'Ok', |
|
clear: 'Цэвэрлэх', |
|
month: 'Сар', |
|
year: 'Жил', |
|
timeSelect: 'Цаг сонгох', |
|
dateSelect: 'Огноо сонгох', |
|
weekSelect: '7 хоног сонгох', |
|
monthSelect: 'Сар сонгох', |
|
yearSelect: 'Жил сонгох', |
|
decadeSelect: 'Арван сонгох', |
|
yearFormat: 'YYYY', |
|
dateFormat: 'YYYY/MM/DD', |
|
dayFormat: 'DD', |
|
dateTimeFormat: 'YYYY/MM/DD HH:mm:ss', |
|
monthBeforeYear: true, |
|
previousMonth: 'Өмнөх сар (PageUp)', |
|
nextMonth: 'Дараа сар (PageDown)', |
|
previousYear: 'Өмнөх жил (Control + left)', |
|
nextYear: 'Дараа жил (Control + right)', |
|
previousDecade: 'Өмнөх арван', |
|
nextDecade: 'Дараа арван', |
|
previousCentury: 'Өмнөх зуун', |
|
nextCentury: 'Дараа зуун', |
|
}; |
|
|
|
export default locale;
|
|
|