massimomegistus

Results 6 comments of massimomegistus

Hello, I'm here again. I've realized that adding a validation error for each field solves the issue, each message is translatable as expected. Anyway, adding Translate Message records on form...

Hello Jan, I'm here again. I was wrong, even adding a validation error in the field definition, when the message is translated in a certain language, its translation in added...

Hello Jan, I have a possible fix proposal In JanVince\SmallContactForm\Components\SmallContactForm row 658 change this row $output[] = '' . Settings::getDictionaryTranslated($this->postData[$fieldSettings['name']]['error']) . ""; to this $output[] = '' . $this->postData[$fieldSettings['name']]['error'] ....

Hi @jan-vince, this specific site has 8 different locales, so I would prefer to avoid field repeater redefinition, but changing $output[] = '' . Settings::getDictionaryTranslated($this->postData[$fieldSettings['name']]['error']) . ""; to $output[] =...