diff --git a/src/locales/en.js b/src/locales/en.js index f36cc246..b0b0579e 100644 --- a/src/locales/en.js +++ b/src/locales/en.js @@ -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': 'Min Amount', - 'Max Amount': 'Max Amount', + 'Minimum Amount': 'Minimum Amount', + 'Maximum Amount': 'Maximum Amount', 'Display Order': 'Display Order', 'Name': 'Name', 'Sort by Amount': 'Sort by Amount', diff --git a/src/locales/zh_Hans.js b/src/locales/zh_Hans.js index 8720197a..a8ee9e05 100644 --- a/src/locales/zh_Hans.js +++ b/src/locales/zh_Hans.js @@ -1076,8 +1076,8 @@ export default { 'Default Sort Order': '默认排序方式', 'Timezone Used for Date Range': '时间范围使用的时区', 'Amount': '金额', - 'Min Amount': '最小金额', - 'Max Amount': '最大金额', + 'Minimum Amount': '最小金额', + 'Maximum Amount': '最大金额', 'Display Order': '显示顺序', 'Name': '名称', 'Sort by Amount': '按金额排序', diff --git a/src/views/mobile/transactions/AmountFilterPage.vue b/src/views/mobile/transactions/AmountFilterPage.vue index c07c8c50..7e7fea5e 100644 --- a/src/views/mobile/transactions/AmountFilterPage.vue +++ b/src/views/mobile/transactions/AmountFilterPage.vue @@ -98,18 +98,18 @@ export default { if (this.type === numeralConstants.allAmountFilterType.GreaterThan.type || this.type === numeralConstants.allAmountFilterType.Between.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) { - return this.$t('Max Amount'); + return this.$t('Maximum Amount'); } else { return this.$t('Amount'); } }, amount2Header() { 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) { - return this.$t('Max Amount'); + return this.$t('Maximum Amount'); } else { return this.$t('Amount'); }