Neos Form change required text

Hey guys,

how can I change the error text of required fields in a Neos contact form

This property is required

Thank you for your answer

First, set the translation package to your own package, (also adjust the preset if you have a different one)

TYPO3:
  Form:
    presets:
      default:
        formElementTypes:
          'TYPO3.Form:Base':
            renderingOptions:
              translationPackage: 'Your.Package'

Then copy the default language file for form validation from TYPO3.Flow package to your package

Packages/Framework/TYPO3.Flow/Resources/Private/Translations/en/ValidationErrors.xlf

Then search for the text “This property is required” in ValidationErrors.xlf file that you just copy and adjust it to your word.

2 Likes