show multiple selected week days in the order of the week day list

This commit is contained in:
MaysWind
2024-08-26 23:32:12 +08:00
parent c2fbd918dd
commit 720f83bd0b
3 changed files with 35 additions and 5 deletions
+4 -1
View File
@@ -526,6 +526,9 @@ export default {
defaultAccountId() {
return this.userStore.currentUserDefaultAccountId;
},
firstDayOfWeek() {
return this.userStore.currentUserFirstDayOfWeek;
},
allTransactionTypes() {
return transactionConstants.allTransactionTypes;
},
@@ -628,7 +631,7 @@ export default {
if (this.transaction.scheduledFrequencyType === templateConstants.allTemplateScheduledFrequencyTypes.Weekly.type) {
if (scheduledFrequencyValues.length) {
return this.$t('format.misc.everyMultiDaysOfWeek', {
days: this.$locale.getMultiWeekdayLongNames(scheduledFrequencyValues)
days: this.$locale.getMultiWeekdayLongNames(scheduledFrequencyValues, this.firstDayOfWeek)
});
} else {
return this.$t('Weekly');