diff options
Diffstat (limited to 'src/util/error.cpp')
-rw-r--r-- | src/util/error.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/error.cpp b/src/util/error.cpp index 1b662d3700..9edb7dc533 100644 --- a/src/util/error.cpp +++ b/src/util/error.cpp @@ -38,10 +38,10 @@ std::string TransactionErrorString(const TransactionError err) std::string AmountHighWarn(const std::string& optname) { - return strprintf(_("%s is set very high!"), optname); + return strprintf(_("%s is set very high!").translated, optname); } std::string AmountErrMsg(const char* const optname, const std::string& strValue) { - return strprintf(_("Invalid amount for -%s=<amount>: '%s'"), optname, strValue); + return strprintf(_("Invalid amount for -%s=<amount>: '%s'").translated, optname, strValue); } |