mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
[improvement] i18n config ts (#3023)
This commit is contained in:
parent
7eda33eb44
commit
f03b200b37
@ -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).
|
||||
|
@ -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',
|
@ -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',
|
@ -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: '暂无优惠券',
|
@ -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: '暫無優惠券',
|
@ -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: '暫無優惠券',
|
@ -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 配置文件。
|
||||
|
Loading…
x
Reference in New Issue
Block a user