[Ticket cloned from T3044: No UI action on Complete]
One more questions…
How do I change all occurrences of the name “Survey” to the word “Form” I the UI? I am using English.
[Ticket cloned from T3044: No UI action on Complete]
One more questions…
How do I change all occurrences of the name “Survey” to the word “Form” I the UI? I am using English.
Hello,
The following code will change the text of the complete button:
JavaScriptvar englishStrings = Survey.surveyLocalization.locales["en"];
englishStrings["completeText"] = "Complete the Form";
Here is the example and here is the file with English strings.
Thank you,
Andrew
SurveyJS Team
It is pretty the same:
JavaScriptvar englishCreatorStrings = SurveyCreator.editorLocalization.getLocale("");
englishCreatorStrings.ed.logic = "Form Logic";
Here is the example and here is the file with all strings.
Thank you,
Andrew
SurveyJS Team