Most of the options texts can be translated manually by editing the option set. This includes the option label, help text, and buttons texts.
 
However, there are some default texts from the options that can't be edited from the option set, such as the option counter for mobile devices.
 

To translate the option counter

1. Open the app settings
2. Go the the tab Developer settings
3. Paste the following code on the Custom Javascript section
window.addEventListener('customily-modal-show', function () {
    setTimeout(() => translateOptionLabel(), 200);
});
function translateOptionLabel() {
    const $optionLabels = $('#cl_optionsapp .option_number');
    if ($optionLabels.length) {
        $optionLabels.each(function () {
            $(this).html($(this).html().replace('Option', 'step'));
        });
    }
}
4. Replace with your desired language on the pasted code where it says replace with the translation for the word option and replace with the translation for the word of

Share

Was this article helpful?

0 out of 0 found this helpful
Have more questions? Submit a request