This commit is contained in:
Florian Dupret
2020-05-16 15:01:19 +02:00
parent 7f8ed7abb6
commit e532b4d4fc
5 changed files with 17014 additions and 8 deletions

View File

@@ -656,10 +656,10 @@
this.setDefaultErrors();
// do message if update or new:
if (this.storeAsNew) {
this.success_message = '<a href="transactions/show/' + groupId + '">Transaction #' + groupId + '</a> has been created.';
this.success_message = this.$t('firefly.transaction_stored_link', { ID: groupId });
this.error_message = '';
} else {
this.success_message = '<a href="transactions/show/' + groupId + '">The transaction</a> has been updated.';
this.success_message = this.$t('firefly.transaction_updated_link', { ID: groupId });
this.error_message = '';
}
} else {