How can I provide multiple languages for configuration items in manifest.yml like page title?
modules:
jira:projectPage:
- key: myapp
title: Name of App <--- This should support multi language I18n
I am using jira:projectPage in manifest.yml of my Forge Custom UI. How can I provide the page title in multiple languages e.g. en, de, ?
- Name of App (en)
- Name der App (de)
- Nom de application (fr)
- …
I can use i18next in my React app in Custom UI, but this has no influence on things like title in the manifest.yml afaik.