diff --git a/core/src/main/resources/i18n/displayStrings.properties b/core/src/main/resources/i18n/displayStrings.properties index 0272666415..197019a870 100644 --- a/core/src/main/resources/i18n/displayStrings.properties +++ b/core/src/main/resources/i18n/displayStrings.properties @@ -758,7 +758,7 @@ funds.tx.noTxAvailable=No transactions available funds.tx.revert=Revert funds.tx.txSent=Transaction successfully sent to a new address in the local Bisq wallet. funds.tx.direction.self=Sent to yourself -funds.tx.proposalTxFee=Miner fee for proposal +funds.tx.daoTxFee=Miner fee for DAO tx funds.tx.reimbursementRequestTxFee=Reimbursement request funds.tx.compensationRequestTxFee=Compensation request diff --git a/desktop/src/main/java/bisq/desktop/main/funds/transactions/TransactionsListItem.java b/desktop/src/main/java/bisq/desktop/main/funds/transactions/TransactionsListItem.java index c4940db7d0..239a179e6c 100644 --- a/desktop/src/main/java/bisq/desktop/main/funds/transactions/TransactionsListItem.java +++ b/desktop/src/main/java/bisq/desktop/main/funds/transactions/TransactionsListItem.java @@ -139,7 +139,7 @@ class TransactionsListItem { else if (txTypeOptional.get().equals(TxType.REIMBURSEMENT_REQUEST)) details = Res.get("funds.tx.reimbursementRequestTxFee"); else - details = Res.get("funds.tx.proposalTxFee"); + details = Res.get("funds.tx.daoTxFee"); } } else { outgoing = true;