Survey.StylesManager.applyTheme("modern");
var json = {
locale: "de",
pages: [ { name: "page1", elements: [
{
type: "matrixdropdown",
choices: [
{
value: 5,
text: {
default: "5 (the best)",
de: "5 (Das beste)"
}
}, 4, 3, 2,
{
value: 1,
text: {
default: "1 (the worst)",
de: "1 (Das Schlechteste)"
}
}
],
columns: [
{
name: "rate",
title: {
default: "Rating",
de: "Bewertung"
}
}
],
name: "favoriteMovie",
rows: [ {value: "moonlight", text: "Moonlight" },
{
value: "zootopia",
text: {
default: "Zootopia",
de: "Zoomania"
}
},
{ value: "water", text: "Hell or High Water" },
{ value: "manchester", text: "Manchester by the Sea" }, {value: "lalaland", text: "La La Land" }
],
title: {
default: "Please rate these movies",
de: "Bitte bewerten Sie diese Filme"
}
}
]
}
]
};
window.survey = new Survey.Model(json);
survey.onComplete.add(function(result) {
document.querySelector('#surveyResult').textContent =
"Result JSON:\n" + JSON.stringify(result.data, null, 3);
});
$("#surveyElement").Survey({
model: survey
});
<!DOCTYPE html>
<html lang="en">
<head>
<title>Create a survey with multi languages support. You may create a survey that can be used on a multi languages web site, jQuery Survey Library Example</title>
<meta name="viewport" content="width=device-width" />
<script src="https://unpkg.com/jquery"></script>
<script src="/DevBuilds/survey-jquery/survey.jquery.js"></script>
<link href="/DevBuilds/survey-knockout/modern.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div id="surveyElement" style="display:inline-block;width:100%;">
</div>
<div id="surveyResult"></div>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>
As you see all string properties can be represented as a json object, where key is a locale. If there is no translation for the selected locale then the 'default' value is used, or the first one, if default doesn't exist as well.