You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I want to change the language and I wrote this code class SurveyCreator extends Component { surveyCreator; componentDidMount() { let options = { showEmbededSurveyTab: true }; this.surveyCreator = new SurveyJSCreator.SurveyCreator( null, options, ); this.surveyCreator.survey.locale="fa";
but it changed only button text and the message after form submit
and other things are in english
what should I do ?
The text was updated successfully, but these errors were encountered:
In creator
I saw this
but I don't know where should I code
I wrote this code this.surveyCreator.survey.locale="fa"
but not complete changed
"I use React"
You are talking about the language in creator but in your code you setting language to the survey object instance inside creator.
Have you cheked the samples I've shared?
Hi,
I want to change the language and I wrote this code
class SurveyCreator extends Component { surveyCreator; componentDidMount() { let options = { showEmbededSurveyTab: true }; this.surveyCreator = new SurveyJSCreator.SurveyCreator( null, options, ); this.surveyCreator.survey.locale="fa";
but it changed only button text and the message after form submit
and other things are in english
what should I do ?
The text was updated successfully, but these errors were encountered: