survey-analytics 2.0.0-rc.7 → 2.0.0-rc.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm/shared.js +1366 -0
- package/fesm/shared.js.map +1 -0
- package/fesm/survey.analytics.js +6910 -8889
- package/fesm/survey.analytics.js.map +1 -1
- package/fesm/survey.analytics.tabulator.js +15 -1676
- package/fesm/survey.analytics.tabulator.js.map +1 -1
- package/package.json +10 -4
- package/survey-analytics-tabulator.types/tables/tabulator.d.ts +1 -0
- package/survey-analytics.types/statistics-table.d.ts +1 -0
- package/survey-analytics.types/text.d.ts +1 -0
- package/survey-analytics.types/visualizationPanel.d.ts +1 -0
- package/survey-analytics.types/visualizerBase.d.ts +1 -0
- package/survey.analytics.css +1 -1
- package/survey.analytics.js +41 -16
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +1 -1
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.tabulator.css +1 -1
- package/survey.analytics.tabulator.js +31 -11
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +1 -1
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
package/fesm/shared.js
ADDED
|
@@ -0,0 +1,1366 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v2.0.0-rc.9
|
|
3
|
+
* Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
+
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Uncomment the line below if you create a custom dictionary
|
|
8
|
+
// import { localization } from "../localizationManager";
|
|
9
|
+
var englishStrings = {
|
|
10
|
+
groupButton: "Group By Me",
|
|
11
|
+
ungroupButton: "Ungroup By Me",
|
|
12
|
+
selectButton: "Select Me",
|
|
13
|
+
hideColumn: "Hide column",
|
|
14
|
+
showColumn: "Show column",
|
|
15
|
+
makePrivateColumn: "Make column private",
|
|
16
|
+
makePublicColumn: "Make column public",
|
|
17
|
+
moveToDetail: "Move to Detail",
|
|
18
|
+
showAsColumn: "Show as Column",
|
|
19
|
+
filterPlaceholder: "Search...",
|
|
20
|
+
removeRows: "Remove rows",
|
|
21
|
+
showLabel: "Show",
|
|
22
|
+
entriesLabel: "entries",
|
|
23
|
+
visualizer_text: "Texts in table",
|
|
24
|
+
visualizer_wordcloud: "Wordcloud",
|
|
25
|
+
visualizer_histogram: "Histogram",
|
|
26
|
+
visualizer_number: "Average",
|
|
27
|
+
visualizer_choices: "Table",
|
|
28
|
+
visualizer_selectBase: "Chart",
|
|
29
|
+
visualizer_matrix: "Chart",
|
|
30
|
+
chartType_bar: "Bar",
|
|
31
|
+
chartType_vbar: "Vertical Bar",
|
|
32
|
+
chartType_stackedbar: "Stacked Bar",
|
|
33
|
+
chartType_doughnut: "Doughnut",
|
|
34
|
+
chartType_pie: "Pie",
|
|
35
|
+
chartType_scatter: "Scatter",
|
|
36
|
+
chartType_gauge: "Gauge",
|
|
37
|
+
chartType_bullet: "Bullet",
|
|
38
|
+
chartType_line: "Line",
|
|
39
|
+
hideButton: "Hide",
|
|
40
|
+
makePrivateButton: "Make private",
|
|
41
|
+
makePublicButton: "Make public",
|
|
42
|
+
showButton: "Show",
|
|
43
|
+
filter: "Filter",
|
|
44
|
+
resetFilter: "Reset Filter",
|
|
45
|
+
changeLocale: "Change Locale",
|
|
46
|
+
clearButton: "Clear",
|
|
47
|
+
addElement: "Choose question to show...",
|
|
48
|
+
defaultOrder: "Default Order",
|
|
49
|
+
ascOrder: "Ascending",
|
|
50
|
+
descOrder: "Descending",
|
|
51
|
+
showMinorColumns: "Show minor columns",
|
|
52
|
+
otherCommentTitle: "Other items and comments",
|
|
53
|
+
showPercentages: "Show percentages",
|
|
54
|
+
hidePercentages: "Hide percentages",
|
|
55
|
+
pdfDownloadCaption: "PDF",
|
|
56
|
+
xlsxDownloadCaption: "Excel",
|
|
57
|
+
csvDownloadCaption: "CSV",
|
|
58
|
+
saveDiagramAsPNG: "Download plot as a PNG file",
|
|
59
|
+
hideEmptyAnswers: "Hide empty answers",
|
|
60
|
+
showEmptyAnswers: "Show empty answers",
|
|
61
|
+
"topNValueText-1": "All answers",
|
|
62
|
+
"topNValueText5": "Top 5 answers",
|
|
63
|
+
"topNValueText10": "Top 10 answers",
|
|
64
|
+
"topNValueText20": "Top 20 answers",
|
|
65
|
+
hideMissingAnswers: "Hide missing answers",
|
|
66
|
+
showMissingAnswers: "Show missing answers",
|
|
67
|
+
missingAnswersLabel: "Missing answers",
|
|
68
|
+
noVisualizerForQuestion: "This question type is not visualized yet",
|
|
69
|
+
noResults: "There are no results yet",
|
|
70
|
+
showPerValues: "Per Values",
|
|
71
|
+
showPerColumns: "Per Columns",
|
|
72
|
+
answer: "Answer",
|
|
73
|
+
correctAnswer: "Correct answer: ",
|
|
74
|
+
percent: "Percent",
|
|
75
|
+
percentage: "Percentage",
|
|
76
|
+
statistics_chart: "Chart",
|
|
77
|
+
responses: "Responses",
|
|
78
|
+
visualizer_nps: "NPS",
|
|
79
|
+
npsScore: "NPS",
|
|
80
|
+
npsPromoters: "Promoters",
|
|
81
|
+
npsPassives: "Passives",
|
|
82
|
+
npsDetractors: "Detractors",
|
|
83
|
+
};
|
|
84
|
+
// Uncomment the lines below if you create a custom dictionary.
|
|
85
|
+
// Replace "en" with a custom locale code (for example, "fr" or "de"),
|
|
86
|
+
// Replace `englishStrings` with the name of the variable that contains the custom dictionary.
|
|
87
|
+
// localization.locales["en"] = englishStrings;
|
|
88
|
+
// localization.localeNames["en"] = "English";
|
|
89
|
+
|
|
90
|
+
var localization = {
|
|
91
|
+
currentLocaleValue: "",
|
|
92
|
+
defaultLocaleValue: "en",
|
|
93
|
+
locales: {},
|
|
94
|
+
localeNames: {},
|
|
95
|
+
supportedLocales: [],
|
|
96
|
+
get currentLocale() {
|
|
97
|
+
return this.currentLocaleValue === this.defaultLocaleValue
|
|
98
|
+
? ""
|
|
99
|
+
: this.currentLocaleValue;
|
|
100
|
+
},
|
|
101
|
+
set currentLocale(val) {
|
|
102
|
+
this.currentLocaleValue = val;
|
|
103
|
+
},
|
|
104
|
+
get defaultLocale() {
|
|
105
|
+
return this.defaultLocaleValue;
|
|
106
|
+
},
|
|
107
|
+
set defaultLocale(val) {
|
|
108
|
+
this.defaultLocaleValue = val;
|
|
109
|
+
},
|
|
110
|
+
getString: function (strName) {
|
|
111
|
+
var loc = this.currentLocale
|
|
112
|
+
? this.locales[this.currentLocale]
|
|
113
|
+
: this.locales[this.defaultLocale];
|
|
114
|
+
if (!loc || !loc[strName])
|
|
115
|
+
loc = this.locales[this.defaultLocale];
|
|
116
|
+
var result = loc[strName];
|
|
117
|
+
if (result === undefined) {
|
|
118
|
+
result = this.locales["en"][strName] || strName;
|
|
119
|
+
}
|
|
120
|
+
return result;
|
|
121
|
+
},
|
|
122
|
+
getLocales: function () {
|
|
123
|
+
var res = [];
|
|
124
|
+
res.push("");
|
|
125
|
+
if (this.supportedLocales && this.supportedLocales.length > 0) {
|
|
126
|
+
for (var i = 0; i < this.supportedLocales.length; i++) {
|
|
127
|
+
res.push(this.supportedLocales[i]);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
else {
|
|
131
|
+
for (var key in this.locales) {
|
|
132
|
+
res.push(key);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
res.sort();
|
|
136
|
+
return res;
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
var surveyStrings = englishStrings;
|
|
140
|
+
localization.locales["en"] = englishStrings;
|
|
141
|
+
localization.localeNames["en"] = "English";
|
|
142
|
+
|
|
143
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
144
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
145
|
+
var farsiStrings = {
|
|
146
|
+
groupButton: "گروه بندی با",
|
|
147
|
+
ungroupButton: "حذف گروه",
|
|
148
|
+
selectButton: "انتخاب",
|
|
149
|
+
hideColumn: "مخفی کردن ستون",
|
|
150
|
+
showColumn: "نمایش ستون",
|
|
151
|
+
makePrivateColumn: "خصوصی کردن ستون",
|
|
152
|
+
makePublicColumn: "عمومی کردن ستون",
|
|
153
|
+
moveToDetail: "انتقال به جزئیات",
|
|
154
|
+
showAsColumn: "نمایش به عنوان ستون",
|
|
155
|
+
filterPlaceholder: "جستجو...",
|
|
156
|
+
removeRows: "حذف سطرها",
|
|
157
|
+
showLabel: "نمایش",
|
|
158
|
+
entriesLabel: "ورودی",
|
|
159
|
+
visualizer_text: "متون در جدول",
|
|
160
|
+
visualizer_wordcloud: "ابر کلمات",
|
|
161
|
+
visualizer_histogram: "هیستوگرام",
|
|
162
|
+
visualizer_number: "متوسط",
|
|
163
|
+
visualizer_choices: "جدول",
|
|
164
|
+
visualizer_selectBase: "نمودار",
|
|
165
|
+
// visualizer_matrix: "Chart",
|
|
166
|
+
chartType_bar: "میله ای",
|
|
167
|
+
chartType_vbar: "نوار عمودی",
|
|
168
|
+
chartType_stackedbar: "نوار پشته",
|
|
169
|
+
chartType_doughnut: "دونات",
|
|
170
|
+
chartType_pie: "دابره ای(pie)",
|
|
171
|
+
chartType_scatter: "پراکندگی(Scatter)",
|
|
172
|
+
chartType_gauge: "عقربه ای",
|
|
173
|
+
chartType_bullet: "Bullet",
|
|
174
|
+
hideButton: "مخفی",
|
|
175
|
+
makePrivateButton: "خصوصی کردن",
|
|
176
|
+
makePublicButton: "عمومی کردن",
|
|
177
|
+
showButton: "نمایش",
|
|
178
|
+
filter: "فیلتر",
|
|
179
|
+
resetFilter: "بازنشانی فیلترها",
|
|
180
|
+
changeLocale: "تغییر محلی",
|
|
181
|
+
clearButton: "پاک کردن",
|
|
182
|
+
addElement: "انتخاب سوال برای نمایش...",
|
|
183
|
+
defaultOrder: "ترتیب پیشفرض",
|
|
184
|
+
ascOrder: "صعودی",
|
|
185
|
+
descOrder: "نزولی",
|
|
186
|
+
showMinorColumns: "نمایش ستونهای فرعی",
|
|
187
|
+
otherCommentTitle: "سایر موارد و نظرات",
|
|
188
|
+
showPercentages: "نمایش درصد",
|
|
189
|
+
hidePercentages: "درصدهای مخفی",
|
|
190
|
+
pdfDownloadCaption: "پی دی اف",
|
|
191
|
+
xlsxDownloadCaption: "اکسل",
|
|
192
|
+
csvDownloadCaption: "Csv",
|
|
193
|
+
saveDiagramAsPNG: "دانلود طرح به عنوان یک فایل PNG",
|
|
194
|
+
hideEmptyAnswers: "مخفی کردن پاسخهای خالی",
|
|
195
|
+
showEmptyAnswers: "نمایش پاسخهای خالی",
|
|
196
|
+
"topNValueText-1": "همه پاسخ ها",
|
|
197
|
+
topNValueText5: "5 پاسخ برتر",
|
|
198
|
+
topNValueText10: "10 پاسخ برتر",
|
|
199
|
+
topNValueText20: "20 پاسخ برتر",
|
|
200
|
+
hideMissingAnswers: "مخفی کردن پاسخهای گمشده",
|
|
201
|
+
showMissingAnswers: "نمایش پاسخهای گمشده",
|
|
202
|
+
missingAnswersLabel: "پاسخ های گمشده",
|
|
203
|
+
noVisualizerForQuestion: "این نوع سوال هنوز تجسم نشده است",
|
|
204
|
+
noResults: "هنوز نتیجه ای حاصل نشده است",
|
|
205
|
+
showPerValues: "به ازای هر ارزش",
|
|
206
|
+
showPerColumns: "در هر ستون",
|
|
207
|
+
answer: "پاسخ",
|
|
208
|
+
correctAnswer: "پاسخ صحیح: ",
|
|
209
|
+
percent: "درصد",
|
|
210
|
+
responses: "پاسخ"
|
|
211
|
+
};
|
|
212
|
+
localization.locales["fa"] = farsiStrings;
|
|
213
|
+
localization.localeNames["fa"] = "فارسی";
|
|
214
|
+
// The following strings have been translated by a machine translation service
|
|
215
|
+
// Remove those strings that you have corrected manually
|
|
216
|
+
// undefined.makePrivateColumn: "Make column private" => "خصوصی کردن ستون"
|
|
217
|
+
// undefined.makePublicColumn: "Make column public" => "عمومی کردن ستون"
|
|
218
|
+
// undefined.filterPlaceholder: "Search..." => "جستجو..."
|
|
219
|
+
// undefined.removeRows: "Remove rows" => "حذف سطرها"
|
|
220
|
+
// undefined.showLabel: "Show" => "نمایش"
|
|
221
|
+
// undefined.entriesLabel: "entries" => "ورودی"
|
|
222
|
+
// undefined.visualizer_histogram: "Histogram" => "هیستوگرام"
|
|
223
|
+
// undefined.visualizer_number: "Average" => "متوسط"
|
|
224
|
+
// undefined.visualizer_choices: "Table" => "جدول"
|
|
225
|
+
// undefined.visualizer_selectBase: "Chart" => "نمودار"
|
|
226
|
+
// undefined.chartType_vbar: "Vertical Bar" => "نوار عمودی"
|
|
227
|
+
// undefined.chartType_stackedbar: "Stacked Bar" => "نوار پشته"
|
|
228
|
+
// undefined.chartType_doughnut: "Doughnut" => "دونات"
|
|
229
|
+
// undefined.makePrivateButton: "Make private" => "خصوصی کردن"
|
|
230
|
+
// undefined.makePublicButton: "Make public" => "عمومی کردن"
|
|
231
|
+
// undefined.showButton: "Show" => "نمایش"
|
|
232
|
+
// undefined.filter: "Filter" => "فیلتر"
|
|
233
|
+
// undefined.changeLocale: "Change Locale" => "تغییر محلی"
|
|
234
|
+
// undefined.defaultOrder: "Default Order" => "ترتیب پیشفرض"
|
|
235
|
+
// undefined.ascOrder: "Ascending" => "صعودی"
|
|
236
|
+
// undefined.descOrder: "Descending" => "نزولی"
|
|
237
|
+
// undefined.showMinorColumns: "Show minor columns" => "نمایش ستونهای فرعی"
|
|
238
|
+
// undefined.otherCommentTitle: "Other items and comments" => "سایر موارد و نظرات"
|
|
239
|
+
// undefined.showPercentages: "Show percentages" => "نمایش درصد"
|
|
240
|
+
// undefined.hidePercentages: "Hide percentages" => "درصدهای مخفی"
|
|
241
|
+
// undefined.pdfDownloadCaption: "PDF" => "پی دی اف"
|
|
242
|
+
// undefined.xlsxDownloadCaption: "Excel" => "اکسل"
|
|
243
|
+
// undefined.csvDownloadCaption: "CSV" => "Csv"
|
|
244
|
+
// undefined.saveDiagramAsPNG: "Download plot as a PNG file" => "دانلود طرح به عنوان یک فایل PNG"
|
|
245
|
+
// undefined.hideEmptyAnswers: "Hide empty answers" => "مخفی کردن پاسخهای خالی"
|
|
246
|
+
// undefined.showEmptyAnswers: "Show empty answers" => "نمایش پاسخهای خالی"
|
|
247
|
+
// undefined.topNValueText-1: "All answers" => "همه پاسخ ها"
|
|
248
|
+
// undefined.topNValueText5: "Top 5 answers" => "5 پاسخ برتر"
|
|
249
|
+
// undefined.topNValueText10: "Top 10 answers" => "10 پاسخ برتر"
|
|
250
|
+
// undefined.topNValueText20: "Top 20 answers" => "20 پاسخ برتر"
|
|
251
|
+
// undefined.hideMissingAnswers: "Hide missing answers" => "مخفی کردن پاسخهای گمشده"
|
|
252
|
+
// undefined.showMissingAnswers: "Show missing answers" => "نمایش پاسخهای گمشده"
|
|
253
|
+
// undefined.missingAnswersLabel: "Missing answers" => "پاسخ های گمشده"
|
|
254
|
+
// undefined.noVisualizerForQuestion: "This question type is not visualized yet" => "این نوع سوال هنوز تجسم نشده است"
|
|
255
|
+
// undefined.noResults: "There are no results yet" => "هنوز نتیجه ای حاصل نشده است"
|
|
256
|
+
// undefined.showPerValues: "Per Values" => "به ازای هر ارزش"
|
|
257
|
+
// undefined.showPerColumns: "Per Columns" => "در هر ستون"
|
|
258
|
+
// undefined.answer: "Answer" => "پاسخ"
|
|
259
|
+
// undefined.correctAnswer: "Correct answer: " => "پاسخ صحیح: "
|
|
260
|
+
// undefined.percent: "Percent" => "درصد"
|
|
261
|
+
// undefined.responses: "Responses" => "پاسخ"
|
|
262
|
+
|
|
263
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
264
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
265
|
+
var frenchStrings = {
|
|
266
|
+
groupButton: "Grouper",
|
|
267
|
+
ungroupButton: "Dissocier",
|
|
268
|
+
selectButton: "Sélectionner",
|
|
269
|
+
hideColumn: "Masquer colonne",
|
|
270
|
+
showColumn: "Afficher colonne",
|
|
271
|
+
makePrivateColumn: "Rendre la colonne privé",
|
|
272
|
+
makePublicColumn: "Rendre la colonne public",
|
|
273
|
+
moveToDetail: "Déplacer vers détails",
|
|
274
|
+
showAsColumn: "Afficher en colonne",
|
|
275
|
+
filterPlaceholder: "Rechercher...",
|
|
276
|
+
removeRows: "Supprimer colonne",
|
|
277
|
+
showLabel: "Afficher",
|
|
278
|
+
entriesLabel: "entrées",
|
|
279
|
+
visualizer_text: "Textes en table",
|
|
280
|
+
visualizer_wordcloud: "Nuages de mots",
|
|
281
|
+
visualizer_histogram: "Histogramme",
|
|
282
|
+
visualizer_number: "Moyenne",
|
|
283
|
+
visualizer_choices: "Table",
|
|
284
|
+
visualizer_selectBase: "Graphique",
|
|
285
|
+
// visualizer_matrix: "Chart",
|
|
286
|
+
chartType_bar: "Barres",
|
|
287
|
+
chartType_vbar: "Barre verticale",
|
|
288
|
+
chartType_stackedbar: "Barres empilées",
|
|
289
|
+
chartType_doughnut: "Anneau",
|
|
290
|
+
chartType_pie: "Secteurs",
|
|
291
|
+
chartType_scatter: "Nuages de points",
|
|
292
|
+
chartType_gauge: "Gauge",
|
|
293
|
+
chartType_bullet: "Bulles",
|
|
294
|
+
hideButton: "Masquer",
|
|
295
|
+
makePrivateButton: "Rendre privé",
|
|
296
|
+
makePublicButton: "Rendre publique",
|
|
297
|
+
showButton: "Afficher",
|
|
298
|
+
filter: "Filtre",
|
|
299
|
+
resetFilter: "Rafraichir Filtres",
|
|
300
|
+
changeLocale: "Changer les paramètres régionaux",
|
|
301
|
+
clearButton: "Rafraichir",
|
|
302
|
+
addElement: "Choisir la question à afficher...",
|
|
303
|
+
defaultOrder: "Defaut",
|
|
304
|
+
ascOrder: "Ascendant",
|
|
305
|
+
descOrder: "Descendant",
|
|
306
|
+
showMinorColumns: "Afficher les colonnes mineures",
|
|
307
|
+
otherCommentTitle: "Autre élément et commentaires",
|
|
308
|
+
showPercentages: "Afficher les pourcentages",
|
|
309
|
+
hidePercentages: "Masquer les pourcentages",
|
|
310
|
+
pdfDownloadCaption: "PDF",
|
|
311
|
+
xlsxDownloadCaption: "Exceller",
|
|
312
|
+
csvDownloadCaption: "Fichier CSV",
|
|
313
|
+
saveDiagramAsPNG: "Sauver en png",
|
|
314
|
+
hideEmptyAnswers: "Masquer les réponses vides",
|
|
315
|
+
showEmptyAnswers: "Afficher les réponses vides",
|
|
316
|
+
"topNValueText-1": "Toutes les réponses",
|
|
317
|
+
topNValueText5: "Top 5 des réponses",
|
|
318
|
+
topNValueText10: "Top 10 des réponses",
|
|
319
|
+
topNValueText20: "Top 20 des réponses",
|
|
320
|
+
hideMissingAnswers: "Masquer les réponses manquantes",
|
|
321
|
+
showMissingAnswers: "Afficher les réponses manquantes",
|
|
322
|
+
missingAnswersLabel: "Réponses manquantes",
|
|
323
|
+
noVisualizerForQuestion: "Ce type de question n'est pas encore visualisé",
|
|
324
|
+
noResults: "Il n'y a pas encore de résultats",
|
|
325
|
+
showPerValues: "Par valeur",
|
|
326
|
+
showPerColumns: "Par colonne",
|
|
327
|
+
answer: "Réponse",
|
|
328
|
+
correctAnswer: "Réponse correcte: ",
|
|
329
|
+
percent: "Pourcentage",
|
|
330
|
+
responses: "Réponses"
|
|
331
|
+
};
|
|
332
|
+
localization.locales["fr"] = frenchStrings;
|
|
333
|
+
localization.localeNames["fr"] = "Français";
|
|
334
|
+
// The following strings have been translated by a machine translation service
|
|
335
|
+
// Remove those strings that you have corrected manually
|
|
336
|
+
// undefined.visualizer_histogram: "Histogram" => "Histogramme"
|
|
337
|
+
// undefined.visualizer_number: "Average" => "Moyenne"
|
|
338
|
+
// undefined.visualizer_choices: "Table" => "Table"
|
|
339
|
+
// undefined.visualizer_selectBase: "Chart" => "Graphique"
|
|
340
|
+
// undefined.chartType_vbar: "Vertical Bar" => "Barre verticale"
|
|
341
|
+
// undefined.changeLocale: "Change Locale" => "Changer les paramètres régionaux"
|
|
342
|
+
// undefined.showPercentages: "Show percentages" => "Afficher les pourcentages"
|
|
343
|
+
// undefined.hidePercentages: "Hide percentages" => "Masquer les pourcentages"
|
|
344
|
+
// undefined.pdfDownloadCaption: "PDF" => "PDF"
|
|
345
|
+
// undefined.xlsxDownloadCaption: "Excel" => "Exceller"
|
|
346
|
+
// undefined.csvDownloadCaption: "CSV" => "Fichier CSV"
|
|
347
|
+
// undefined.hideEmptyAnswers: "Hide empty answers" => "Masquer les réponses vides"
|
|
348
|
+
// undefined.showEmptyAnswers: "Show empty answers" => "Afficher les réponses vides"
|
|
349
|
+
// undefined.topNValueText-1: "All answers" => "Toutes les réponses"
|
|
350
|
+
// undefined.topNValueText5: "Top 5 answers" => "Top 5 des réponses"
|
|
351
|
+
// undefined.topNValueText10: "Top 10 answers" => "Top 10 des réponses"
|
|
352
|
+
// undefined.topNValueText20: "Top 20 answers" => "Top 20 des réponses"
|
|
353
|
+
// undefined.hideMissingAnswers: "Hide missing answers" => "Masquer les réponses manquantes"
|
|
354
|
+
// undefined.showMissingAnswers: "Show missing answers" => "Afficher les réponses manquantes"
|
|
355
|
+
// undefined.missingAnswersLabel: "Missing answers" => "Réponses manquantes"
|
|
356
|
+
|
|
357
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
358
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
359
|
+
var germanStrings = {
|
|
360
|
+
groupButton: "Gruppieren",
|
|
361
|
+
ungroupButton: "Gruppierung aufheben",
|
|
362
|
+
selectButton: "Mich auswählen",
|
|
363
|
+
hideColumn: "Spalte ausblenden",
|
|
364
|
+
showColumn: "Spalte einblenden",
|
|
365
|
+
makePrivateColumn: "Spalte privat machen",
|
|
366
|
+
makePublicColumn: "Spalte veröffentlichen",
|
|
367
|
+
moveToDetail: "in Details verschieben",
|
|
368
|
+
showAsColumn: "Als Spalte anzeigen",
|
|
369
|
+
filterPlaceholder: "Suche...",
|
|
370
|
+
removeRows: "Zeilen entfernen",
|
|
371
|
+
showLabel: "anzeigen",
|
|
372
|
+
entriesLabel: "Einträge",
|
|
373
|
+
visualizer_text: "Texte in Tabellenform",
|
|
374
|
+
visualizer_wordcloud: "Wordcloud",
|
|
375
|
+
visualizer_histogram: "Histogramm",
|
|
376
|
+
visualizer_number: "Durchschnitt",
|
|
377
|
+
visualizer_choices: "Liste",
|
|
378
|
+
visualizer_selectBase: "Diagrammtyp",
|
|
379
|
+
// visualizer_matrix: "Chart",
|
|
380
|
+
chartType_bar: "Balkendiagramm",
|
|
381
|
+
chartType_vbar: "Balkendiagramm vertikal",
|
|
382
|
+
chartType_stackedbar: "Gestapeltes Balkendiagramm",
|
|
383
|
+
chartType_doughnut: "Donut-Diagramm",
|
|
384
|
+
chartType_pie: "Kreisdiagramm",
|
|
385
|
+
chartType_scatter: "Punktediagramm",
|
|
386
|
+
chartType_gauge: "Pegeldiagramm",
|
|
387
|
+
chartType_bullet: "Aufzählungsdiagramm",
|
|
388
|
+
hideButton: "Ausblenden",
|
|
389
|
+
makePrivateButton: "Privat machen",
|
|
390
|
+
makePublicButton: "Öffentlich machen",
|
|
391
|
+
showButton: "Anzeigen",
|
|
392
|
+
filter: "Filter",
|
|
393
|
+
resetFilter: "Filter zurücksetzen",
|
|
394
|
+
changeLocale: "Lokalisierung ändern",
|
|
395
|
+
clearButton: "Einstellungen löschen",
|
|
396
|
+
addElement: "Wählen Sie eine Frage, um zu zeigen...",
|
|
397
|
+
defaultOrder: "Standardreihenfolge",
|
|
398
|
+
ascOrder: "Aufsteigend",
|
|
399
|
+
descOrder: "Absteigend",
|
|
400
|
+
showMinorColumns: "Kleinere Spalten anzeigen",
|
|
401
|
+
otherCommentTitle: "Andere Punkte und Kommentare",
|
|
402
|
+
showPercentages: "Prozentsätze anzeigen",
|
|
403
|
+
hidePercentages: "Prozentsätze ausblenden",
|
|
404
|
+
pdfDownloadCaption: "PDF",
|
|
405
|
+
xlsxDownloadCaption: "Excel",
|
|
406
|
+
csvDownloadCaption: "CSV",
|
|
407
|
+
saveDiagramAsPNG: "Diagramm als png herunterladen",
|
|
408
|
+
hideEmptyAnswers: "Leere Antworten ausblenden",
|
|
409
|
+
showEmptyAnswers: "Leere Antworten anzeigen",
|
|
410
|
+
"topNValueText-1": "Alle Antworten",
|
|
411
|
+
topNValueText5: "Top 5 Antworten",
|
|
412
|
+
topNValueText10: "Top 10 Antworten",
|
|
413
|
+
topNValueText20: "Top 20 Antworten",
|
|
414
|
+
hideMissingAnswers: "Fehlende Antworten ausblenden",
|
|
415
|
+
showMissingAnswers: "Fehlende Antworten anzeigen",
|
|
416
|
+
missingAnswersLabel: "Fehlede Antworten",
|
|
417
|
+
noVisualizerForQuestion: "Für diesen Fragetyp gibt es noch keine Visualisierung.",
|
|
418
|
+
noResults: "Es liegen noch keine Ergebnisse vor",
|
|
419
|
+
showPerValues: "Pro Wert",
|
|
420
|
+
showPerColumns: "Pro Spalte",
|
|
421
|
+
answer: "Antwort",
|
|
422
|
+
correctAnswer: "Korrekte Antwort: ",
|
|
423
|
+
percent: "Prozent",
|
|
424
|
+
responses: "Antworten"
|
|
425
|
+
};
|
|
426
|
+
localization.locales["de"] = germanStrings;
|
|
427
|
+
localization.localeNames["de"] = "Deutsch";
|
|
428
|
+
|
|
429
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
430
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
431
|
+
var norwegianStrings = {
|
|
432
|
+
groupButton: "Grupper",
|
|
433
|
+
ungroupButton: "Opphev gruppering",
|
|
434
|
+
selectButton: "Velg",
|
|
435
|
+
hideColumn: "Skjul kolonne",
|
|
436
|
+
showColumn: "Vis kolonne",
|
|
437
|
+
makePrivateColumn: "Gjør kolonne privat",
|
|
438
|
+
makePublicColumn: "Gjør kolonne offentlig",
|
|
439
|
+
moveToDetail: "Flytt til detaljert visning",
|
|
440
|
+
showAsColumn: "Vis som kolonne",
|
|
441
|
+
filterPlaceholder: "Søk...",
|
|
442
|
+
removeRows: "Fjern rader",
|
|
443
|
+
showLabel: "Vis",
|
|
444
|
+
entriesLabel: "oppføringer",
|
|
445
|
+
visualizer_text: "Tabellvisning",
|
|
446
|
+
visualizer_wordcloud: "Ordsky",
|
|
447
|
+
visualizer_histogram: "Histogram",
|
|
448
|
+
visualizer_number: "Gjennomsnitt",
|
|
449
|
+
visualizer_choices: "Bord",
|
|
450
|
+
visualizer_selectBase: "Sjøkart",
|
|
451
|
+
// visualizer_matrix: "Chart",
|
|
452
|
+
chartType_bar: "Stolpediagram",
|
|
453
|
+
chartType_vbar: "Vertikal stolpe",
|
|
454
|
+
chartType_stackedbar: "Stablet stolpediagram",
|
|
455
|
+
chartType_doughnut: "Hjuldiagram",
|
|
456
|
+
chartType_pie: "Sektordiagram",
|
|
457
|
+
chartType_scatter: "Punktdiagram",
|
|
458
|
+
chartType_gauge: "Målediagram",
|
|
459
|
+
chartType_bullet: "Kulediagram",
|
|
460
|
+
hideButton: "Skjul",
|
|
461
|
+
makePrivateButton: "Gjør privat",
|
|
462
|
+
makePublicButton: "Gjør offentlig",
|
|
463
|
+
showButton: "Vis",
|
|
464
|
+
filter: "Filter",
|
|
465
|
+
resetFilter: "Nullstill filter",
|
|
466
|
+
changeLocale: "Bytt språk",
|
|
467
|
+
clearButton: "Tøm",
|
|
468
|
+
addElement: "Velg spørsmål...",
|
|
469
|
+
defaultOrder: "Standard",
|
|
470
|
+
ascOrder: "Stigende",
|
|
471
|
+
descOrder: "Synkende",
|
|
472
|
+
showMinorColumns: "Vis mindre kolonner",
|
|
473
|
+
otherCommentTitle: "Annet og kommentarer",
|
|
474
|
+
showPercentages: "Vis prosenter",
|
|
475
|
+
hidePercentages: "Skjul prosenter",
|
|
476
|
+
pdfDownloadCaption: "PDF",
|
|
477
|
+
xlsxDownloadCaption: "Overgå",
|
|
478
|
+
csvDownloadCaption: "CSV",
|
|
479
|
+
saveDiagramAsPNG: "Last ned plott som en PNG-fil",
|
|
480
|
+
hideEmptyAnswers: "Skjul tomme svar",
|
|
481
|
+
showEmptyAnswers: "Vis tomme svar",
|
|
482
|
+
"topNValueText-1": "Alle svar",
|
|
483
|
+
topNValueText5: "Topp 5 svar",
|
|
484
|
+
topNValueText10: "Topp 10 svar",
|
|
485
|
+
topNValueText20: "Topp 20 svar",
|
|
486
|
+
hideMissingAnswers: "Skjul manglende svar",
|
|
487
|
+
showMissingAnswers: "Vis manglende svar",
|
|
488
|
+
missingAnswersLabel: "Mangler svar",
|
|
489
|
+
noVisualizerForQuestion: "Denne spørsmålstypen er ikke visualisert ennå",
|
|
490
|
+
noResults: "Det er ingen resultater ennå",
|
|
491
|
+
showPerValues: "Per verdier",
|
|
492
|
+
showPerColumns: "Per kolonner",
|
|
493
|
+
answer: "Svare",
|
|
494
|
+
correctAnswer: "Riktig svar: ",
|
|
495
|
+
percent: "Prosent",
|
|
496
|
+
responses: "Svar"
|
|
497
|
+
};
|
|
498
|
+
localization.locales["no"] = norwegianStrings;
|
|
499
|
+
localization.localeNames["no"] = "Norsk";
|
|
500
|
+
// The following strings have been translated by a machine translation service
|
|
501
|
+
// Remove those strings that you have corrected manually
|
|
502
|
+
// undefined.visualizer_histogram: "Histogram" => "Histogram"
|
|
503
|
+
// undefined.visualizer_number: "Average" => "Gjennomsnitt"
|
|
504
|
+
// undefined.visualizer_choices: "Table" => "Bord"
|
|
505
|
+
// undefined.visualizer_selectBase: "Chart" => "Sjøkart"
|
|
506
|
+
// undefined.chartType_vbar: "Vertical Bar" => "Vertikal stolpe"
|
|
507
|
+
// undefined.filter: "Filter" => "Filter"
|
|
508
|
+
// undefined.pdfDownloadCaption: "PDF" => "PDF"
|
|
509
|
+
// undefined.xlsxDownloadCaption: "Excel" => "Overgå"
|
|
510
|
+
// undefined.csvDownloadCaption: "CSV" => "CSV"
|
|
511
|
+
// undefined.saveDiagramAsPNG: "Download plot as a PNG file" => "Last ned plott som en PNG-fil"
|
|
512
|
+
// undefined.hideEmptyAnswers: "Hide empty answers" => "Skjul tomme svar"
|
|
513
|
+
// undefined.showEmptyAnswers: "Show empty answers" => "Vis tomme svar"
|
|
514
|
+
// undefined.topNValueText-1: "All answers" => "Alle svar"
|
|
515
|
+
// undefined.topNValueText5: "Top 5 answers" => "Topp 5 svar"
|
|
516
|
+
// undefined.topNValueText10: "Top 10 answers" => "Topp 10 svar"
|
|
517
|
+
// undefined.topNValueText20: "Top 20 answers" => "Topp 20 svar"
|
|
518
|
+
// undefined.hideMissingAnswers: "Hide missing answers" => "Skjul manglende svar"
|
|
519
|
+
// undefined.showMissingAnswers: "Show missing answers" => "Vis manglende svar"
|
|
520
|
+
// undefined.missingAnswersLabel: "Missing answers" => "Mangler svar"
|
|
521
|
+
// undefined.noVisualizerForQuestion: "This question type is not visualized yet" => "Denne spørsmålstypen er ikke visualisert ennå"
|
|
522
|
+
// undefined.noResults: "There are no results yet" => "Det er ingen resultater ennå"
|
|
523
|
+
// undefined.showPerValues: "Per Values" => "Per verdier"
|
|
524
|
+
// undefined.showPerColumns: "Per Columns" => "Per kolonner"
|
|
525
|
+
// undefined.answer: "Answer" => "Svare"
|
|
526
|
+
// undefined.correctAnswer: "Correct answer: " => "Riktig svar: "
|
|
527
|
+
// undefined.percent: "Percent" => "Prosent"
|
|
528
|
+
// undefined.responses: "Responses" => "Svar"
|
|
529
|
+
|
|
530
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
531
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
532
|
+
var portugueseStrings = {
|
|
533
|
+
groupButton: "Agrupar Por Mim",
|
|
534
|
+
ungroupButton: "Desagrupar Por Mim",
|
|
535
|
+
selectButton: "Selecionar",
|
|
536
|
+
hideColumn: "Esconder coluna",
|
|
537
|
+
showColumn: "Mostrar coluna",
|
|
538
|
+
makePrivateColumn: "Tornar coluna privada",
|
|
539
|
+
makePublicColumn: "Tornar coluna pública",
|
|
540
|
+
moveToDetail: "Mover para Detalhes",
|
|
541
|
+
showAsColumn: "Mostrar como Coluna",
|
|
542
|
+
filterPlaceholder: "Pesquisar...",
|
|
543
|
+
removeRows: "Remover linhas",
|
|
544
|
+
showLabel: "Mostrar",
|
|
545
|
+
entriesLabel: "entradas",
|
|
546
|
+
visualizer_text: "Textos em tabela",
|
|
547
|
+
visualizer_wordcloud: "Nuvem de palavras",
|
|
548
|
+
visualizer_histogram: "Histograma",
|
|
549
|
+
visualizer_number: "Média",
|
|
550
|
+
visualizer_choices: "Tabela",
|
|
551
|
+
visualizer_selectBase: "Gráfico",
|
|
552
|
+
// visualizer_matrix: "Chart",
|
|
553
|
+
chartType_bar: "Barra",
|
|
554
|
+
chartType_vbar: "Barra vertical",
|
|
555
|
+
chartType_stackedbar: "Barra Empilhada",
|
|
556
|
+
chartType_doughnut: "Rosca",
|
|
557
|
+
chartType_pie: "Tarte",
|
|
558
|
+
chartType_scatter: "Lastro",
|
|
559
|
+
chartType_gauge: "Escala",
|
|
560
|
+
chartType_bullet: "Bala",
|
|
561
|
+
hideButton: "Esconder",
|
|
562
|
+
makePrivateButton: "Tornar privado",
|
|
563
|
+
makePublicButton: "Tornar público",
|
|
564
|
+
showButton: "Mostrar",
|
|
565
|
+
filter: "Filtrar",
|
|
566
|
+
resetFilter: "Restaurar Filtro",
|
|
567
|
+
changeLocale: "Mudar Localização",
|
|
568
|
+
clearButton: "Limpar",
|
|
569
|
+
addElement: "Escolher questão para mostrar...",
|
|
570
|
+
defaultOrder: "Ordenação Padrão",
|
|
571
|
+
ascOrder: "Ascendente",
|
|
572
|
+
descOrder: "Descendente",
|
|
573
|
+
showMinorColumns: "Mostrar colunas menores",
|
|
574
|
+
otherCommentTitle: "Outros itens e comentários",
|
|
575
|
+
showPercentages: "Mostrar percentuais",
|
|
576
|
+
hidePercentages: "Esconder percentuais",
|
|
577
|
+
pdfDownloadCaption: "PDF",
|
|
578
|
+
xlsxDownloadCaption: "Excel",
|
|
579
|
+
csvDownloadCaption: "CSV",
|
|
580
|
+
saveDiagramAsPNG: "Baixar diagrama como PNG",
|
|
581
|
+
hideEmptyAnswers: "Esconder perguntas vazias",
|
|
582
|
+
showEmptyAnswers: "Mostrar perguntas vazias",
|
|
583
|
+
"topNValueText-1": "Todas as respostas",
|
|
584
|
+
topNValueText5: "Primeiras 5 respostas",
|
|
585
|
+
topNValueText10: "Primeiras 10 respostas",
|
|
586
|
+
topNValueText20: "Primeiras 20 respostas",
|
|
587
|
+
hideMissingAnswers: "Ocultar perguntas não respondidas",
|
|
588
|
+
showMissingAnswers: "Mostrar perguntas não respondidas",
|
|
589
|
+
missingAnswersLabel: "Perguntas não respondidas",
|
|
590
|
+
noVisualizerForQuestion: "Este tipo de pergunta ainda não foi visualizada",
|
|
591
|
+
noResults: "Ainda não possui resultados",
|
|
592
|
+
showPerValues: "Por valores",
|
|
593
|
+
showPerColumns: "Por colunas",
|
|
594
|
+
answer: "Resposta",
|
|
595
|
+
correctAnswer: "Resposta correta: ",
|
|
596
|
+
percent: "Percentagem",
|
|
597
|
+
responses: "Respostas"
|
|
598
|
+
};
|
|
599
|
+
//Uncomment these two lines on creating a translation file. You should replace "en" and enStrings with your locale ("fr", "de" and so on) and your variable.
|
|
600
|
+
localization.locales["pt"] = portugueseStrings;
|
|
601
|
+
localization.localeNames["pt"] = "Português";
|
|
602
|
+
|
|
603
|
+
var russianStrings = {
|
|
604
|
+
groupButton: "Сгруппировать",
|
|
605
|
+
ungroupButton: "Разгруппировать",
|
|
606
|
+
selectButton: "Выбрать",
|
|
607
|
+
hideColumn: "Скрыть столбец",
|
|
608
|
+
showColumn: "Показать столбец",
|
|
609
|
+
makePrivateColumn: "Сделать столбец приватным",
|
|
610
|
+
makePublicColumn: "Сделать столбец публичным",
|
|
611
|
+
moveToDetail: "Спрятать в раскрывающуюся секцию",
|
|
612
|
+
showAsColumn: "Показать как столбец",
|
|
613
|
+
filterPlaceholder: "Поиск...",
|
|
614
|
+
removeRows: "Удалить строки",
|
|
615
|
+
showLabel: "Показать",
|
|
616
|
+
entriesLabel: "записей",
|
|
617
|
+
visualizer_text: "Таблица",
|
|
618
|
+
visualizer_wordcloud: "Облако тэгов",
|
|
619
|
+
visualizer_histogram: "Гистограмма",
|
|
620
|
+
visualizer_number: "Среднее значение",
|
|
621
|
+
visualizer_choices: "Таблица",
|
|
622
|
+
visualizer_selectBase: "Диаграмма",
|
|
623
|
+
visualizer_matrix: "Диаграмма",
|
|
624
|
+
chartType_bar: "Столбчатая диаграмма",
|
|
625
|
+
chartType_vbar: "Вертикальная столбчатая диаграмма",
|
|
626
|
+
chartType_stackedbar: "Столбчатая диаграмма с накоплением",
|
|
627
|
+
chartType_doughnut: "Кольцевая диаграмма",
|
|
628
|
+
chartType_pie: "Круговая диаграмма",
|
|
629
|
+
chartType_scatter: "Точечная диаграмма",
|
|
630
|
+
chartType_gauge: "Измерительная диаграмма",
|
|
631
|
+
chartType_bullet: "Маркированная диаграмма",
|
|
632
|
+
hideButton: "Скрыть",
|
|
633
|
+
makePrivateButton: "Сделать приватным",
|
|
634
|
+
makePublicButton: "Сделать публичным",
|
|
635
|
+
showButton: "Показать",
|
|
636
|
+
filter: "Фильтр",
|
|
637
|
+
resetFilter: "Очистить фильтр",
|
|
638
|
+
changeLocale: "Сменить язык",
|
|
639
|
+
clearButton: "Очистить",
|
|
640
|
+
addElement: "Выберите вопрос...",
|
|
641
|
+
defaultOrder: "Порядок по умолчанию",
|
|
642
|
+
ascOrder: "Сортировать по возрастанию",
|
|
643
|
+
descOrder: "Сортировать по убыванию",
|
|
644
|
+
showMinorColumns: "Показать второстепенные столбцы",
|
|
645
|
+
otherCommentTitle: "Другое и комментарии",
|
|
646
|
+
showPercentages: "Показать проценты",
|
|
647
|
+
hidePercentages: "Скрыть проценты",
|
|
648
|
+
pdfDownloadCaption: "PDF",
|
|
649
|
+
xlsxDownloadCaption: "Excel",
|
|
650
|
+
csvDownloadCaption: "CSV",
|
|
651
|
+
saveDiagramAsPNG: "Скачать диаграмму в формате PNG",
|
|
652
|
+
hideEmptyAnswers: "Скрыть пустые ответы",
|
|
653
|
+
showEmptyAnswers: "Показать пустые ответы",
|
|
654
|
+
"topNValueText-1": "Все ответы",
|
|
655
|
+
topNValueText5: "Первые 5 ответов",
|
|
656
|
+
topNValueText10: "Первые 10 ответов",
|
|
657
|
+
topNValueText20: "Первые 20 ответов",
|
|
658
|
+
hideMissingAnswers: "Скрыть отсутствующие ответы",
|
|
659
|
+
showMissingAnswers: "Показать отсутствующие ответы",
|
|
660
|
+
missingAnswersLabel: "Отсутствующие ответы",
|
|
661
|
+
noVisualizerForQuestion: "Этот тип вопроса не поддерживается",
|
|
662
|
+
noResults: "Результаты отсутствуют",
|
|
663
|
+
showPerValues: "По значениям",
|
|
664
|
+
showPerColumns: "По столбцам",
|
|
665
|
+
answer: "Ответ",
|
|
666
|
+
correctAnswer: "Правильный ответ: ",
|
|
667
|
+
percent: "процентов",
|
|
668
|
+
responses: "ответов"
|
|
669
|
+
};
|
|
670
|
+
localization.locales["ru"] = russianStrings;
|
|
671
|
+
localization.localeNames["ru"] = "Русский";
|
|
672
|
+
|
|
673
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
674
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
675
|
+
var dutchStrings = {
|
|
676
|
+
groupButton: "Groep door mij",
|
|
677
|
+
ungroupButton: "Degroeperen bij mij",
|
|
678
|
+
selectButton: "Selecteer mij",
|
|
679
|
+
hideColumn: "Kolom verbergen",
|
|
680
|
+
showColumn: "Toon kolom",
|
|
681
|
+
makePrivateColumn: "Kolom privé maken",
|
|
682
|
+
makePublicColumn: "Maak de kolom openbaar",
|
|
683
|
+
moveToDetail: "Ga naar Detail",
|
|
684
|
+
showAsColumn: "Weergeven als kolom",
|
|
685
|
+
filterPlaceholder: "Zoeken...",
|
|
686
|
+
removeRows: "Verwijder rijen",
|
|
687
|
+
showLabel: "Tonen",
|
|
688
|
+
entriesLabel: "inzendingen",
|
|
689
|
+
visualizer_text: "Teksten in tabel",
|
|
690
|
+
visualizer_wordcloud: "Wordcloud",
|
|
691
|
+
visualizer_histogram: "Histogram",
|
|
692
|
+
visualizer_number: "Gemiddeld",
|
|
693
|
+
visualizer_choices: "Tafel",
|
|
694
|
+
visualizer_selectBase: "Zeekaart",
|
|
695
|
+
// visualizer_matrix: "Chart",
|
|
696
|
+
chartType_bar: "Bar",
|
|
697
|
+
chartType_vbar: "Verticale balk",
|
|
698
|
+
chartType_stackedbar: "Gestapelde Bar",
|
|
699
|
+
chartType_doughnut: "Donut",
|
|
700
|
+
chartType_pie: "Taart",
|
|
701
|
+
chartType_scatter: "Verstrooien",
|
|
702
|
+
chartType_gauge: "Meter",
|
|
703
|
+
chartType_bullet: "Kogel",
|
|
704
|
+
hideButton: "Verbergen",
|
|
705
|
+
makePrivateButton: "Maak prive",
|
|
706
|
+
makePublicButton: "Openbaar maken",
|
|
707
|
+
showButton: "Tonen",
|
|
708
|
+
filter: "Filter",
|
|
709
|
+
resetFilter: "Filter resetten",
|
|
710
|
+
changeLocale: "Wijzig de landinstelling",
|
|
711
|
+
clearButton: "Doorzichtig",
|
|
712
|
+
addElement: "Kies een vraag om weer te geven ...",
|
|
713
|
+
defaultOrder: "Standaardvolgorde",
|
|
714
|
+
ascOrder: "Oplopend",
|
|
715
|
+
descOrder: "Aflopend",
|
|
716
|
+
showMinorColumns: "Toon kleine kolommen",
|
|
717
|
+
otherCommentTitle: "Andere items en opmerkingen",
|
|
718
|
+
showPercentages: "Percentages weergeven",
|
|
719
|
+
hidePercentages: "Verberg percentages",
|
|
720
|
+
pdfDownloadCaption: "PDF",
|
|
721
|
+
xlsxDownloadCaption: "Excel",
|
|
722
|
+
csvDownloadCaption: "CSV",
|
|
723
|
+
saveDiagramAsPNG: "Download plot als een png",
|
|
724
|
+
hideEmptyAnswers: "Verberg lege antwoorden",
|
|
725
|
+
showEmptyAnswers: "Toon lege antwoorden",
|
|
726
|
+
"topNValueText-1": "Alle antwoorden",
|
|
727
|
+
topNValueText5: "Top 5 antwoorden",
|
|
728
|
+
topNValueText10: "Top 10 antwoorden",
|
|
729
|
+
topNValueText20: "Top 20 antwoorden",
|
|
730
|
+
hideMissingAnswers: "Ontbrekende antwoorden verbergen",
|
|
731
|
+
showMissingAnswers: "Ontbrekende antwoorden weergeven",
|
|
732
|
+
missingAnswersLabel: "Ontbrekende antwoorden",
|
|
733
|
+
noVisualizerForQuestion: "Dit vraagtype is nog niet gevisualiseerd",
|
|
734
|
+
noResults: "Er zijn nog geen resultaten",
|
|
735
|
+
showPerValues: "Per waarden",
|
|
736
|
+
showPerColumns: "Per Kolommen",
|
|
737
|
+
answer: "Antwoorden",
|
|
738
|
+
correctAnswer: "Goed antwoord: ",
|
|
739
|
+
percent: "Procent",
|
|
740
|
+
responses: "Reacties"
|
|
741
|
+
};
|
|
742
|
+
//Uncomment these two lines on creating a translation file. You should replace "en" and enStrings with your locale ("fr", "de" and so on) and your variable.
|
|
743
|
+
localization.locales["nl"] = dutchStrings;
|
|
744
|
+
localization.localeNames["nl"] = "Nederlands";
|
|
745
|
+
// The following strings have been translated by a machine translation service
|
|
746
|
+
// Remove those strings that you have corrected manually
|
|
747
|
+
// undefined.visualizer_histogram: "Histogram" => "Histogram"
|
|
748
|
+
// undefined.visualizer_number: "Average" => "Gemiddeld"
|
|
749
|
+
// undefined.visualizer_choices: "Table" => "Tafel"
|
|
750
|
+
// undefined.visualizer_selectBase: "Chart" => "Zeekaart"
|
|
751
|
+
// undefined.chartType_vbar: "Vertical Bar" => "Verticale balk"
|
|
752
|
+
// undefined.filter: "Filter" => "Filter"
|
|
753
|
+
// undefined.hideMissingAnswers: "Hide missing answers" => "Ontbrekende antwoorden verbergen"
|
|
754
|
+
// undefined.showMissingAnswers: "Show missing answers" => "Ontbrekende antwoorden weergeven"
|
|
755
|
+
// undefined.missingAnswersLabel: "Missing answers" => "Ontbrekende antwoorden"
|
|
756
|
+
// undefined.noVisualizerForQuestion: "This question type is not visualized yet" => "Dit vraagtype is nog niet gevisualiseerd"
|
|
757
|
+
// undefined.noResults: "There are no results yet" => "Er zijn nog geen resultaten"
|
|
758
|
+
// undefined.showPerValues: "Per Values" => "Per waarden"
|
|
759
|
+
// undefined.showPerColumns: "Per Columns" => "Per Kolommen"
|
|
760
|
+
// undefined.answer: "Answer" => "Antwoorden"
|
|
761
|
+
// undefined.correctAnswer: "Correct answer: " => "Goed antwoord: "
|
|
762
|
+
// undefined.percent: "Percent" => "Procent"
|
|
763
|
+
// undefined.responses: "Responses" => "Reacties"
|
|
764
|
+
|
|
765
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
766
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
767
|
+
var spanishStrings = {
|
|
768
|
+
groupButton: "Grupo Por Mí",
|
|
769
|
+
ungroupButton: "Desagrupar por mí",
|
|
770
|
+
selectButton: "Seleccionarme",
|
|
771
|
+
hideColumn: "Ocultar columna",
|
|
772
|
+
showColumn: "Mostrar columna",
|
|
773
|
+
makePrivateColumn: "Hacer que la columna sea privada",
|
|
774
|
+
makePublicColumn: "Hacer pública la columna",
|
|
775
|
+
moveToDetail: "Mover al detalle",
|
|
776
|
+
showAsColumn: "Mostrar como columna",
|
|
777
|
+
filterPlaceholder: "Buscar ...",
|
|
778
|
+
removeRows: "Eliminar filas",
|
|
779
|
+
showLabel: "Mostrar",
|
|
780
|
+
entriesLabel: "Entradas",
|
|
781
|
+
visualizer_text: "Textos en tabla",
|
|
782
|
+
visualizer_wordcloud: "Wordcloud",
|
|
783
|
+
visualizer_histogram: "Histograma",
|
|
784
|
+
visualizer_number: "Promedio",
|
|
785
|
+
visualizer_choices: "Mesa",
|
|
786
|
+
visualizer_selectBase: "Gráfico",
|
|
787
|
+
// visualizer_matrix: "Chart",
|
|
788
|
+
chartType_bar: "Bar",
|
|
789
|
+
chartType_vbar: "Barra vertical",
|
|
790
|
+
chartType_stackedbar: "Barra apilada",
|
|
791
|
+
chartType_doughnut: "Donut",
|
|
792
|
+
chartType_pie: "Pie",
|
|
793
|
+
chartType_scatter: "Dispersión",
|
|
794
|
+
chartType_gauge: "Gauge",
|
|
795
|
+
chartType_bullet: "Bullet",
|
|
796
|
+
hideButton: "Ocultar",
|
|
797
|
+
makePrivateButton: "Hacer privado",
|
|
798
|
+
makePublicButton: "Hacer público",
|
|
799
|
+
showButton: "Mostrar",
|
|
800
|
+
filter: "Filtro",
|
|
801
|
+
resetFilter: "Restablecer filtro",
|
|
802
|
+
changeLocale: "Cambiar configuración regional",
|
|
803
|
+
clearButton: "Borrar",
|
|
804
|
+
addElement: "Elija la pregunta para mostrar ...",
|
|
805
|
+
defaultOrder: "Orden predeterminado",
|
|
806
|
+
ascOrder: "Ascendente",
|
|
807
|
+
descOrder: "Descendente",
|
|
808
|
+
showMinorColumns: "Mostrar columnas secundarias",
|
|
809
|
+
otherCommentTitle: "Otros elementos y comentarios",
|
|
810
|
+
showPercentages: "Mostrar porcentajes",
|
|
811
|
+
hidePercentages: "Ocultar porcentajes",
|
|
812
|
+
pdfDownloadCaption: "PDF",
|
|
813
|
+
xlsxDownloadCaption: "Excel",
|
|
814
|
+
csvDownloadCaption: "CSV",
|
|
815
|
+
saveDiagramAsPNG: "Descargar el gráfico como png",
|
|
816
|
+
hideEmptyAnswers: "Ocultar respuestas vacías",
|
|
817
|
+
showEmptyAnswers: "Mostrar respuestas vacías",
|
|
818
|
+
"topNValueText-1": "Todas las respuestas",
|
|
819
|
+
topNValueText5: "Las 5 respuestas principales",
|
|
820
|
+
topNValueText10: "Las 10 respuestas principales",
|
|
821
|
+
topNValueText20: "20 respuestas principales",
|
|
822
|
+
hideMissingAnswers: "Ocultar las respuestas que faltan",
|
|
823
|
+
showMissingAnswers: "Mostrar las respuestas que faltan",
|
|
824
|
+
missingAnswersLabel: "Respuestas faltantes",
|
|
825
|
+
noVisualizerForQuestion: "Este tipo de pregunta aún no se visualiza",
|
|
826
|
+
noResults: "Aún no hay resultados",
|
|
827
|
+
showPerValues: "Por valores",
|
|
828
|
+
showPerColumns: "Por columnas",
|
|
829
|
+
answer: "Respuesta",
|
|
830
|
+
correctAnswer: "Respuesta correcta: ",
|
|
831
|
+
percent: "Por ciento",
|
|
832
|
+
responses: "Respuestas"
|
|
833
|
+
};
|
|
834
|
+
localization.locales["es"] = spanishStrings;
|
|
835
|
+
localization.localeNames["es"] = "Español";
|
|
836
|
+
// The following strings have been translated by a machine translation service
|
|
837
|
+
// Remove those strings that you have corrected manually
|
|
838
|
+
// undefined.groupButton: "Group By Me" => "Grupo Por Mí"
|
|
839
|
+
// undefined.entriesLabel: "entries" => "Entradas"
|
|
840
|
+
// undefined.visualizer_histogram: "Histogram" => "Histograma"
|
|
841
|
+
// undefined.visualizer_number: "Average" => "Promedio"
|
|
842
|
+
// undefined.visualizer_choices: "Table" => "Mesa"
|
|
843
|
+
// undefined.visualizer_selectBase: "Chart" => "Gráfico"
|
|
844
|
+
// undefined.chartType_vbar: "Vertical Bar" => "Barra vertical"
|
|
845
|
+
// undefined.hideMissingAnswers: "Hide missing answers" => "Ocultar las respuestas que faltan"
|
|
846
|
+
// undefined.showMissingAnswers: "Show missing answers" => "Mostrar las respuestas que faltan"
|
|
847
|
+
// undefined.missingAnswersLabel: "Missing answers" => "Respuestas faltantes"
|
|
848
|
+
// undefined.showPerValues: "Per Values" => "Por valores"
|
|
849
|
+
// undefined.showPerColumns: "Per Columns" => "Por columnas"
|
|
850
|
+
// undefined.answer: "Answer" => "Respuesta"
|
|
851
|
+
// undefined.correctAnswer: "Correct answer: " => "Respuesta correcta: "
|
|
852
|
+
// undefined.percent: "Percent" => "Por ciento"
|
|
853
|
+
// undefined.responses: "Responses" => "Respuestas"
|
|
854
|
+
|
|
855
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
856
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
857
|
+
var italianStrings = {
|
|
858
|
+
groupButton: "Raggruppa",
|
|
859
|
+
ungroupButton: "Dividi",
|
|
860
|
+
selectButton: "Selezionami",
|
|
861
|
+
hideColumn: "Nascondi colonna",
|
|
862
|
+
showColumn: "Mostra colonna",
|
|
863
|
+
makePrivateColumn: "Rendi la colonna privata",
|
|
864
|
+
makePublicColumn: "Rendi la colonna pubblica",
|
|
865
|
+
moveToDetail: "Sposta in Dettaglio",
|
|
866
|
+
showAsColumn: "Mostra come Colonna",
|
|
867
|
+
filterPlaceholder: "Cerca...",
|
|
868
|
+
removeRows: "Rimuovi righe",
|
|
869
|
+
showLabel: "Mostra",
|
|
870
|
+
entriesLabel: "voci",
|
|
871
|
+
visualizer_text: "Parole in tabella",
|
|
872
|
+
visualizer_wordcloud: "Nuvola di parole",
|
|
873
|
+
visualizer_histogram: "Istogramma",
|
|
874
|
+
visualizer_number: "Media",
|
|
875
|
+
visualizer_choices: "Tabella",
|
|
876
|
+
visualizer_selectBase: "Grafico",
|
|
877
|
+
// visualizer_matrix: "Chart",
|
|
878
|
+
chartType_bar: "Grafico a barre",
|
|
879
|
+
chartType_vbar: "Grafico a barre verticali",
|
|
880
|
+
chartType_stackedbar: "Grafico a barre sovrapposte",
|
|
881
|
+
chartType_doughnut: "Grafico a ciambella",
|
|
882
|
+
chartType_pie: "Grafico a torta",
|
|
883
|
+
chartType_scatter: "Grafico a dispersione",
|
|
884
|
+
chartType_gauge: "Grafico Gauge",
|
|
885
|
+
chartType_bullet: "Punto",
|
|
886
|
+
hideButton: "Nascondi",
|
|
887
|
+
makePrivateButton: "Rendi privato",
|
|
888
|
+
makePublicButton: "Rendi pubblico",
|
|
889
|
+
showButton: "Mostra",
|
|
890
|
+
filter: "Filtro",
|
|
891
|
+
resetFilter: "Cancella filtro",
|
|
892
|
+
changeLocale: "Cambia lingua",
|
|
893
|
+
clearButton: "Cancella",
|
|
894
|
+
addElement: "Scegli la domanda da mostrare...",
|
|
895
|
+
defaultOrder: "Ordine di Default",
|
|
896
|
+
ascOrder: "Ascendente",
|
|
897
|
+
descOrder: "Discendente",
|
|
898
|
+
showMinorColumns: "Mostra colonne secondarie",
|
|
899
|
+
otherCommentTitle: "Altri punti e commenti",
|
|
900
|
+
showPercentages: "Mostra percentuali",
|
|
901
|
+
hidePercentages: "Nascondi percentuali",
|
|
902
|
+
pdfDownloadCaption: "PDF",
|
|
903
|
+
xlsxDownloadCaption: "Excel",
|
|
904
|
+
csvDownloadCaption: "CSV",
|
|
905
|
+
saveDiagramAsPNG: "Scarica il grafico in formato png",
|
|
906
|
+
hideEmptyAnswers: "Nascondi risposte vuote",
|
|
907
|
+
showEmptyAnswers: "Mostra risposte vuote",
|
|
908
|
+
"topNValueText-1": "Tutte le risposte",
|
|
909
|
+
topNValueText5: "Top 5 risposte",
|
|
910
|
+
topNValueText10: "Top 10 risposte",
|
|
911
|
+
topNValueText20: "Top 20 risposte",
|
|
912
|
+
hideMissingAnswers: "Nascondi le risposte mancanti",
|
|
913
|
+
showMissingAnswers: "Mostra le risposte mancanti",
|
|
914
|
+
missingAnswersLabel: "Risposte mancanti",
|
|
915
|
+
noVisualizerForQuestion: "Questo tipo di domanda non è ancora stato visualizzato",
|
|
916
|
+
noResults: "Non ci sono ancora risultati",
|
|
917
|
+
showPerValues: "Per Valori",
|
|
918
|
+
showPerColumns: "Per Colonne",
|
|
919
|
+
answer: "Risposta",
|
|
920
|
+
correctAnswer: "Risposta esatta: ",
|
|
921
|
+
percent: "Percentuale",
|
|
922
|
+
responses: "Risposte"
|
|
923
|
+
};
|
|
924
|
+
localization.locales["it"] = italianStrings;
|
|
925
|
+
localization.localeNames["it"] = "Italiano";
|
|
926
|
+
// The following strings have been translated by a machine translation service
|
|
927
|
+
// Remove those strings that you have corrected manually
|
|
928
|
+
// undefined.correctAnswer: "Correct answer: " => "Risposta esatta: "
|
|
929
|
+
|
|
930
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
931
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
932
|
+
var arabicStrings = {
|
|
933
|
+
groupButton: "زرار المجموعة",
|
|
934
|
+
ungroupButton: "تم التحديث من خلالى",
|
|
935
|
+
selectButton: "اختر",
|
|
936
|
+
hideColumn: "اخفاء العمود",
|
|
937
|
+
showColumn: "اظهار",
|
|
938
|
+
makePrivateColumn: "أجعل العمود خاص",
|
|
939
|
+
makePublicColumn: "أجعل العمود عام",
|
|
940
|
+
moveToDetail: "انتقل إلى التفاصيل",
|
|
941
|
+
showAsColumn: "إظهار كعمود",
|
|
942
|
+
filterPlaceholder: "بحث...",
|
|
943
|
+
removeRows: "حذف",
|
|
944
|
+
showLabel: "اظهار",
|
|
945
|
+
entriesLabel: "مدخلات",
|
|
946
|
+
visualizer_text: "جداول",
|
|
947
|
+
visualizer_wordcloud: "كلمات",
|
|
948
|
+
visualizer_histogram: "الرسم البياني",
|
|
949
|
+
visualizer_number: "متوسط",
|
|
950
|
+
visualizer_choices: "جدول",
|
|
951
|
+
visualizer_selectBase: "رسم بياني",
|
|
952
|
+
// visualizer_matrix: "Chart",
|
|
953
|
+
chartType_bar: "شريط",
|
|
954
|
+
chartType_vbar: "شريط عمودي",
|
|
955
|
+
chartType_stackedbar: "شريط مكدس",
|
|
956
|
+
chartType_doughnut: "Doughnut",
|
|
957
|
+
chartType_pie: "Pie",
|
|
958
|
+
chartType_scatter: "Scatter",
|
|
959
|
+
chartType_gauge: "Gauge",
|
|
960
|
+
chartType_bullet: "Bullet",
|
|
961
|
+
hideButton: "اخفاء",
|
|
962
|
+
makePrivateButton: "أجعل خاص",
|
|
963
|
+
makePublicButton: "أجعل عام",
|
|
964
|
+
showButton: "اظهار",
|
|
965
|
+
filter: "ترشح",
|
|
966
|
+
resetFilter: "إعادة تعيين",
|
|
967
|
+
changeLocale: "تغيير اللغة",
|
|
968
|
+
clearButton: "مسح",
|
|
969
|
+
addElement: "اختر سؤالاً للعرض ...",
|
|
970
|
+
defaultOrder: "الترتيب الافتراضي",
|
|
971
|
+
ascOrder: "تصاعدى",
|
|
972
|
+
descOrder: "تنازلى",
|
|
973
|
+
showMinorColumns: "إظهار الأعمدة الثانوية",
|
|
974
|
+
otherCommentTitle: "بنود وتعليقات أخرى",
|
|
975
|
+
showPercentages: "عرض النسب المئوية",
|
|
976
|
+
hidePercentages: "إخفاء النسب",
|
|
977
|
+
pdfDownloadCaption: "PDF",
|
|
978
|
+
xlsxDownloadCaption: "Excel",
|
|
979
|
+
csvDownloadCaption: "CSV",
|
|
980
|
+
saveDiagramAsPNG: "تنزيل بصيغة png",
|
|
981
|
+
hideEmptyAnswers: "إخفاء الإجابات الفارغة",
|
|
982
|
+
showEmptyAnswers: "إظهار الإجابات الفارغة",
|
|
983
|
+
"topNValueText-1": "جميع الإجابات",
|
|
984
|
+
topNValueText5: "أهم 5 إجابات",
|
|
985
|
+
topNValueText10: "أفضل 10 إجابات",
|
|
986
|
+
topNValueText20: "أفضل 20 إجابة",
|
|
987
|
+
hideMissingAnswers: "إخفاء الإجابات المفقودة",
|
|
988
|
+
showMissingAnswers: "عرض الإجابات المفقودة",
|
|
989
|
+
missingAnswersLabel: "أجوبة مفقودة",
|
|
990
|
+
noVisualizerForQuestion: "لم يتم العرض بعد",
|
|
991
|
+
noResults: "لا يوجد نتائج للعرض",
|
|
992
|
+
showPerValues: "لكل القيم",
|
|
993
|
+
showPerColumns: "لكل الأعمدة",
|
|
994
|
+
answer: "إجب",
|
|
995
|
+
correctAnswer: "الاجابة الصحيحة: ",
|
|
996
|
+
percent: "النسبه المئويه",
|
|
997
|
+
responses: "الاستجابات"
|
|
998
|
+
};
|
|
999
|
+
localization.locales["ar"] = arabicStrings;
|
|
1000
|
+
localization.localeNames["ar"] = "العربية";
|
|
1001
|
+
// The following strings have been translated by a machine translation service
|
|
1002
|
+
// Remove those strings that you have corrected manually
|
|
1003
|
+
// undefined.topNValueText-1: "All answers" => "جميع الإجابات"
|
|
1004
|
+
// undefined.topNValueText5: "Top 5 answers" => "أهم 5 إجابات"
|
|
1005
|
+
// undefined.topNValueText10: "Top 10 answers" => "أفضل 10 إجابات"
|
|
1006
|
+
// undefined.topNValueText20: "Top 20 answers" => "أفضل 20 إجابة"
|
|
1007
|
+
|
|
1008
|
+
var japaneseStrings = {
|
|
1009
|
+
groupButton: "グループ化",
|
|
1010
|
+
ungroupButton: "グループ解除",
|
|
1011
|
+
selectButton: "選択",
|
|
1012
|
+
hideColumn: "列を非表示",
|
|
1013
|
+
showColumn: "列を表示",
|
|
1014
|
+
makePrivateColumn: "列を非公開にする",
|
|
1015
|
+
makePublicColumn: "列を公開する",
|
|
1016
|
+
moveToDetail: "詳細に移動",
|
|
1017
|
+
showAsColumn: "列として表示",
|
|
1018
|
+
filterPlaceholder: "検索...",
|
|
1019
|
+
removeRows: "行を削除",
|
|
1020
|
+
showLabel: "表示",
|
|
1021
|
+
entriesLabel: "件",
|
|
1022
|
+
visualizer_text: "テキスト",
|
|
1023
|
+
visualizer_wordcloud: "ワードクラウド",
|
|
1024
|
+
visualizer_histogram: "ヒストグラム",
|
|
1025
|
+
visualizer_number: "平均",
|
|
1026
|
+
visualizer_choices: "テーブル",
|
|
1027
|
+
visualizer_selectBase: "チャート",
|
|
1028
|
+
chartType_bar: "棒グラフ",
|
|
1029
|
+
chartType_vbar: "縦棒グラフ",
|
|
1030
|
+
chartType_stackedbar: "積み上げ棒グラフ",
|
|
1031
|
+
chartType_doughnut: "ドーナツチャート",
|
|
1032
|
+
chartType_pie: "円グラフ",
|
|
1033
|
+
chartType_scatter: "散布図",
|
|
1034
|
+
chartType_gauge: "ゲージ",
|
|
1035
|
+
chartType_bullet: "バレット",
|
|
1036
|
+
hideButton: "非表示",
|
|
1037
|
+
makePrivateButton: "非公開にする",
|
|
1038
|
+
makePublicButton: "公開する",
|
|
1039
|
+
showButton: "表示",
|
|
1040
|
+
filter: "フィルター",
|
|
1041
|
+
resetFilter: "フィルターをリセット",
|
|
1042
|
+
changeLocale: "言語を変更",
|
|
1043
|
+
clearButton: "クリア",
|
|
1044
|
+
addElement: "表示する質問を選択...",
|
|
1045
|
+
defaultOrder: "デフォルト順",
|
|
1046
|
+
ascOrder: "昇順",
|
|
1047
|
+
descOrder: "降順",
|
|
1048
|
+
showMinorColumns: "マイナー列を表示",
|
|
1049
|
+
otherCommentTitle: "その他のアイテムとコメント",
|
|
1050
|
+
showPercentages: "パーセンテージを表示",
|
|
1051
|
+
hidePercentages: "パーセンテージを非表示",
|
|
1052
|
+
pdfDownloadCaption: "PDF",
|
|
1053
|
+
xlsxDownloadCaption: "Excel",
|
|
1054
|
+
csvDownloadCaption: "CSV",
|
|
1055
|
+
saveDiagramAsPNG: "プロットをPNGファイルとして保存",
|
|
1056
|
+
hideEmptyAnswers: "空の回答を非表示",
|
|
1057
|
+
showEmptyAnswers: "空の回答を表示",
|
|
1058
|
+
"topNValueText-1": "すべての回答",
|
|
1059
|
+
"topNValueText5": "上位5つの回答",
|
|
1060
|
+
"topNValueText10": "上位10の回答",
|
|
1061
|
+
"topNValueText20": "上位20の回答",
|
|
1062
|
+
hideMissingAnswers: "欠損値を非表示",
|
|
1063
|
+
showMissingAnswers: "欠損値を表示",
|
|
1064
|
+
missingAnswersLabel: "欠損値",
|
|
1065
|
+
noVisualizerForQuestion: "この質問タイプはまだ視覚化されていません",
|
|
1066
|
+
noResults: "まだ結果がありません",
|
|
1067
|
+
showPerValues: "値ごとに表示",
|
|
1068
|
+
showPerColumns: "列ごとに表示",
|
|
1069
|
+
answer: "回答",
|
|
1070
|
+
correctAnswer: "正解: ",
|
|
1071
|
+
percent: "パーセント",
|
|
1072
|
+
responses: "回答数"
|
|
1073
|
+
};
|
|
1074
|
+
localization.locales["ja"] = japaneseStrings;
|
|
1075
|
+
localization.localeNames["ja"] = "Japanese";
|
|
1076
|
+
|
|
1077
|
+
// This dictionary contains 1 untranslated or inherited localization strings.
|
|
1078
|
+
// These strings are commented out. Uncomment and edit them if you want to add your translations.
|
|
1079
|
+
var plStrings = {
|
|
1080
|
+
groupButton: "Grupuj według mnie",
|
|
1081
|
+
ungroupButton: "Rozgrupuj według mnie",
|
|
1082
|
+
selectButton: "Wybierz",
|
|
1083
|
+
hideColumn: "Ukryj kolumnę",
|
|
1084
|
+
showColumn: "Pokaż kolumnę",
|
|
1085
|
+
makePrivateColumn: "Uczyń kolumnę prywatną",
|
|
1086
|
+
makePublicColumn: "Uczyń kolumnę publiczną",
|
|
1087
|
+
moveToDetail: "Przenieś do szczegółów",
|
|
1088
|
+
showAsColumn: "Pokaż jako kolumnę",
|
|
1089
|
+
filterPlaceholder: "Szukaj...",
|
|
1090
|
+
removeRows: "Usuń wiersze",
|
|
1091
|
+
showLabel: "Pokaż",
|
|
1092
|
+
entriesLabel: "wejścia",
|
|
1093
|
+
visualizer_text: "Teksty w tabeli",
|
|
1094
|
+
visualizer_wordcloud: "Chmura słów",
|
|
1095
|
+
visualizer_histogram: "Histogram",
|
|
1096
|
+
visualizer_number: "Średnia",
|
|
1097
|
+
visualizer_choices: "Tabela",
|
|
1098
|
+
visualizer_selectBase: "Wykres",
|
|
1099
|
+
visualizer_matrix: "Wykres",
|
|
1100
|
+
chartType_bar: "Słupkowy",
|
|
1101
|
+
chartType_vbar: "Słupkowy pionowy",
|
|
1102
|
+
chartType_stackedbar: "Słupkowy skumulowany",
|
|
1103
|
+
chartType_doughnut: "Oponka",
|
|
1104
|
+
chartType_pie: "Tarta",
|
|
1105
|
+
chartType_scatter: "Rozrzut",
|
|
1106
|
+
chartType_gauge: "Skala",
|
|
1107
|
+
chartType_bullet: "Pocisk",
|
|
1108
|
+
hideButton: "Ukryj",
|
|
1109
|
+
makePrivateButton: "Uczyń prywatnym",
|
|
1110
|
+
makePublicButton: "Uczyń publicznym",
|
|
1111
|
+
showButton: "Pokaż",
|
|
1112
|
+
filter: "Filtruj",
|
|
1113
|
+
resetFilter: "Resetuj filtr",
|
|
1114
|
+
changeLocale: "Zmień lokalizację",
|
|
1115
|
+
clearButton: "Wyczyść",
|
|
1116
|
+
addElement: "Wybierz pytanie do pokazania...",
|
|
1117
|
+
defaultOrder: "Domyślne sortowanie",
|
|
1118
|
+
ascOrder: "Rosnąco",
|
|
1119
|
+
descOrder: "Malejąco",
|
|
1120
|
+
showMinorColumns: "Pokaż mniejsze kolumny",
|
|
1121
|
+
otherCommentTitle: "Inne elementy i komentarze",
|
|
1122
|
+
showPercentages: "Pokaż procenty",
|
|
1123
|
+
hidePercentages: "Ukryj procenty",
|
|
1124
|
+
pdfDownloadCaption: "PDF",
|
|
1125
|
+
xlsxDownloadCaption: "Excel",
|
|
1126
|
+
csvDownloadCaption: "CSV",
|
|
1127
|
+
saveDiagramAsPNG: "Pobierz diagram jako PNG",
|
|
1128
|
+
hideEmptyAnswers: "Ukryj puste odpowiedzi",
|
|
1129
|
+
showEmptyAnswers: "Pokaż puste odpowiedzi",
|
|
1130
|
+
"topNValueText-1": "Wszystkie odpowiedzi",
|
|
1131
|
+
topNValueText5: "Pierwsze 5 odpowiedzi",
|
|
1132
|
+
topNValueText10: "Pierwsze 10 odpowiedzi",
|
|
1133
|
+
topNValueText20: "Pierwsze 20 odpowiedzi",
|
|
1134
|
+
hideMissingAnswers: "Ukryj nieodpowiedziane pytania",
|
|
1135
|
+
showMissingAnswers: "Pokaż nieodpowiedziane pytania",
|
|
1136
|
+
missingAnswersLabel: "Nieodpowiedziane pytania",
|
|
1137
|
+
noVisualizerForQuestion: "Ten typ pytania nie został jeszcze zwizualizowany",
|
|
1138
|
+
noResults: "Nie ma jeszcze wyników",
|
|
1139
|
+
showPerValues: "Według wartości",
|
|
1140
|
+
showPerColumns: "Według kolumn",
|
|
1141
|
+
answer: "Odpowiedź",
|
|
1142
|
+
correctAnswer: "Odpowiedź poprawna: ",
|
|
1143
|
+
percent: "Procent",
|
|
1144
|
+
responses: "Odpowiedzi"
|
|
1145
|
+
};
|
|
1146
|
+
//Uncomment these two lines on creating a translation file. You should replace "en" and enStrings with your locale ("fr", "de" and so on) and your variable.
|
|
1147
|
+
localization.locales["pl"] = plStrings;
|
|
1148
|
+
localization.localeNames["pl"] = "Polish";
|
|
1149
|
+
|
|
1150
|
+
class DocumentHelper {
|
|
1151
|
+
static createSelector(options, isSelected, handler) {
|
|
1152
|
+
const selectWrapper = document.createElement("div");
|
|
1153
|
+
selectWrapper.className = "sa-question__select-wrapper";
|
|
1154
|
+
const select = document.createElement("select");
|
|
1155
|
+
select.className = "sa-question__select";
|
|
1156
|
+
options.forEach((option) => {
|
|
1157
|
+
let optionElement = DocumentHelper.createElement("option", "", {
|
|
1158
|
+
value: option.value,
|
|
1159
|
+
text: option.text,
|
|
1160
|
+
selected: isSelected(option),
|
|
1161
|
+
});
|
|
1162
|
+
select.appendChild(optionElement);
|
|
1163
|
+
});
|
|
1164
|
+
select.onchange = handler;
|
|
1165
|
+
selectWrapper.appendChild(select);
|
|
1166
|
+
return selectWrapper;
|
|
1167
|
+
}
|
|
1168
|
+
static createButton(handler, text = "", className = "sa-toolbar__button") {
|
|
1169
|
+
const button = DocumentHelper.createElement("span", className, {
|
|
1170
|
+
innerText: text,
|
|
1171
|
+
onclick: handler,
|
|
1172
|
+
});
|
|
1173
|
+
return button;
|
|
1174
|
+
}
|
|
1175
|
+
static createElement(tagName, className = "", attrs) {
|
|
1176
|
+
var el = document.createElement(tagName);
|
|
1177
|
+
el.className = className;
|
|
1178
|
+
if (!!attrs) {
|
|
1179
|
+
Object.keys(attrs).forEach(function (key) {
|
|
1180
|
+
el[key] = attrs[key];
|
|
1181
|
+
});
|
|
1182
|
+
}
|
|
1183
|
+
return el;
|
|
1184
|
+
}
|
|
1185
|
+
static createSvgElement(path) {
|
|
1186
|
+
const svgElem = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
1187
|
+
const useElem = document.createElementNS("http://www.w3.org/2000/svg", "use");
|
|
1188
|
+
useElem.setAttributeNS("http://www.w3.org/1999/xlink", "href", "#sa-svg-" + path);
|
|
1189
|
+
svgElem.appendChild(useElem);
|
|
1190
|
+
return svgElem;
|
|
1191
|
+
}
|
|
1192
|
+
static createSvgButton(path) {
|
|
1193
|
+
const btn = (DocumentHelper.createElement("button", "sa-table__svg-button"));
|
|
1194
|
+
btn.appendChild(DocumentHelper.createSvgElement(path));
|
|
1195
|
+
return btn;
|
|
1196
|
+
}
|
|
1197
|
+
static createSvgToggleButton(svgPath1, svPpath2, text1, text2, handler1, handler2, state = "first", className = "sa-toolbar__button sa-toolbar__svg-button") {
|
|
1198
|
+
const svg1 = DocumentHelper.createSvgElement(svgPath1);
|
|
1199
|
+
const svg2 = DocumentHelper.createSvgElement(svPpath2);
|
|
1200
|
+
const button = DocumentHelper.createElement("button", className);
|
|
1201
|
+
const toggle = (e) => {
|
|
1202
|
+
if (state === "first") {
|
|
1203
|
+
state = "second";
|
|
1204
|
+
button.title = text2;
|
|
1205
|
+
button.removeChild(svg1);
|
|
1206
|
+
button.appendChild(svg2);
|
|
1207
|
+
handler2(e);
|
|
1208
|
+
}
|
|
1209
|
+
else if (state === "second") {
|
|
1210
|
+
state = "first";
|
|
1211
|
+
button.title = text1;
|
|
1212
|
+
button.removeChild(svg2);
|
|
1213
|
+
button.appendChild(svg1);
|
|
1214
|
+
handler1(e);
|
|
1215
|
+
}
|
|
1216
|
+
};
|
|
1217
|
+
if (state === "first") {
|
|
1218
|
+
button.title = text1;
|
|
1219
|
+
button.appendChild(svg1);
|
|
1220
|
+
}
|
|
1221
|
+
else if ((state = "second")) {
|
|
1222
|
+
button.title = text2;
|
|
1223
|
+
button.appendChild(svg2);
|
|
1224
|
+
}
|
|
1225
|
+
button.onclick = toggle;
|
|
1226
|
+
return button;
|
|
1227
|
+
}
|
|
1228
|
+
static createInput(className, placeholder = "", defaultValue = "") {
|
|
1229
|
+
var el = DocumentHelper.createElement("input", className, {
|
|
1230
|
+
placeholder: placeholder,
|
|
1231
|
+
defaultValue: defaultValue,
|
|
1232
|
+
});
|
|
1233
|
+
return el;
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
function createCommercialLicenseLink() {
|
|
1237
|
+
const container = DocumentHelper.createElement("div", "sa-commercial");
|
|
1238
|
+
const link = DocumentHelper.createElement("a", "sa-commercial__text", {
|
|
1239
|
+
href: "https://www.surveyjs.io/Buy",
|
|
1240
|
+
target: "_blank",
|
|
1241
|
+
});
|
|
1242
|
+
const containerSpan = DocumentHelper.createElement("span", "");
|
|
1243
|
+
const icon = DocumentHelper.createSvgElement("noncommercial");
|
|
1244
|
+
const textSpan = DocumentHelper.createElement("span", "sa-commercial__product", {
|
|
1245
|
+
innerText: "Please purchase a SurveyJS Analytics developer license to use it in your app.",
|
|
1246
|
+
});
|
|
1247
|
+
container.appendChild(link).appendChild(containerSpan);
|
|
1248
|
+
containerSpan.appendChild(icon);
|
|
1249
|
+
containerSpan.appendChild(textSpan);
|
|
1250
|
+
return container;
|
|
1251
|
+
}
|
|
1252
|
+
function createLoadingIndicator() {
|
|
1253
|
+
const container = DocumentHelper.createElement("div", "sa-data-loading-indicator-panel");
|
|
1254
|
+
const loadingIndicator = DocumentHelper.createElement("div", "sa-data-loading-indicator");
|
|
1255
|
+
loadingIndicator.innerHTML = `
|
|
1256
|
+
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1257
|
+
<g clip-path="url(#clip0_17928_11482)">
|
|
1258
|
+
<path d="M32 64C14.36 64 0 49.65 0 32C0 14.35 14.36 0 32 0C49.64 0 64 14.35 64 32C64 49.65 49.64 64 32 64ZM32 4C16.56 4 4 16.56 4 32C4 47.44 16.56 60 32 60C47.44 60 60 47.44 60 32C60 16.56 47.44 4 32 4Z" fill="#E5E5E5"></path>
|
|
1259
|
+
<path d="M53.2101 55.2104C52.7001 55.2104 52.1901 55.0104 51.8001 54.6204C51.0201 53.8404 51.0201 52.5704 51.8001 51.7904C57.0901 46.5004 60.0001 39.4704 60.0001 31.9904C60.0001 24.5104 57.0901 17.4804 51.8001 12.1904C51.0201 11.4104 51.0201 10.1404 51.8001 9.36039C52.5801 8.58039 53.8501 8.58039 54.6301 9.36039C60.6701 15.4004 64.0001 23.4404 64.0001 31.9904C64.0001 40.5404 60.6701 48.5704 54.6301 54.6204C54.2401 55.0104 53.7301 55.2104 53.2201 55.2104H53.2101Z" fill="#19B394"></path>
|
|
1260
|
+
</g>
|
|
1261
|
+
<defs>
|
|
1262
|
+
<clipPath id="clip0_17928_11482">
|
|
1263
|
+
<rect width="64" height="64" fill="white"></rect>
|
|
1264
|
+
</clipPath>
|
|
1265
|
+
</defs>
|
|
1266
|
+
</svg>
|
|
1267
|
+
`;
|
|
1268
|
+
container.appendChild(loadingIndicator);
|
|
1269
|
+
return container;
|
|
1270
|
+
}
|
|
1271
|
+
class DataHelper {
|
|
1272
|
+
static zipArrays(...arrays) {
|
|
1273
|
+
let zipArray = [];
|
|
1274
|
+
for (let i = 0; i < arrays[0].length; i++) {
|
|
1275
|
+
zipArray[i] = [];
|
|
1276
|
+
arrays.forEach((arr) => {
|
|
1277
|
+
zipArray[i].push(arr[i]);
|
|
1278
|
+
});
|
|
1279
|
+
}
|
|
1280
|
+
return zipArray;
|
|
1281
|
+
}
|
|
1282
|
+
static unzipArrays(zipArray) {
|
|
1283
|
+
let arrays = [];
|
|
1284
|
+
zipArray.forEach((value, i) => {
|
|
1285
|
+
value.forEach((val, j) => {
|
|
1286
|
+
if (!arrays[j])
|
|
1287
|
+
arrays[j] = [];
|
|
1288
|
+
arrays[j][i] = val;
|
|
1289
|
+
});
|
|
1290
|
+
});
|
|
1291
|
+
return arrays;
|
|
1292
|
+
}
|
|
1293
|
+
static sortDictionary(keys, values, desc) {
|
|
1294
|
+
let dictionary = this.zipArrays(keys, values);
|
|
1295
|
+
let comparator = (a, b, asc = true) => {
|
|
1296
|
+
let result = a[1] < b[1] ? 1 : a[1] == b[1] ? 0 : -1;
|
|
1297
|
+
return asc ? result : result * -1;
|
|
1298
|
+
};
|
|
1299
|
+
dictionary.sort((a, b) => {
|
|
1300
|
+
return desc ? comparator(a, b, false) : comparator(a, b);
|
|
1301
|
+
});
|
|
1302
|
+
let keysAndValues = this.unzipArrays(dictionary);
|
|
1303
|
+
return { keys: keysAndValues[0], values: keysAndValues[1] };
|
|
1304
|
+
}
|
|
1305
|
+
static toPercentage(value, maxValue) {
|
|
1306
|
+
return (value / maxValue) * 100;
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
function createLinksContainer(links) {
|
|
1310
|
+
const linksContainer = DocumentHelper.createElement("div");
|
|
1311
|
+
links.forEach((link) => {
|
|
1312
|
+
linksContainer.appendChild(DocumentHelper.createElement("a", "", {
|
|
1313
|
+
innerText: link.name,
|
|
1314
|
+
download: link.name,
|
|
1315
|
+
href: link.content,
|
|
1316
|
+
}));
|
|
1317
|
+
});
|
|
1318
|
+
return linksContainer;
|
|
1319
|
+
}
|
|
1320
|
+
function createImagesContainer(links) {
|
|
1321
|
+
const linksContainer = DocumentHelper.createElement("div");
|
|
1322
|
+
links.forEach((link) => {
|
|
1323
|
+
linksContainer.appendChild(DocumentHelper.createElement("img", "", {
|
|
1324
|
+
alt: link.name,
|
|
1325
|
+
src: link.content,
|
|
1326
|
+
}));
|
|
1327
|
+
});
|
|
1328
|
+
return linksContainer;
|
|
1329
|
+
}
|
|
1330
|
+
function toPrecision(value, precision = 2) {
|
|
1331
|
+
const base = Math.pow(10, precision);
|
|
1332
|
+
return Math.round(base * value) / base;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
var iconsData = {
|
|
1336
|
+
"detail": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><g><circle cx=\"1.5\" cy=\"8.5\" r=\"1.5\"></circle><circle cx=\"7.5\" cy=\"8.5\" r=\"1.5\"></circle><circle cx=\"13.5\" cy=\"8.5\" r=\"1.5\"></circle></g></svg>",
|
|
1337
|
+
"drag": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><g><polygon points=\"13,5 12,6 13,7 9,7 9,3 10,4 11,3 8,0 5,3 6,4 7,3 7,7 3,7 4,6 3,5 0,8 3,11 4,10 3,9 7,9 7,13 6,12 5,13 8,16 11,13 10,12 9,13 9,9 13,9 12,10 13,11 16,8 \"></polygon></g></svg>",
|
|
1338
|
+
"hide": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><g><path d=\"M12.79,4.2L16,1l-1-1l-3.32,3.32C10.57,2.55,9.32,2,8,2C3.63,2,0,7.97,0,7.97s1.27,2.1,3.21,3.82l-3.23,3.23 L0.96,16l3.35-3.34C5.41,13.44,6.67,14,8,14c4.37,0,8-6,8-6S14.73,5.91,12.79,4.2z M2,7.97c1.07-1.47,3.61-4,6-4 c0.8,0,1.6,0.27,2.35,0.68L9.57,5.43C9.11,5.14,8.58,4.97,8,4.97c-1.66,0-3,1.34-3,3c0,0.58,0.17,1.11,0.46,1.57l-0.97,0.97 C3.36,9.64,2.45,8.59,2,7.97z M8,11.97c-0.8,0-1.59-0.27-2.33-0.67l0.78-0.77C6.9,10.8,7.43,10.97,8,10.97c1.66,0,3-1.34,3-3 c0-0.57-0.17-1.09-0.44-1.55l0.98-0.98c1.11,0.87,2.01,1.91,2.46,2.52C12.93,9.44,10.39,11.97,8,11.97z\"></path></g></svg>",
|
|
1339
|
+
"makeprivate": "<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 16 16\" style=\"enable-background:new 0 0 16 16;\" xml:space=\"preserve\"><g><circle cx=\"8\" cy=\"4\" r=\"3\"></circle><path d=\"M8,8c-3.31,0-6,2.73-6,4.67S5.27,15,8,15s6-0.4,6-2.33S11.31,8,8,8z\"></path></g></svg>",
|
|
1340
|
+
"makepublic": "<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 16 16\" style=\"enable-background:new 0 0 16 16;\" xml:space=\"preserve\"><g><circle cx=\"6\" cy=\"5\" r=\"3\"></circle><path d=\"M10,5c0,0.34-0.06,0.67-0.14,0.99C9.91,5.99,9.95,6,10,6c1.66,0,3-1.34,3-3s-1.34-3-3-3 C8.97,0,8.07,0.52,7.53,1.3C8.98,1.91,10,3.33,10,5z\"></path><path d=\"M6,9c-3.31,0-6,2.73-6,4.67S3.27,16,6,16s6-0.4,6-2.33S9.31,9,6,9z\"></path><path d=\"M10,7C9.81,7,9.62,7.01,9.43,7.03C9.09,7.6,8.62,8.07,8.06,8.42c3,0.83,5.23,3.31,5.42,5.28 c1.44-0.31,2.52-0.92,2.52-2.03C16,9.74,13.31,7,10,7z\"></path></g></svg>",
|
|
1341
|
+
"movetodetails": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><g><circle cx=\"1.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"7.5\" cy=\"14.5\" r=\"1.5\"></circle><circle cx=\"13.5\" cy=\"14.5\" r=\"1.5\"></circle><rect x=\"12\" y=\"1\" width=\"3\" height=\"9\"></rect><path d=\"M2.02,7.02L1,6L0,7l3,3l3-3L5,6L4.06,6.94C4.33,4.73,6.21,3,8.5,3C8.67,3,8.83,3.03,9,3.05V1.03 C8.83,1.01,8.67,1,8.5,1C5.08,1,2.27,3.66,2.02,7.02z\"></path></g></svg>",
|
|
1342
|
+
"noncommercial": "<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 16 16\" style=\"enable-background:new 0 0 16 16;\" xml:space=\"preserve\"><path d=\"M8,0L0,15h16L8,0z M9,13H7v-2h2V13z M7,10V5h2v5H7z\"></path></svg>",
|
|
1343
|
+
"sorting": "<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\"><g><polygon points=\"8,3 10,5 11,4 8,1 5,4 6,5 \"></polygon><polygon points=\"8,13 6,11 5,12 8,15 11,12 10,11\"></polygon></g></svg>"
|
|
1344
|
+
};
|
|
1345
|
+
|
|
1346
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
1347
|
+
//@ts-ignore
|
|
1348
|
+
const iconPrefix = "sa-svg-";
|
|
1349
|
+
function getIconSymbolTemplate(iconId, iconSvg) {
|
|
1350
|
+
const startStr = "<svg ";
|
|
1351
|
+
const endStr = "</svg>";
|
|
1352
|
+
iconSvg = iconSvg.trim();
|
|
1353
|
+
const str = iconSvg.toLowerCase();
|
|
1354
|
+
if (str.substring(0, startStr.length) === startStr &&
|
|
1355
|
+
str.substring(str.length - endStr.length, str.length) === endStr) {
|
|
1356
|
+
return "<symbol " +
|
|
1357
|
+
"id=\"" + iconPrefix + iconId + "\" " +
|
|
1358
|
+
iconSvg.substring(startStr.length, str.length - endStr.length) +
|
|
1359
|
+
"</symbol>";
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
const iconsHtml = Object.keys(iconsData).map(iconId => getIconSymbolTemplate(iconId, iconsData[iconId]));
|
|
1363
|
+
const svgTemplate = `<svg style="display:none;">${iconsHtml}<svg>`;
|
|
1364
|
+
|
|
1365
|
+
export { DocumentHelper as D, DataHelper as a, createCommercialLicenseLink as b, createLoadingIndicator as c, surveyStrings as d, createImagesContainer as e, createLinksContainer as f, localization as l, svgTemplate as s, toPrecision as t };
|
|
1366
|
+
//# sourceMappingURL=shared.js.map
|