-
Notifications
You must be signed in to change notification settings - Fork 884
Open
Labels
Description
Describe the bug
The Chinese language codes seem to be set to zh-cn
and zh-tw
for simplified and traditional characters respectively.
setupLocale({ localeCode: "zh-cn", strings: simplifiedChineseSurveyStrings, nativeName: "简体中文", englishName: "Simplified Chinese" }); |
Setting:
const survey = new Model(surveyJson);
survey.locale = "zh-CN"
Doesn't seem to work, and falls back to English translations. However I noticed for example this works.
survey.locale = "pt-BR"
Could this be a bug?
Thanks!