[improvement] i18n config ts (#3023)
This commit is contained in:
@@ -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: '暫無優惠券',
|
||||
Reference in New Issue
Block a user