mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Fix incorrect display string name inputTooToBeAtLeast
This commit is contained in:
parent
47fb177c07
commit
a902a7b627
@ -288,7 +288,7 @@ public class ChangeParamValidator extends ProposalValidator implements Consensus
|
||||
if (change < (1 / min)) {
|
||||
double val = currentValue / min;
|
||||
String value = getFormattedValue(param, val);
|
||||
throw new ParamValidationException(ParamValidationException.ERROR.TOO_LOW, Res.get("validation.inputTooToBeAtLeast", value));
|
||||
throw new ParamValidationException(ParamValidationException.ERROR.TOO_LOW, Res.get("validation.inputToBeAtLeast", value));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2797,7 +2797,7 @@ validation.interacETransfer.invalidQuestion=Must contain only letters, numbers,
|
||||
validation.interacETransfer.invalidAnswer=Must be one word and contain only letters, numbers, and/or the symbol -
|
||||
validation.inputTooLarge=Input must not be larger than {0}
|
||||
validation.inputTooSmall=Input has to be larger than {0}
|
||||
validation.inputTooToBeAtLeast=Input has to be at least {0}
|
||||
validation.inputToBeAtLeast=Input has to be at least {0}
|
||||
validation.amountBelowDust=The amount below the dust limit of {0} is not allowed.
|
||||
validation.length=Length must be between {0} and {1}
|
||||
validation.pattern=Input must be of format: {0}
|
||||
|
Loading…
Reference in New Issue
Block a user