Multilingual Form: Enable language-specific text on multilingual forms

  • philagov
    Asked on March 9, 2017 at 5:32 PM

    It would be great if the dropdown for a form with multiple languages didn't display the language in English (or whatever the primary language is set to), but instead rendered the labels in the native language they were describing. 

    For example: 

    中文 instead of Chinese

     

    It does do that for Spanish, so it would be great if it could work for other languages as well! Thanks for considering!

     

  • BJoanna
    Replied on March 10, 2017 at 5:18 AM

    I will raise your request to our developers.

    For now I can only provide you a workaround with CSS. 

    Add this CSS code to your form to change Chinese to 中文.

    .dd-placeholder.zh {

    font-size:0px;

    }

    .dd-placeholder.zh:after {

    font-size:11px;

    content:"中文";

    }

    .lang-list.light li.zh {

    font-size:0px;

    }

    li.zh:after{

    font-size:11px;

    content:"中文";

    }

    How to Inject Custom CSS Codes

    Multilingual Form: Enable language specific text on multilingual forms Image 1 Screenshot 20

    Here is my form: https://form.jotform.com/70682731497970

    Hope this will help. 

  • philagov
    Replied on March 10, 2017 at 11:05 AM

    That will work for now.

    Thanks!