[improvement] i18n config ts (#3023)

This commit is contained in:
neverland 2019-03-21 10:23:30 +08:00 committed by GitHub
parent 7eda33eb44
commit f03b200b37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 23 additions and 21 deletions

View File

@ -34,8 +34,9 @@ Current supported languages:
| Language | Filename | | Language | Filename |
|------|------| |------|------|
| Chinese | zh-CN | | Chinese | zh-CN |
| Traditional Chinese (HK) | zh-HK |
| Traditional Chinese (TW) | zh-TW |
| English | en-US | | English | en-US |
| Traditional Chinese | zh-HK |
| Turkish | tr-TR | | Turkish | tr-TR |
View all language configs [Here](https://github.com/youzan/vant/tree/dev/packages/locale/lang). View all language configs [Here](https://github.com/youzan/vant/tree/dev/packages/locale/lang).

View File

@ -31,13 +31,13 @@ export default {
vanCoupon: { vanCoupon: {
valid: 'Valid', valid: 'Valid',
unlimited: 'Unlimited', unlimited: 'Unlimited',
discount: discount => `${discount * 10}% off`, discount: (discount: number) => `${discount * 10}% off`,
condition: condition => `At least ${condition}` condition: (condition: number) => `At least ${condition}`
}, },
vanCouponCell: { vanCouponCell: {
title: 'Coupon', title: 'Coupon',
tips: 'Select coupon', tips: 'Select coupon',
count: count => `You have ${count} coupons` count: (count: number) => `You have ${count} coupons`
}, },
vanCouponList: { vanCouponList: {
empty: 'No coupons', empty: 'No coupons',

View File

@ -28,10 +28,16 @@ export default {
vanSubmitBar: { vanSubmitBar: {
label: 'Toplam:' label: 'Toplam:'
}, },
vanCoupon: {
valid: 'Geçerli',
unlimited: 'Sınırsız',
discount: (discount: number) => `%${discount * 10} indirim`,
condition: (condition: number) => `En az ${condition}`
},
vanCouponCell: { vanCouponCell: {
title: 'Kupon', title: 'Kupon',
tips: 'Kupon seç', tips: 'Kupon seç',
count: count => `${count} adet teklif var` count: (count: number) => `${count} adet teklif var`
}, },
vanCouponList: { vanCouponList: {
empty: 'Kupon yok', empty: 'Kupon yok',
@ -41,12 +47,6 @@ export default {
disabled: 'Mevcut değil', disabled: 'Mevcut değil',
placeholder: 'Kupon kodu' placeholder: 'Kupon kodu'
}, },
vanCouponItem: {
valid: 'Geçerli',
unlimited: 'Sınırsız',
discount: discount => `%${discount * 10} indirim`,
condition: condition => `En az ${condition}`
},
vanAddressEdit: { vanAddressEdit: {
area: 'Alan', area: 'Alan',
postal: 'Posta', postal: 'Posta',

View File

@ -31,13 +31,13 @@ export default {
vanCoupon: { vanCoupon: {
valid: '有效期', valid: '有效期',
unlimited: '无使用门槛', unlimited: '无使用门槛',
discount: discount => `${discount}`, discount: (discount: number) => `${discount}`,
condition: (condition) => `${condition}元可用` condition: (condition: number) => `${condition}元可用`
}, },
vanCouponCell: { vanCouponCell: {
title: '优惠券', title: '优惠券',
tips: '使用优惠', tips: '使用优惠',
count: count => `${count}张可用` count: (count: number) => `${count}张可用`
}, },
vanCouponList: { vanCouponList: {
empty: '暂无优惠券', empty: '暂无优惠券',

View File

@ -31,13 +31,13 @@ export default {
vanCoupon: { vanCoupon: {
valid: '有效期', valid: '有效期',
unlimited: '無使用門檻', unlimited: '無使用門檻',
discount: discount => `${discount}`, discount: (discount: number) => `${discount}`,
condition: (condition) => `滿${condition}元可用` condition: (condition: number) => `滿${condition}元可用`
}, },
vanCouponCell: { vanCouponCell: {
title: '優惠券', title: '優惠券',
tips: '使用優惠', tips: '使用優惠',
count: count => `${count}張可用` count: (count: number) => `${count}張可用`
}, },
vanCouponList: { vanCouponList: {
empty: '暫無優惠券', empty: '暫無優惠券',

View File

@ -31,13 +31,13 @@ export default {
vanCoupon: { vanCoupon: {
valid: '有效期限', valid: '有效期限',
unlimited: '無使用門檻', unlimited: '無使用門檻',
discount: discount => `${discount}`, discount: (discount: number) => `${discount}`,
condition: (condition) => `滿${condition}元可用` condition: (condition: number) => `滿${condition}元可用`
}, },
vanCouponCell: { vanCouponCell: {
title: '優惠券', title: '優惠券',
tips: '使用優惠', tips: '使用優惠',
count: count => `${count}張可用` count: (count: number) => `${count}張可用`
}, },
vanCouponList: { vanCouponList: {
empty: '暫無優惠券', empty: '暫無優惠券',

View File

@ -35,8 +35,9 @@ Locale.add(messages);
| 语言 | 文件名 | | 语言 | 文件名 |
|------|------| |------|------|
| 简体中文 | zh-CN | | 简体中文 | zh-CN |
| 繁體中文(港) | zh-HK |
| 繁體中文(台) | zh-TW |
| 英语 | en-US | | 英语 | en-US |
| 繁體中文 | zh-HK |
| 土耳其语 | tr-TR | | 土耳其语 | tr-TR |
在 [这里](https://github.com/youzan/vant/tree/dev/packages/locale/lang) 查看所有的 i18n 配置文件。 在 [这里](https://github.com/youzan/vant/tree/dev/packages/locale/lang) 查看所有的 i18n 配置文件。