-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Locale): add mongolian lang (#11418)
- Loading branch information
1 parent
e3c7e33
commit 879133e
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
export default { | ||
name: 'Нэр', | ||
tel: 'Утас', | ||
save: 'Хадгалах', | ||
confirm: 'Баталгаажуулах', | ||
cancel: 'Цуцлах', | ||
delete: 'Устгах', | ||
loading: 'Ачааж байна...', | ||
noCoupon: 'Купон байхгүй', | ||
nameEmpaty: 'Нэрээ оруулна уу', | ||
addContact: 'Харилцагч нэмэх', | ||
telInvalid: 'Газар утасны дугаар', | ||
vanCalendar: { | ||
end: 'Төгсгөл', | ||
start: 'Эхлэх', | ||
title: 'Хуанли', | ||
weekdays: ['Ням', 'Даваа', 'Мягмар', 'Лхагва', 'Пүрэв', 'Баасан', 'Бямба'], | ||
monthTitle: (year: number, month: number) => `${year}/${month}`, | ||
rangePrompt: (maxRange: number) => `${maxRange} хоногоос илүүгүй сонгох`, | ||
}, | ||
vanCascader: { | ||
select: 'Сонгох', | ||
}, | ||
vanPagination: { | ||
prev: 'Өмнөх', | ||
next: 'Дараагийн', | ||
}, | ||
vanPullRefresh: { | ||
pulling: 'Сэргээхийн тулд татах...', | ||
loosing: 'Сэргээхийн тулд сул...', | ||
}, | ||
vanSubmitBar: { | ||
label: 'Нийт:', | ||
}, | ||
vanCoupon: { | ||
unlimited: 'Хязгааргүй', | ||
discount: (discount: number) => `${discount * 10}% хямдрал`, | ||
condition: (condition: number) => `Хамгийн багадаа ${condition}`, | ||
}, | ||
vanCouponCell: { | ||
title: 'Купон', | ||
count: (count: number) => `Танд ${count} купон байна`, | ||
}, | ||
vanCouponList: { | ||
exchange: 'солилцоо', | ||
close: 'хаах', | ||
enable: 'Боломжтой', | ||
disabled: 'Боломжгүй', | ||
placeholder: 'Купон код', | ||
}, | ||
vanAddressEdit: { | ||
area: 'Талбай', | ||
areaEmpty: 'Хүлээн авах бүсээ сонгоно уу', | ||
addressEmpty: 'Хаяг хоосон байж болохгүй', | ||
addressDetail: 'Хаяг', | ||
defaultAddress: 'Өгөгдмөл хаягаар тохируулах', | ||
}, | ||
vanAddressList: { | ||
add: 'Шинэ хаяг нэмэх', | ||
}, | ||
}; |