Add proposal as shared translation

This commit is contained in:
Christoph Atteneder 2019-04-08 17:39:22 +02:00
parent 2945150e7e
commit ce731564a3
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B
2 changed files with 2 additions and 2 deletions

View File

@ -199,6 +199,7 @@ shared.buyerUpperCase=Buyer
shared.sellerUpperCase=Seller
shared.new=NEW
shared.blindVoteTxId=Blind vote transaction ID
shared.proposal=Proposal
####################################################################
# UI views
@ -1427,7 +1428,6 @@ dao.results.cycle.duration.value={0} block(s)
dao.results.cycle.value.postFix.isDefaultValue=(default value)
dao.results.cycle.value.postFix.hasChanged=(has been changed in voting)
dao.results.invalidVotes.proposal=Proposal
dao.results.invalidVotes=We had invalid votes in that voting cycle. That can happen if a vote was \
not distributed well in the P2P network.\n{0}

View File

@ -275,7 +275,7 @@ public class VoteResultView extends ActivatableView<GridPane, Void> implements D
.append(Res.getWithCol("dao.results.votes.table.header.stake")).append(" ")
.append(bsqFormatter.formatCoinWithCode(Coin.valueOf(e.getStake()))).append("\n");
e.getBallotList().stream().forEach(ballot -> {
sb.append(Res.getWithCol("dao.results.invalidVotes.proposal")).append("\n\t")
sb.append(Res.getWithCol("shared.proposal")).append("\n\t")
.append(Res.getWithCol("shared.name")).append(" ")
.append(ballot.getProposal().getName()).append("\n\t");
sb.append(Res.getWithCol("dao.bond.table.column.link")).append(" ")