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,
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"