Quick question: For a self-hosted installation and...
# support-questions-legacy
d
Quick question: For a self-hosted installation and custom-built Vue UI components, where do I change the language of the form validation messages (e.g. email already exists, please fill out field...)?
r
hey @dominik_21160 those need to be changed on the frontend itself. So you can make your own mapping of these messages to your lang and display those instead.
d
I have added these under a new "de"-key to the translations section in Supertokens.init(), is that correct?
I'm still getting english messages e.g. for the password validation
probably coming from the backend
r
are you using custom UI or pre built UI?
d
I'm using custom UI
r
right. So this only affects the pre built UI
for custom, you need to render it yourself. Don't use the message from the backend directly
since that's always in english
d
I see