Я пытаюсь установить пользовательскую ошибку проверки с несколькими параметрами в Play !, но похоже, что мои параметры проверки отображаются неправильно.
Я определил в messages
:
validation.customerror=This is first param "%s", and this is the second "%s"
В моем коде я выполняю:
validation.addError("","validation.customerror", "FIRST", "SECOND");
И я получаю:
This is first param "", and this is the second "FIRST"
вместо
This is first param "FIRST", and this is the second "SECOND"
Мысли?