[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 |
|------|------|
| Chinese | zh-CN |
| Traditional Chinese (HK) | zh-HK |
| Traditional Chinese (TW) | zh-TW |
| English | en-US |
| Traditional Chinese | zh-HK |
| Turkish | tr-TR |
View all language configs [Here](https://github.com/youzan/vant/tree/dev/packages/locale/lang).

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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