Translate back button text
Hello,
My app provides UI in several languages using the i18next plug-in.
It works fine but I wonder how it is possible to translate the text of the back button in the header.
Thank you in advance
Sophie.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hello,
My app provides UI in several languages using the i18next plug-in.
It works fine but I wonder how it is possible to translate the text of the back button in the header.
Thank you in advance
Sophie.
Hello!
Looks like it's easier to change text on button using JS on page Load prevar backTransl = {"en-EN": "Back", "es-ES": "espalda"};
$('[data-rel="back"]').text(backTransl[lang]);/pre where lang is variable where language name is stored, for example "es-ES"