diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-04-21 07:53:24 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-05-01 07:41:32 -0400 |
commit | fa2cce4391b0b1bda325f695bb45f7b565c8e8ea (patch) | |
tree | 93abceb99d15fec7d1cf7f5c730b83cedcb30759 /src/wallet/feebumper.cpp | |
parent | fa59cc1c977cce8f1f28374ac2169970ca78a35f (diff) |
wallet: Remove trailing whitespace from potential translation strings
If the potential translation strings are translated in the future,
trailing whitespace is going to make translation effort harder.
Diffstat (limited to 'src/wallet/feebumper.cpp')
-rw-r--r-- | src/wallet/feebumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp index ab34a41c7f..cacf306891 100644 --- a/src/wallet/feebumper.cpp +++ b/src/wallet/feebumper.cpp @@ -220,7 +220,7 @@ Result CreateRateBumpTransaction(CWallet& wallet, const uint256& txid, const CCo int change_pos_in_out = -1; // No requested location for change bilingual_str fail_reason; if (!wallet.CreateTransaction(recipients, tx_new, fee_ret, change_pos_in_out, fail_reason, new_coin_control, false)) { - errors.push_back(Untranslated("Unable to create transaction: ") + Untranslated(" ") + fail_reason); + errors.push_back(Untranslated("Unable to create transaction.") + Untranslated(" ") + fail_reason); return Result::WALLET_ERROR; } |