Update display string

This commit is contained in:
Manfred Karrer 2018-12-02 14:24:37 +01:00
parent 5b17d3d571
commit 2ba21f0277
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
2 changed files with 2 additions and 2 deletions

View File

@ -758,7 +758,7 @@ funds.tx.noTxAvailable=No transactions available
funds.tx.revert=Revert funds.tx.revert=Revert
funds.tx.txSent=Transaction successfully sent to a new address in the local Bisq wallet. funds.tx.txSent=Transaction successfully sent to a new address in the local Bisq wallet.
funds.tx.direction.self=Sent to yourself 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.reimbursementRequestTxFee=Reimbursement request
funds.tx.compensationRequestTxFee=Compensation request funds.tx.compensationRequestTxFee=Compensation request

View File

@ -139,7 +139,7 @@ class TransactionsListItem {
else if (txTypeOptional.get().equals(TxType.REIMBURSEMENT_REQUEST)) else if (txTypeOptional.get().equals(TxType.REIMBURSEMENT_REQUEST))
details = Res.get("funds.tx.reimbursementRequestTxFee"); details = Res.get("funds.tx.reimbursementRequestTxFee");
else else
details = Res.get("funds.tx.proposalTxFee"); details = Res.get("funds.tx.daoTxFee");
} }
} else { } else {
outgoing = true; outgoing = true;