How to create enumeration field with i18n enabled?

System Information
  • Strapi Version: v4.16.2
  • Operating System: linux
  • Database: Postgresql
  • Node Version: v18.19.0
  • NPM Version:
  • Yarn Version:

“category”: {
“type”: “enumeration”,
“pluginOptions”: {
“i18n”: {
“localized”: true
}
},
“enum”: [
“Permanent”,
“Permanent + special”,
“Event”
],
“default”: “Permanent”
},

This is the enumeration field in my schema.json file. But I don’t know how to create an enum field for other lang since the i18n is enabled.

Can you please share your idea and information that you have done with this enumeration field?

Thank you