modify text

This commit is contained in:
MaysWind
2024-07-02 00:46:22 +08:00
parent e43cf26bb5
commit 329119fc3b
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -1076,8 +1076,8 @@ export default {
'Default Sort Order': 'Default Sort Order', 'Default Sort Order': 'Default Sort Order',
'Timezone Used for Date Range': 'Timezone Used for Date Range', 'Timezone Used for Date Range': 'Timezone Used for Date Range',
'Amount': 'Amount', 'Amount': 'Amount',
'Min Amount': 'Min Amount', 'Minimum Amount': 'Minimum Amount',
'Max Amount': 'Max Amount', 'Maximum Amount': 'Maximum Amount',
'Display Order': 'Display Order', 'Display Order': 'Display Order',
'Name': 'Name', 'Name': 'Name',
'Sort by Amount': 'Sort by Amount', 'Sort by Amount': 'Sort by Amount',
+2 -2
View File
@@ -1076,8 +1076,8 @@ export default {
'Default Sort Order': '默认排序方式', 'Default Sort Order': '默认排序方式',
'Timezone Used for Date Range': '时间范围使用的时区', 'Timezone Used for Date Range': '时间范围使用的时区',
'Amount': '金额', 'Amount': '金额',
'Min Amount': '最小金额', 'Minimum Amount': '最小金额',
'Max Amount': '最大金额', 'Maximum Amount': '最大金额',
'Display Order': '显示顺序', 'Display Order': '显示顺序',
'Name': '名称', 'Name': '名称',
'Sort by Amount': '按金额排序', 'Sort by Amount': '按金额排序',
@@ -98,18 +98,18 @@ export default {
if (this.type === numeralConstants.allAmountFilterType.GreaterThan.type if (this.type === numeralConstants.allAmountFilterType.GreaterThan.type
|| this.type === numeralConstants.allAmountFilterType.Between.type || this.type === numeralConstants.allAmountFilterType.Between.type
|| this.type === numeralConstants.allAmountFilterType.NotBetween.type) { || this.type === numeralConstants.allAmountFilterType.NotBetween.type) {
return this.$t('Min Amount'); return this.$t('Minimum Amount');
} else if (this.type === numeralConstants.allAmountFilterType.LessThan.type) { } else if (this.type === numeralConstants.allAmountFilterType.LessThan.type) {
return this.$t('Max Amount'); return this.$t('Maximum Amount');
} else { } else {
return this.$t('Amount'); return this.$t('Amount');
} }
}, },
amount2Header() { amount2Header() {
if (this.type === numeralConstants.allAmountFilterType.Between.type) { if (this.type === numeralConstants.allAmountFilterType.Between.type) {
return this.$t('Max Amount'); return this.$t('Maximum Amount');
} else if (this.type === numeralConstants.allAmountFilterType.NotBetween.type) { } else if (this.type === numeralConstants.allAmountFilterType.NotBetween.type) {
return this.$t('Max Amount'); return this.$t('Maximum Amount');
} else { } else {
return this.$t('Amount'); return this.$t('Amount');
} }