Fae supports translating text fields from English to any language supported by Microsoft Translator. Clicking the translate button will take the corresponding english field and output the translated text in the appropriate field.
To set up the language translation, first follow the set up for Multiple Language Support as this feature depends on that set up.
After that is complete, add the following two ENV vars.
TRANSLATOR_TEXT_SUBSCRIPTION_KEY
TRANSLATOR_TEXT_REGIONBoth values can be found in your Microsoft Translator account.
Once all this is done, go to /admin/root and check the 'Enable Language Translations' field and save. This should enable the translation feature (translateable fields will have a 'Translate' button that will call MS Translor and return the value in the non-english field).
If there is a translatable field that you do not acutally want to be translated (URLs, slugs, ect...) simply add 'translation: false' to the field view. This will remove the 'Translate' button from that field only.
= fae_input f, :name_zh, translate: false