Internationalization Enum?

How does internationalization work for enums?
I have filled in a list of words, how do I fill it now in for each language so those can be used?

This topic has been created from a Discord post (1243929096610775080) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

I dont think that is possible. Enumerations are usually behaving like a constant, sicne the value you set there will be set in the DB as well. I dont think you can translate these, rather you would have to translate these on the display layer in your frontend, like Next.js or Nuxt.js. If you do not use that, I’m not quite sure if you can have translatable labels for these within the Strapi frontend directly.

I see, i feared that… ok ty