survey-analytics 2.3.0 → 2.3.2

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.
Files changed (71) hide show
  1. package/fesm/shared.mjs +1506 -263
  2. package/fesm/shared.mjs.map +1 -1
  3. package/fesm/shared2.mjs +129 -62
  4. package/fesm/shared2.mjs.map +1 -1
  5. package/fesm/survey.analytics.core.mjs +2 -2
  6. package/fesm/survey.analytics.mjs +3 -3
  7. package/fesm/survey.analytics.tabulator.mjs +49 -6
  8. package/fesm/survey.analytics.tabulator.mjs.map +1 -1
  9. package/package.json +3 -3
  10. package/survey-analytics-tabulator.types/analytics-localization/arabic.d.ts +16 -0
  11. package/survey-analytics-tabulator.types/analytics-localization/dutch.d.ts +16 -0
  12. package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +5 -0
  13. package/survey-analytics-tabulator.types/analytics-localization/farsi.d.ts +16 -0
  14. package/survey-analytics-tabulator.types/analytics-localization/finnish.d.ts +7 -0
  15. package/survey-analytics-tabulator.types/analytics-localization/french.d.ts +16 -0
  16. package/survey-analytics-tabulator.types/analytics-localization/german.d.ts +16 -0
  17. package/survey-analytics-tabulator.types/analytics-localization/italian.d.ts +16 -0
  18. package/survey-analytics-tabulator.types/analytics-localization/japanese.d.ts +16 -0
  19. package/survey-analytics-tabulator.types/analytics-localization/norwegian.d.ts +16 -0
  20. package/survey-analytics-tabulator.types/analytics-localization/polish.d.ts +15 -0
  21. package/survey-analytics-tabulator.types/analytics-localization/portuguese.d.ts +16 -0
  22. package/survey-analytics-tabulator.types/analytics-localization/russian.d.ts +15 -0
  23. package/survey-analytics-tabulator.types/analytics-localization/spanish.d.ts +16 -0
  24. package/survey-analytics-tabulator.types/analytics-localization/swedish.d.ts +82 -0
  25. package/survey-analytics-tabulator.types/entries/tabulator.d.ts +1 -0
  26. package/survey-analytics-tabulator.types/localizationManager.d.ts +12 -0
  27. package/survey-analytics-tabulator.types/tables/columnbuilder.d.ts +7 -1
  28. package/survey-analytics-tabulator.types/tables/columns.d.ts +10 -1
  29. package/survey-analytics-tabulator.types/utils/index.d.ts +2 -2
  30. package/survey-analytics.types/analytics-localization/arabic.d.ts +16 -0
  31. package/survey-analytics.types/analytics-localization/dutch.d.ts +16 -0
  32. package/survey-analytics.types/analytics-localization/english.d.ts +5 -0
  33. package/survey-analytics.types/analytics-localization/farsi.d.ts +16 -0
  34. package/survey-analytics.types/analytics-localization/finnish.d.ts +7 -0
  35. package/survey-analytics.types/analytics-localization/french.d.ts +16 -0
  36. package/survey-analytics.types/analytics-localization/german.d.ts +16 -0
  37. package/survey-analytics.types/analytics-localization/italian.d.ts +16 -0
  38. package/survey-analytics.types/analytics-localization/japanese.d.ts +16 -0
  39. package/survey-analytics.types/analytics-localization/norwegian.d.ts +16 -0
  40. package/survey-analytics.types/analytics-localization/polish.d.ts +15 -0
  41. package/survey-analytics.types/analytics-localization/portuguese.d.ts +16 -0
  42. package/survey-analytics.types/analytics-localization/russian.d.ts +15 -0
  43. package/survey-analytics.types/analytics-localization/spanish.d.ts +16 -0
  44. package/survey-analytics.types/analytics-localization/swedish.d.ts +82 -0
  45. package/survey-analytics.types/entries/summary.core.d.ts +1 -0
  46. package/survey-analytics.types/histogram.d.ts +4 -4
  47. package/survey-analytics.types/localizationManager.d.ts +12 -0
  48. package/survey-analytics.types/pivot.d.ts +7 -4
  49. package/survey-analytics.types/utils/index.d.ts +2 -2
  50. package/survey-analytics.types/visualizerBase.d.ts +11 -4
  51. package/survey.analytics.core.css +53 -22
  52. package/survey.analytics.core.css.map +1 -1
  53. package/survey.analytics.core.js +1712 -375
  54. package/survey.analytics.core.js.map +1 -1
  55. package/survey.analytics.core.min.css +2 -2
  56. package/survey.analytics.core.min.js +1 -1
  57. package/survey.analytics.core.min.js.LICENSE.txt +1 -1
  58. package/survey.analytics.css +53 -22
  59. package/survey.analytics.css.map +1 -1
  60. package/survey.analytics.js +1713 -375
  61. package/survey.analytics.js.map +1 -1
  62. package/survey.analytics.min.css +2 -2
  63. package/survey.analytics.min.js +1 -1
  64. package/survey.analytics.min.js.LICENSE.txt +1 -1
  65. package/survey.analytics.tabulator.css +53 -21
  66. package/survey.analytics.tabulator.css.map +1 -1
  67. package/survey.analytics.tabulator.js +1645 -284
  68. package/survey.analytics.tabulator.js.map +1 -1
  69. package/survey.analytics.tabulator.min.css +2 -2
  70. package/survey.analytics.tabulator.min.js +1 -1
  71. package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - SurveyJS Dashboard library v2.3.0
2
+ * surveyjs - SurveyJS Dashboard library v2.3.2
3
3
  * Copyright (c) 2015-2025 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -6872,12 +6872,14 @@ var AlternativeVisualizersWrapper = /** @class */ (function (_super) {
6872
6872
  * The event is fired right after AlternativeVisualizersWrapper content type has been changed.
6873
6873
  **/
6874
6874
  _this.onVisualizerChanged = new survey_core__WEBPACK_IMPORTED_MODULE_5__.Event();
6875
+ _this.showToolbar = false;
6875
6876
  _this.loadingData = false;
6876
6877
  if (!visualizers || visualizers.length < 2) {
6877
6878
  throw new Error("VisualizerArrayWrapper works with visualizers collection only.");
6878
6879
  }
6879
6880
  _this.visualizers.forEach(function (visualizer) {
6880
6881
  visualizer.onUpdate = function () { return _this.invokeOnUpdate(); };
6882
+ visualizer.onGetToolbarItemCreators = function () { return _this.toolbarItemCreators; };
6881
6883
  if (visualizer.supportSelection) {
6882
6884
  _this._supportSelection = true;
6883
6885
  _this.visualizersWithSelection.push(visualizer);
@@ -6890,7 +6892,7 @@ var AlternativeVisualizersWrapper = /** @class */ (function (_super) {
6890
6892
  text: _localizationManager__WEBPACK_IMPORTED_MODULE_2__.localization.getString("visualizer_" + visualizer.type),
6891
6893
  };
6892
6894
  }), function (option) { return _this.visualizer.type === option.value; }, function (e) { return _this.setVisualizer(e.target.value); });
6893
- });
6895
+ }, 0);
6894
6896
  _this.visualizer = visualizers[0];
6895
6897
  _this.visualizer.onAfterRender.add(_this.onAfterVisualizerRenderCallback);
6896
6898
  _this.visualizer.onStateChanged.add(_this.onVisualizerStateChangedCallback);
@@ -7046,84 +7048,170 @@ __webpack_require__.r(__webpack_exports__);
7046
7048
  /* harmony export */ arabicStrings: () => (/* binding */ arabicStrings)
7047
7049
  /* harmony export */ });
7048
7050
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7049
- // This dictionary contains 1 untranslated or inherited localization strings.
7050
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7051
7051
 
7052
7052
  var arabicStrings = {
7053
+ // "Group By Me"
7053
7054
  groupButton: "زرار المجموعة",
7055
+ // "Ungroup By Me"
7054
7056
  ungroupButton: "تم التحديث من خلالى",
7057
+ // "Select Me"
7055
7058
  selectButton: "اختر",
7059
+ // "Hide column"
7056
7060
  hideColumn: "اخفاء العمود",
7061
+ // "Show column"
7057
7062
  showColumn: "اظهار",
7063
+ // "Make column private"
7058
7064
  makePrivateColumn: "أجعل العمود خاص",
7065
+ // "Make column public"
7059
7066
  makePublicColumn: "أجعل العمود عام",
7067
+ // "Move to Detail"
7060
7068
  moveToDetail: "انتقل إلى التفاصيل",
7069
+ // "Show as Column"
7061
7070
  showAsColumn: "إظهار كعمود",
7071
+ // "Search..."
7062
7072
  filterPlaceholder: "بحث...",
7073
+ // "Remove rows"
7063
7074
  removeRows: "حذف",
7075
+ // "Show"
7064
7076
  showLabel: "اظهار",
7077
+ // "entries"
7065
7078
  entriesLabel: "مدخلات",
7079
+ // "Texts in table"
7066
7080
  visualizer_text: "جداول",
7081
+ // "Wordcloud"
7067
7082
  visualizer_wordcloud: "كلمات",
7083
+ // "Histogram"
7068
7084
  visualizer_histogram: "الرسم البياني",
7085
+ // "Average"
7069
7086
  visualizer_number: "متوسط",
7087
+ // "Table"
7070
7088
  visualizer_choices: "جدول",
7089
+ // "Chart"
7071
7090
  visualizer_selectBase: "رسم بياني",
7072
- // visualizer_matrix: "Chart",
7073
- chartType_bar: "شريط",
7091
+ // [Auto-translated] "Chart"
7092
+ visualizer_matrix: "جدول",
7093
+ // [Auto-translated] "Bar"
7094
+ chartType_bar: "بار",
7095
+ // "Vertical Bar"
7074
7096
  chartType_vbar: "شريط عمودي",
7097
+ // "Stacked Bar"
7075
7098
  chartType_stackedbar: "شريط مكدس",
7099
+ // "Doughnut"
7076
7100
  chartType_doughnut: "مخطط حلقي",
7101
+ // "Pie"
7077
7102
  chartType_pie: "مخطط دائري",
7103
+ // "Scatter"
7078
7104
  chartType_scatter: "مخطط التشتت",
7105
+ // "Gauge"
7079
7106
  chartType_gauge: "مخطط القياس",
7107
+ // "Bullet"
7080
7108
  chartType_bullet: "مخطط نقطي",
7109
+ // [Auto-translated] "Line"
7110
+ chartType_line: "سطر",
7111
+ // [Auto-translated] "Radar"
7112
+ chartType_radar: "رادار",
7113
+ // "Hide"
7081
7114
  hideButton: "اخفاء",
7115
+ // "Make private"
7082
7116
  makePrivateButton: "أجعل خاص",
7117
+ // "Make public"
7083
7118
  makePublicButton: "أجعل عام",
7119
+ // "Show"
7084
7120
  showButton: "اظهار",
7121
+ // "Filter"
7085
7122
  filter: "ترشح",
7123
+ // "Reset Filter"
7086
7124
  resetFilter: "إعادة تعيين",
7125
+ // "Change Locale"
7087
7126
  changeLocale: "تغيير اللغة",
7127
+ // "Clear"
7088
7128
  clearButton: "مسح",
7129
+ // "Choose question to show..."
7089
7130
  addElement: "اختر سؤالاً للعرض ...",
7131
+ // "Default Order"
7090
7132
  defaultOrder: "الترتيب الافتراضي",
7133
+ // "Ascending"
7091
7134
  ascOrder: "تصاعدى",
7135
+ // "Descending"
7092
7136
  descOrder: "تنازلى",
7137
+ // "Show minor columns"
7093
7138
  showMinorColumns: "إظهار الأعمدة الثانوية",
7139
+ // [Auto-translated] "Actions"
7140
+ actionsColumn: "الاجراءات",
7141
+ // "Other items and comments"
7094
7142
  otherCommentTitle: "بنود وتعليقات أخرى",
7143
+ // "Show percentages"
7095
7144
  showPercentages: "عرض النسب المئوية",
7145
+ // "Hide percentages"
7096
7146
  hidePercentages: "إخفاء النسب",
7147
+ // "PDF"
7097
7148
  pdfDownloadCaption: "PDF",
7149
+ // "Excel"
7098
7150
  xlsxDownloadCaption: "Excel",
7151
+ // "CSV"
7099
7152
  csvDownloadCaption: "CSV",
7153
+ // "Download plot as a PNG file"
7100
7154
  saveDiagramAsPNG: "تنزيل بصيغة png",
7155
+ // "Hide empty answers"
7101
7156
  hideEmptyAnswers: "إخفاء الإجابات الفارغة",
7157
+ // "Show empty answers"
7102
7158
  showEmptyAnswers: "إظهار الإجابات الفارغة",
7159
+ // "All answers"
7103
7160
  "topNValueText-1": "جميع الإجابات",
7161
+ // "Top 5 answers"
7104
7162
  topNValueText5: "أهم 5 إجابات",
7163
+ // "Top 10 answers"
7105
7164
  topNValueText10: "أفضل 10 إجابات",
7165
+ // "Top 20 answers"
7106
7166
  topNValueText20: "أفضل 20 إجابة",
7167
+ // "Hide missing answers"
7107
7168
  hideMissingAnswers: "إخفاء الإجابات المفقودة",
7169
+ // "Show missing answers"
7108
7170
  showMissingAnswers: "عرض الإجابات المفقودة",
7171
+ // "Missing answers"
7109
7172
  missingAnswersLabel: "أجوبة مفقودة",
7173
+ // "This question type is not visualized yet"
7110
7174
  noVisualizerForQuestion: "لم يتم العرض بعد",
7175
+ // "There are no results yet"
7111
7176
  noResults: "لا يوجد نتائج للعرض",
7177
+ // "Per Values"
7112
7178
  showPerValues: "لكل القيم",
7179
+ // "Per Columns"
7113
7180
  showPerColumns: "لكل الأعمدة",
7181
+ // "Answer"
7114
7182
  answer: "إجب",
7183
+ // "Correct answer: "
7115
7184
  correctAnswer: "الاجابة الصحيحة: ",
7185
+ // "Percent"
7116
7186
  percent: "النسبه المئويه",
7117
- responses: "الاستجابات"
7187
+ // [Auto-translated] "Percentage"
7188
+ percentage: "النسبه المئويه",
7189
+ // [Auto-translated] "Chart"
7190
+ statistics_chart: "جدول",
7191
+ // "Responses"
7192
+ responses: "الاستجابات",
7193
+ // [Auto-translated] "NPS"
7194
+ visualizer_nps: "NPS",
7195
+ // [Auto-translated] "NPS"
7196
+ npsScore: "NPS",
7197
+ // [Auto-translated] "Promoters"
7198
+ npsPromoters: "المروجين",
7199
+ // [Auto-translated] "Passives"
7200
+ npsPassives: "سلبيات",
7201
+ // [Auto-translated] "Detractors"
7202
+ npsDetractors: "المنتقدين",
7203
+ // [Auto-translated] "Category (X Axis):"
7204
+ axisXSelectorTitle: "الفئة (المحور X):",
7205
+ // [Auto-translated] "Legend (Series):"
7206
+ axisYSelectorTitle: "أسطورة (سلسلة):",
7207
+ // [Auto-translated] "Segments:"
7208
+ axisXAlternativeSelectorTitle: "قطاعات:",
7209
+ // [Auto-translated] "Groups:"
7210
+ axisYAlternativeSelectorTitle: "المجموعات:",
7211
+ // [Auto-translated] "Not selected"
7212
+ notSelected: "غير محدد"
7118
7213
  };
7119
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["ar"] = arabicStrings;
7120
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["ar"] = "العربية";
7121
- // The following strings have been translated by a machine translation service
7122
- // Remove those strings that you have corrected manually
7123
- // undefined.topNValueText-1: "All answers" => "جميع الإجابات"
7124
- // undefined.topNValueText5: "Top 5 answers" => "أهم 5 إجابات"
7125
- // undefined.topNValueText10: "Top 10 answers" => "أفضل 10 إجابات"
7126
- // undefined.topNValueText20: "Top 20 answers" => "أفضل 20 إجابة"
7214
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "ar", strings: arabicStrings, nativeName: "العربية" });
7127
7215
 
7128
7216
 
7129
7217
  /***/ }),
@@ -7140,95 +7228,170 @@ __webpack_require__.r(__webpack_exports__);
7140
7228
  /* harmony export */ dutchStrings: () => (/* binding */ dutchStrings)
7141
7229
  /* harmony export */ });
7142
7230
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7143
- // This dictionary contains 1 untranslated or inherited localization strings.
7144
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7145
7231
 
7146
7232
  var dutchStrings = {
7233
+ // "Group By Me"
7147
7234
  groupButton: "Groeperen op",
7235
+ // "Ungroup By Me"
7148
7236
  ungroupButton: "Groepering verwijderen",
7237
+ // "Select Me"
7149
7238
  selectButton: "Selecteer mij",
7239
+ // "Hide column"
7150
7240
  hideColumn: "Kolom verbergen",
7241
+ // "Show column"
7151
7242
  showColumn: "Toon kolom",
7243
+ // "Make column private"
7152
7244
  makePrivateColumn: "Kolom privé maken",
7245
+ // "Make column public"
7153
7246
  makePublicColumn: "Maak kolom openbaar",
7247
+ // "Move to Detail"
7154
7248
  moveToDetail: "Ga naar detail",
7249
+ // "Show as Column"
7155
7250
  showAsColumn: "Weergeven als kolom",
7251
+ // "Search..."
7156
7252
  filterPlaceholder: "Zoeken...",
7253
+ // "Remove rows"
7157
7254
  removeRows: "Verwijder rijen",
7255
+ // "Show"
7158
7256
  showLabel: "Tonen",
7257
+ // "entries"
7159
7258
  entriesLabel: "inzendingen",
7259
+ // "Texts in table"
7160
7260
  visualizer_text: "Teksten in tabel",
7261
+ // "Wordcloud"
7161
7262
  visualizer_wordcloud: "Wordcloud",
7263
+ // "Histogram"
7162
7264
  visualizer_histogram: "Histogram",
7265
+ // "Average"
7163
7266
  visualizer_number: "Gemiddeld",
7267
+ // "Table"
7164
7268
  visualizer_choices: "Tabel",
7269
+ // "Chart"
7165
7270
  visualizer_selectBase: "Grafiek",
7166
- // visualizer_matrix: "Chart",
7167
- chartType_bar: "Staafdiagram (liggend)",
7271
+ // [Auto-translated] "Chart"
7272
+ visualizer_matrix: "Zeekaart",
7273
+ // [Auto-translated] "Bar"
7274
+ chartType_bar: "Bar",
7275
+ // "Vertical Bar"
7168
7276
  chartType_vbar: "Staafdiagram",
7277
+ // "Stacked Bar"
7169
7278
  chartType_stackedbar: "Staafdiagram (gestapeld)",
7279
+ // "Doughnut"
7170
7280
  chartType_doughnut: "Donut",
7281
+ // "Pie"
7171
7282
  chartType_pie: "Cirkeldiagram",
7283
+ // "Scatter"
7172
7284
  chartType_scatter: "Spreidingsdiagram",
7285
+ // "Gauge"
7173
7286
  chartType_gauge: "Meterdiagram",
7287
+ // "Bullet"
7174
7288
  chartType_bullet: "Kogelgrafiek",
7289
+ // [Auto-translated] "Line"
7290
+ chartType_line: "Lijn",
7291
+ // [Auto-translated] "Radar"
7292
+ chartType_radar: "Radar",
7293
+ // "Hide"
7175
7294
  hideButton: "Verbergen",
7295
+ // "Make private"
7176
7296
  makePrivateButton: "Maak prive",
7297
+ // "Make public"
7177
7298
  makePublicButton: "Openbaar maken",
7299
+ // "Show"
7178
7300
  showButton: "Tonen",
7301
+ // "Filter"
7179
7302
  filter: "Filter",
7303
+ // "Reset Filter"
7180
7304
  resetFilter: "Filter resetten",
7305
+ // "Change Locale"
7181
7306
  changeLocale: "Wijzig de landinstelling",
7307
+ // "Clear"
7182
7308
  clearButton: "Wissen",
7309
+ // "Choose question to show..."
7183
7310
  addElement: "Kies een vraag om weer te geven ...",
7311
+ // "Default Order"
7184
7312
  defaultOrder: "Standaardvolgorde",
7313
+ // "Ascending"
7185
7314
  ascOrder: "Oplopend",
7315
+ // "Descending"
7186
7316
  descOrder: "Aflopend",
7317
+ // "Show minor columns"
7187
7318
  showMinorColumns: "Toon kleine kolommen",
7319
+ // [Auto-translated] "Actions"
7320
+ actionsColumn: "Acties",
7321
+ // "Other items and comments"
7188
7322
  otherCommentTitle: "Andere items en opmerkingen",
7323
+ // "Show percentages"
7189
7324
  showPercentages: "Percentages weergeven",
7325
+ // "Hide percentages"
7190
7326
  hidePercentages: "Verberg percentages",
7327
+ // "PDF"
7191
7328
  pdfDownloadCaption: "PDF",
7329
+ // "Excel"
7192
7330
  xlsxDownloadCaption: "Excel",
7331
+ // "CSV"
7193
7332
  csvDownloadCaption: "CSV",
7333
+ // "Download plot as a PNG file"
7194
7334
  saveDiagramAsPNG: "Download plot als PNG",
7335
+ // "Hide empty answers"
7195
7336
  hideEmptyAnswers: "Verberg lege antwoorden",
7337
+ // "Show empty answers"
7196
7338
  showEmptyAnswers: "Toon lege antwoorden",
7339
+ // "All answers"
7197
7340
  "topNValueText-1": "Alle antwoorden",
7341
+ // "Top 5 answers"
7198
7342
  topNValueText5: "Top 5 antwoorden",
7343
+ // "Top 10 answers"
7199
7344
  topNValueText10: "Top 10 antwoorden",
7345
+ // "Top 20 answers"
7200
7346
  topNValueText20: "Top 20 antwoorden",
7347
+ // "Hide missing answers"
7201
7348
  hideMissingAnswers: "Ontbrekende antwoorden verbergen",
7349
+ // "Show missing answers"
7202
7350
  showMissingAnswers: "Ontbrekende antwoorden weergeven",
7351
+ // "Missing answers"
7203
7352
  missingAnswersLabel: "Ontbrekende antwoorden",
7353
+ // "This question type is not visualized yet"
7204
7354
  noVisualizerForQuestion: "Dit vraagtype is nog niet gevisualiseerd",
7355
+ // "There are no results yet"
7205
7356
  noResults: "Er zijn nog geen resultaten",
7357
+ // "Per Values"
7206
7358
  showPerValues: "Per waarden",
7359
+ // "Per Columns"
7207
7360
  showPerColumns: "Per Kolommen",
7361
+ // "Answer"
7208
7362
  answer: "Antwoorden",
7363
+ // "Correct answer: "
7209
7364
  correctAnswer: "Goed antwoord: ",
7365
+ // "Percent"
7210
7366
  percent: "Procent",
7211
- responses: "Reacties"
7367
+ // [Auto-translated] "Percentage"
7368
+ percentage: "Percentage",
7369
+ // [Auto-translated] "Chart"
7370
+ statistics_chart: "Zeekaart",
7371
+ // "Responses"
7372
+ responses: "Reacties",
7373
+ // [Auto-translated] "NPS"
7374
+ visualizer_nps: "NPS",
7375
+ // [Auto-translated] "NPS"
7376
+ npsScore: "NPS",
7377
+ // [Auto-translated] "Promoters"
7378
+ npsPromoters: "Initiatiefnemers",
7379
+ // [Auto-translated] "Passives"
7380
+ npsPassives: "Passief personeel",
7381
+ // [Auto-translated] "Detractors"
7382
+ npsDetractors: "Tegenstanders",
7383
+ // [Auto-translated] "Category (X Axis):"
7384
+ axisXSelectorTitle: "Categorie (X-as):",
7385
+ // [Auto-translated] "Legend (Series):"
7386
+ axisYSelectorTitle: "Legende (serie):",
7387
+ // [Auto-translated] "Segments:"
7388
+ axisXAlternativeSelectorTitle: "Segmenten:",
7389
+ // [Auto-translated] "Groups:"
7390
+ axisYAlternativeSelectorTitle: "Groepen:",
7391
+ // [Auto-translated] "Not selected"
7392
+ notSelected: "Niet geselecteerd"
7212
7393
  };
7213
- //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.
7214
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["nl"] = dutchStrings;
7215
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["nl"] = "Nederlands";
7216
- // The following strings have been translated by a machine translation service
7217
- // Remove those strings that you have corrected manually
7218
- // undefined.visualizer_histogram: "Histogram" => "Histogram"
7219
- // undefined.visualizer_number: "Average" => "Gemiddeld"
7220
- // undefined.filter: "Filter" => "Filter"
7221
- // undefined.hideMissingAnswers: "Hide missing answers" => "Ontbrekende antwoorden verbergen"
7222
- // undefined.showMissingAnswers: "Show missing answers" => "Ontbrekende antwoorden weergeven"
7223
- // undefined.missingAnswersLabel: "Missing answers" => "Ontbrekende antwoorden"
7224
- // undefined.noVisualizerForQuestion: "This question type is not visualized yet" => "Dit vraagtype is nog niet gevisualiseerd"
7225
- // undefined.noResults: "There are no results yet" => "Er zijn nog geen resultaten"
7226
- // undefined.showPerValues: "Per Values" => "Per waarden"
7227
- // undefined.showPerColumns: "Per Columns" => "Per Kolommen"
7228
- // undefined.answer: "Answer" => "Antwoorden"
7229
- // undefined.correctAnswer: "Correct answer: " => "Goed antwoord: "
7230
- // undefined.percent: "Percent" => "Procent"
7231
- // undefined.responses: "Responses" => "Reacties"
7394
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "nl", strings: dutchStrings, nativeName: "Nederlands" });
7232
7395
 
7233
7396
 
7234
7397
  /***/ }),
@@ -7245,7 +7408,7 @@ __webpack_require__.r(__webpack_exports__);
7245
7408
  /* harmony export */ englishStrings: () => (/* binding */ englishStrings)
7246
7409
  /* harmony export */ });
7247
7410
  // Uncomment the line below if you create a custom dictionary
7248
- // import { localization } from "../localizationManager";
7411
+ // import { setupLocale } from "../localizationManager";
7249
7412
  var englishStrings = {
7250
7413
  groupButton: "Group By Me",
7251
7414
  ungroupButton: "Ungroup By Me",
@@ -7322,14 +7485,18 @@ var englishStrings = {
7322
7485
  npsPromoters: "Promoters",
7323
7486
  npsPassives: "Passives",
7324
7487
  npsDetractors: "Detractors",
7325
- axisXSelectorTitle: "X axis:",
7326
- axisYSelectorTitle: "Y axis:"
7488
+ axisXSelectorTitle: "Category (X Axis):",
7489
+ axisYSelectorTitle: "Legend (Series):",
7490
+ axisXAlternativeSelectorTitle: "Segments:",
7491
+ axisYAlternativeSelectorTitle: "Groups:",
7492
+ notSelected: "Not selected",
7493
+ license: "To use the Dashboard library in your application, a <a href='https://surveyjs.io/licensing' target='_blank'>developer license</a> is required. If you have an active license, please <a href='https://surveyjs.io/remove-alert-banner' target='_blank'>set up your license key</a> and ensure you're using the <a href='https://surveyjs.io/stay-updated/release-notes' target='_blank'>latest version</a>.",
7494
+ license2: "This banner appears because your maintenance subscription for the Dashboard library expired on {date}. You may continue using <a href='https://surveyjs.io/stay-updated/release-notes' target='_blank'>all versions released up to that date</a>. To remove this banner in the latest version, please <a href='https://surveyjs.io/manage#license-manager' target='_blank'>renew your subscription</a> and <a href='https://surveyjs.io/remove-alert-banner' target='_blank'>set up a new license key</a>."
7327
7495
  };
7328
- // Uncomment the lines below if you create a custom dictionary.
7496
+ // Uncomment the line below if you create a custom dictionary.
7329
7497
  // Replace "en" with a custom locale code (for example, "fr" or "de"),
7330
7498
  // Replace `englishStrings` with the name of the variable that contains the custom dictionary.
7331
- // localization.locales["en"] = englishStrings;
7332
- // localization.localeNames["en"] = "English";
7499
+ // setupLocale({ localeCode: "en", strings: englishStrings });
7333
7500
 
7334
7501
 
7335
7502
  /***/ }),
@@ -7346,126 +7513,170 @@ __webpack_require__.r(__webpack_exports__);
7346
7513
  /* harmony export */ farsiStrings: () => (/* binding */ farsiStrings)
7347
7514
  /* harmony export */ });
7348
7515
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7349
- // This dictionary contains 1 untranslated or inherited localization strings.
7350
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7351
7516
 
7352
7517
  var farsiStrings = {
7518
+ // "Group By Me"
7353
7519
  groupButton: "گروه بندی با",
7520
+ // "Ungroup By Me"
7354
7521
  ungroupButton: "حذف گروه",
7522
+ // "Select Me"
7355
7523
  selectButton: "انتخاب",
7524
+ // "Hide column"
7356
7525
  hideColumn: "مخفی کردن ستون",
7526
+ // "Show column"
7357
7527
  showColumn: "نمایش ستون",
7528
+ // "Make column private"
7358
7529
  makePrivateColumn: "خصوصی کردن ستون",
7530
+ // "Make column public"
7359
7531
  makePublicColumn: "عمومی کردن ستون",
7532
+ // "Move to Detail"
7360
7533
  moveToDetail: "انتقال به جزئیات",
7534
+ // "Show as Column"
7361
7535
  showAsColumn: "نمایش به عنوان ستون",
7536
+ // "Search..."
7362
7537
  filterPlaceholder: "جستجو...",
7538
+ // "Remove rows"
7363
7539
  removeRows: "حذف سطرها",
7540
+ // "Show"
7364
7541
  showLabel: "نمایش",
7542
+ // "entries"
7365
7543
  entriesLabel: "ورودی",
7544
+ // "Texts in table"
7366
7545
  visualizer_text: "متون در جدول",
7546
+ // "Wordcloud"
7367
7547
  visualizer_wordcloud: "ابر کلمات",
7548
+ // "Histogram"
7368
7549
  visualizer_histogram: "هیستوگرام",
7550
+ // "Average"
7369
7551
  visualizer_number: "متوسط",
7552
+ // "Table"
7370
7553
  visualizer_choices: "جدول",
7554
+ // "Chart"
7371
7555
  visualizer_selectBase: "نمودار",
7372
- // visualizer_matrix: "Chart",
7373
- chartType_bar: "میله ای",
7556
+ // [Auto-translated] "Chart"
7557
+ visualizer_matrix: "نمودار",
7558
+ // [Auto-translated] "Bar"
7559
+ chartType_bar: "نوار",
7560
+ // "Vertical Bar"
7374
7561
  chartType_vbar: "نوار عمودی",
7562
+ // "Stacked Bar"
7375
7563
  chartType_stackedbar: "نوار پشته",
7564
+ // "Doughnut"
7376
7565
  chartType_doughnut: "دونات",
7566
+ // "Pie"
7377
7567
  chartType_pie: "دابره ای(pie)",
7568
+ // "Scatter"
7378
7569
  chartType_scatter: "پراکندگی(Scatter)",
7570
+ // "Gauge"
7379
7571
  chartType_gauge: "عقربه ای",
7572
+ // "Bullet"
7380
7573
  chartType_bullet: "Bullet",
7574
+ // [Auto-translated] "Line"
7575
+ chartType_line: "خط",
7576
+ // [Auto-translated] "Radar"
7577
+ chartType_radar: "رادار",
7578
+ // "Hide"
7381
7579
  hideButton: "مخفی",
7580
+ // "Make private"
7382
7581
  makePrivateButton: "خصوصی کردن",
7582
+ // "Make public"
7383
7583
  makePublicButton: "عمومی کردن",
7584
+ // "Show"
7384
7585
  showButton: "نمایش",
7586
+ // "Filter"
7385
7587
  filter: "فیلتر",
7588
+ // "Reset Filter"
7386
7589
  resetFilter: "بازنشانی فیلترها",
7590
+ // "Change Locale"
7387
7591
  changeLocale: "تغییر محلی",
7592
+ // "Clear"
7388
7593
  clearButton: "پاک کردن",
7594
+ // "Choose question to show..."
7389
7595
  addElement: "انتخاب سوال برای نمایش...",
7596
+ // "Default Order"
7390
7597
  defaultOrder: "ترتیب پیشفرض",
7598
+ // "Ascending"
7391
7599
  ascOrder: "صعودی",
7600
+ // "Descending"
7392
7601
  descOrder: "نزولی",
7602
+ // "Show minor columns"
7393
7603
  showMinorColumns: "نمایش ستونهای فرعی",
7604
+ // [Auto-translated] "Actions"
7605
+ actionsColumn: "اقدامات",
7606
+ // "Other items and comments"
7394
7607
  otherCommentTitle: "سایر موارد و نظرات",
7608
+ // "Show percentages"
7395
7609
  showPercentages: "نمایش درصد",
7610
+ // "Hide percentages"
7396
7611
  hidePercentages: "درصدهای مخفی",
7612
+ // "PDF"
7397
7613
  pdfDownloadCaption: "پی دی اف",
7614
+ // "Excel"
7398
7615
  xlsxDownloadCaption: "اکسل",
7616
+ // "CSV"
7399
7617
  csvDownloadCaption: "Csv",
7618
+ // "Download plot as a PNG file"
7400
7619
  saveDiagramAsPNG: "دانلود طرح به عنوان یک فایل PNG",
7620
+ // "Hide empty answers"
7401
7621
  hideEmptyAnswers: "مخفی کردن پاسخهای خالی",
7622
+ // "Show empty answers"
7402
7623
  showEmptyAnswers: "نمایش پاسخهای خالی",
7624
+ // "All answers"
7403
7625
  "topNValueText-1": "همه پاسخ ها",
7626
+ // "Top 5 answers"
7404
7627
  topNValueText5: "5 پاسخ برتر",
7628
+ // "Top 10 answers"
7405
7629
  topNValueText10: "10 پاسخ برتر",
7630
+ // "Top 20 answers"
7406
7631
  topNValueText20: "20 پاسخ برتر",
7632
+ // "Hide missing answers"
7407
7633
  hideMissingAnswers: "مخفی کردن پاسخهای گمشده",
7634
+ // "Show missing answers"
7408
7635
  showMissingAnswers: "نمایش پاسخهای گمشده",
7636
+ // "Missing answers"
7409
7637
  missingAnswersLabel: "پاسخ های گمشده",
7638
+ // "This question type is not visualized yet"
7410
7639
  noVisualizerForQuestion: "این نوع سوال هنوز تجسم نشده است",
7640
+ // "There are no results yet"
7411
7641
  noResults: "هنوز نتیجه ای حاصل نشده است",
7642
+ // "Per Values"
7412
7643
  showPerValues: "به ازای هر ارزش",
7644
+ // "Per Columns"
7413
7645
  showPerColumns: "در هر ستون",
7646
+ // "Answer"
7414
7647
  answer: "پاسخ",
7648
+ // "Correct answer: "
7415
7649
  correctAnswer: "پاسخ صحیح: ",
7650
+ // "Percent"
7416
7651
  percent: "درصد",
7417
- responses: "پاسخ"
7652
+ // [Auto-translated] "Percentage"
7653
+ percentage: "درصد",
7654
+ // [Auto-translated] "Chart"
7655
+ statistics_chart: "نمودار",
7656
+ // "Responses"
7657
+ responses: "پاسخ",
7658
+ // [Auto-translated] "NPS"
7659
+ visualizer_nps: "NPS",
7660
+ // [Auto-translated] "NPS"
7661
+ npsScore: "NPS",
7662
+ // [Auto-translated] "Promoters"
7663
+ npsPromoters: "مروج",
7664
+ // [Auto-translated] "Passives"
7665
+ npsPassives: "منفعل ها",
7666
+ // [Auto-translated] "Detractors"
7667
+ npsDetractors: "بدهیدان",
7668
+ // [Auto-translated] "Category (X Axis):"
7669
+ axisXSelectorTitle: "دسته (محور X):",
7670
+ // [Auto-translated] "Legend (Series):"
7671
+ axisYSelectorTitle: "افسانه (سری):",
7672
+ // [Auto-translated] "Segments:"
7673
+ axisXAlternativeSelectorTitle: "بخش:",
7674
+ // [Auto-translated] "Groups:"
7675
+ axisYAlternativeSelectorTitle: "گروه:",
7676
+ // [Auto-translated] "Not selected"
7677
+ notSelected: "انتخاب نشده است"
7418
7678
  };
7419
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["fa"] = farsiStrings;
7420
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["fa"] = "فارسی";
7421
- // The following strings have been translated by a machine translation service
7422
- // Remove those strings that you have corrected manually
7423
- // undefined.makePrivateColumn: "Make column private" => "خصوصی کردن ستون"
7424
- // undefined.makePublicColumn: "Make column public" => "عمومی کردن ستون"
7425
- // undefined.filterPlaceholder: "Search..." => "جستجو..."
7426
- // undefined.removeRows: "Remove rows" => "حذف سطرها"
7427
- // undefined.showLabel: "Show" => "نمایش"
7428
- // undefined.entriesLabel: "entries" => "ورودی"
7429
- // undefined.visualizer_histogram: "Histogram" => "هیستوگرام"
7430
- // undefined.visualizer_number: "Average" => "متوسط"
7431
- // undefined.visualizer_choices: "Table" => "جدول"
7432
- // undefined.visualizer_selectBase: "Chart" => "نمودار"
7433
- // undefined.chartType_vbar: "Vertical Bar" => "نوار عمودی"
7434
- // undefined.chartType_stackedbar: "Stacked Bar" => "نوار پشته"
7435
- // undefined.chartType_doughnut: "Doughnut" => "دونات"
7436
- // undefined.makePrivateButton: "Make private" => "خصوصی کردن"
7437
- // undefined.makePublicButton: "Make public" => "عمومی کردن"
7438
- // undefined.showButton: "Show" => "نمایش"
7439
- // undefined.filter: "Filter" => "فیلتر"
7440
- // undefined.changeLocale: "Change Locale" => "تغییر محلی"
7441
- // undefined.defaultOrder: "Default Order" => "ترتیب پیشفرض"
7442
- // undefined.ascOrder: "Ascending" => "صعودی"
7443
- // undefined.descOrder: "Descending" => "نزولی"
7444
- // undefined.showMinorColumns: "Show minor columns" => "نمایش ستونهای فرعی"
7445
- // undefined.otherCommentTitle: "Other items and comments" => "سایر موارد و نظرات"
7446
- // undefined.showPercentages: "Show percentages" => "نمایش درصد"
7447
- // undefined.hidePercentages: "Hide percentages" => "درصدهای مخفی"
7448
- // undefined.pdfDownloadCaption: "PDF" => "پی دی اف"
7449
- // undefined.xlsxDownloadCaption: "Excel" => "اکسل"
7450
- // undefined.csvDownloadCaption: "CSV" => "Csv"
7451
- // undefined.saveDiagramAsPNG: "Download plot as a PNG file" => "دانلود طرح به عنوان یک فایل PNG"
7452
- // undefined.hideEmptyAnswers: "Hide empty answers" => "مخفی کردن پاسخهای خالی"
7453
- // undefined.showEmptyAnswers: "Show empty answers" => "نمایش پاسخهای خالی"
7454
- // undefined.topNValueText-1: "All answers" => "همه پاسخ ها"
7455
- // undefined.topNValueText5: "Top 5 answers" => "5 پاسخ برتر"
7456
- // undefined.topNValueText10: "Top 10 answers" => "10 پاسخ برتر"
7457
- // undefined.topNValueText20: "Top 20 answers" => "20 پاسخ برتر"
7458
- // undefined.hideMissingAnswers: "Hide missing answers" => "مخفی کردن پاسخهای گمشده"
7459
- // undefined.showMissingAnswers: "Show missing answers" => "نمایش پاسخهای گمشده"
7460
- // undefined.missingAnswersLabel: "Missing answers" => "پاسخ های گمشده"
7461
- // undefined.noVisualizerForQuestion: "This question type is not visualized yet" => "این نوع سوال هنوز تجسم نشده است"
7462
- // undefined.noResults: "There are no results yet" => "هنوز نتیجه ای حاصل نشده است"
7463
- // undefined.showPerValues: "Per Values" => "به ازای هر ارزش"
7464
- // undefined.showPerColumns: "Per Columns" => "در هر ستون"
7465
- // undefined.answer: "Answer" => "پاسخ"
7466
- // undefined.correctAnswer: "Correct answer: " => "پاسخ صحیح: "
7467
- // undefined.percent: "Percent" => "درصد"
7468
- // undefined.responses: "Responses" => "پاسخ"
7679
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "fa", strings: farsiStrings, nativeName: "فارسی" });
7469
7680
 
7470
7681
 
7471
7682
  /***/ }),
@@ -7482,88 +7693,170 @@ __webpack_require__.r(__webpack_exports__);
7482
7693
  /* harmony export */ finnishStrings: () => (/* binding */ finnishStrings)
7483
7694
  /* harmony export */ });
7484
7695
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7485
- // Uncomment the line below if you create a custom dictionary
7486
7696
 
7487
7697
  var finnishStrings = {
7698
+ // "Group By Me"
7488
7699
  groupButton: "Erottele minulla",
7700
+ // "Ungroup By Me"
7489
7701
  ungroupButton: "Poista erottele minulla",
7702
+ // "Select Me"
7490
7703
  selectButton: "Valitse minut",
7704
+ // "Hide column"
7491
7705
  hideColumn: "Piilota sarake",
7706
+ // "Show column"
7492
7707
  showColumn: "Näytä sarake",
7708
+ // "Make column private"
7493
7709
  makePrivateColumn: "Merkitse sarake yksityiseksi",
7710
+ // "Make column public"
7494
7711
  makePublicColumn: "Merkitse sarake julkiseksi",
7712
+ // "Move to Detail"
7495
7713
  moveToDetail: "Siirrä yksityiskohtiin",
7714
+ // "Show as Column"
7496
7715
  showAsColumn: "Näytä sarakkeena",
7716
+ // "Search..."
7497
7717
  filterPlaceholder: "Etsi...",
7718
+ // "Remove rows"
7498
7719
  removeRows: "Poista rivejä",
7720
+ // "Show"
7499
7721
  showLabel: "Näytä",
7722
+ // "entries"
7500
7723
  entriesLabel: "vastauksia",
7724
+ // "Texts in table"
7501
7725
  visualizer_text: "Tekstitaulukko",
7726
+ // "Wordcloud"
7502
7727
  visualizer_wordcloud: "Sanapilvi",
7728
+ // "Histogram"
7503
7729
  visualizer_histogram: "Histogrammi",
7730
+ // "Average"
7504
7731
  visualizer_number: "Keskiarvo",
7732
+ // "Table"
7505
7733
  visualizer_choices: "Taulukko",
7734
+ // "Chart"
7506
7735
  visualizer_selectBase: "Kuvaaja",
7736
+ // "Chart"
7507
7737
  visualizer_matrix: "Kuvaaja",
7738
+ // "Bar"
7508
7739
  chartType_bar: "Pylväs",
7740
+ // "Vertical Bar"
7509
7741
  chartType_vbar: "Vaakapyöväs",
7742
+ // "Stacked Bar"
7510
7743
  chartType_stackedbar: "Pinottu pylväs",
7744
+ // "Doughnut"
7511
7745
  chartType_doughnut: "Donitsi",
7746
+ // "Pie"
7512
7747
  chartType_pie: "Piirakka",
7748
+ // "Scatter"
7513
7749
  chartType_scatter: "Hajonta",
7750
+ // "Gauge"
7514
7751
  chartType_gauge: "Mittari",
7752
+ // "Bullet"
7515
7753
  chartType_bullet: "Luoti",
7754
+ // "Line"
7516
7755
  chartType_line: "Viiva",
7756
+ // [Auto-translated] "Radar"
7757
+ chartType_radar: "Tutka",
7758
+ // "Hide"
7517
7759
  hideButton: "Piilota",
7760
+ // "Make private"
7518
7761
  makePrivateButton: "Merkise yksityiseksi",
7762
+ // "Make public"
7519
7763
  makePublicButton: "Merkitse julkiseksi",
7764
+ // "Show"
7520
7765
  showButton: "Näytä",
7766
+ // "Filter"
7521
7767
  filter: "Rajaa",
7768
+ // "Reset Filter"
7522
7769
  resetFilter: "Nollaa Rajaus",
7770
+ // "Change Locale"
7523
7771
  changeLocale: "Vaihda kieli",
7772
+ // "Clear"
7524
7773
  clearButton: "Nollaa",
7774
+ // "Choose question to show..."
7525
7775
  addElement: "Valitse näytettävä kysymys...",
7776
+ // "Default Order"
7526
7777
  defaultOrder: "Oletusjärjestys",
7778
+ // "Ascending"
7527
7779
  ascOrder: "Nouseva",
7780
+ // "Descending"
7528
7781
  descOrder: "Laskeva",
7782
+ // "Show minor columns"
7529
7783
  showMinorColumns: "Näytä alasarakkeet",
7784
+ // [Auto-translated] "Actions"
7785
+ actionsColumn: "Toimet",
7786
+ // "Other items and comments"
7530
7787
  otherCommentTitle: "Muut asiat ja kommentit",
7788
+ // "Show percentages"
7531
7789
  showPercentages: "Näytä prosentit",
7790
+ // "Hide percentages"
7532
7791
  hidePercentages: "Piilota prosentit",
7792
+ // "PDF"
7533
7793
  pdfDownloadCaption: "PDF",
7794
+ // "Excel"
7534
7795
  xlsxDownloadCaption: "Excel",
7796
+ // "CSV"
7535
7797
  csvDownloadCaption: "CSV",
7798
+ // "Download plot as a PNG file"
7536
7799
  saveDiagramAsPNG: "Lataa kuvaaja PNG kuvana",
7800
+ // "Hide empty answers"
7537
7801
  hideEmptyAnswers: "Piilota tyhjät vastaukset",
7802
+ // "Show empty answers"
7538
7803
  showEmptyAnswers: "Näytä tyhjät vastaukset",
7804
+ // "All answers"
7539
7805
  "topNValueText-1": "Kaikki vastaukset",
7540
- "topNValueText5": "Top 5 vastaukset",
7541
- "topNValueText10": "Top 10 vastaukset",
7542
- "topNValueText20": "Top 20 vastaukset",
7806
+ // "Top 5 answers"
7807
+ topNValueText5: "Top 5 vastaukset",
7808
+ // "Top 10 answers"
7809
+ topNValueText10: "Top 10 vastaukset",
7810
+ // "Top 20 answers"
7811
+ topNValueText20: "Top 20 vastaukset",
7812
+ // "Hide missing answers"
7543
7813
  hideMissingAnswers: "Piilota puuttuvat vastaukset",
7814
+ // "Show missing answers"
7544
7815
  showMissingAnswers: "Näytä puuttuvat vastaukset",
7816
+ // "Missing answers"
7545
7817
  missingAnswersLabel: "Puuttuvat vastaukset",
7818
+ // "This question type is not visualized yet"
7546
7819
  noVisualizerForQuestion: "Tätä kysymystyyppiä ei voida visualisoida.",
7820
+ // "There are no results yet"
7547
7821
  noResults: "Ei vielä tuloksia",
7822
+ // "Per Values"
7548
7823
  showPerValues: "Näytä arvottain",
7824
+ // "Per Columns"
7549
7825
  showPerColumns: "Näytä sarakkeittain",
7826
+ // "Answer"
7550
7827
  answer: "Vastaus",
7828
+ // "Correct answer: "
7551
7829
  correctAnswer: "Oikea vastaus: ",
7830
+ // "Percent"
7552
7831
  percent: "Prosentti",
7832
+ // "Percentage"
7553
7833
  percentage: "Prosenttiyksikkö",
7834
+ // "Chart"
7554
7835
  statistics_chart: "Kuvaaja",
7836
+ // "Responses"
7555
7837
  responses: "Vastaukset",
7838
+ // "NPS"
7556
7839
  visualizer_nps: "NPS",
7840
+ // "NPS"
7557
7841
  npsScore: "NPS",
7842
+ // "Promoters"
7558
7843
  npsPromoters: "Suosittelija",
7844
+ // "Passives"
7559
7845
  npsPassives: "Passiivinen",
7846
+ // "Detractors"
7560
7847
  npsDetractors: "Arvostelija",
7848
+ // [Auto-translated] "Category (X Axis):"
7849
+ axisXSelectorTitle: "Luokka (X-akseli):",
7850
+ // [Auto-translated] "Legend (Series):"
7851
+ axisYSelectorTitle: "Legenda (sarja):",
7852
+ // [Auto-translated] "Segments:"
7853
+ axisXAlternativeSelectorTitle: "Segmentit:",
7854
+ // [Auto-translated] "Groups:"
7855
+ axisYAlternativeSelectorTitle: "Ryhmät:",
7856
+ // [Auto-translated] "Not selected"
7857
+ notSelected: "Ei valittu"
7561
7858
  };
7562
- // Uncomment the lines below if you create a custom dictionary.
7563
- // Replace "en" with a custom locale code (for example, "fr" or "de"),
7564
- // Replace `englishStrings` with the name of the variable that contains the custom dictionary.
7565
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["fi"] = finnishStrings;
7566
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["fi"] = "Suomi";
7859
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "fi", strings: finnishStrings, nativeName: "Suomi" });
7567
7860
 
7568
7861
 
7569
7862
  /***/ }),
@@ -7580,100 +7873,170 @@ __webpack_require__.r(__webpack_exports__);
7580
7873
  /* harmony export */ frenchStrings: () => (/* binding */ frenchStrings)
7581
7874
  /* harmony export */ });
7582
7875
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7583
- // This dictionary contains 1 untranslated or inherited localization strings.
7584
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7585
7876
 
7586
7877
  var frenchStrings = {
7878
+ // "Group By Me"
7587
7879
  groupButton: "Grouper",
7880
+ // "Ungroup By Me"
7588
7881
  ungroupButton: "Dissocier",
7882
+ // "Select Me"
7589
7883
  selectButton: "Sélectionner",
7884
+ // "Hide column"
7590
7885
  hideColumn: "Masquer colonne",
7886
+ // "Show column"
7591
7887
  showColumn: "Afficher colonne",
7888
+ // "Make column private"
7592
7889
  makePrivateColumn: "Rendre la colonne privé",
7890
+ // "Make column public"
7593
7891
  makePublicColumn: "Rendre la colonne public",
7892
+ // "Move to Detail"
7594
7893
  moveToDetail: "Déplacer vers détails",
7894
+ // "Show as Column"
7595
7895
  showAsColumn: "Afficher en colonne",
7896
+ // "Search..."
7596
7897
  filterPlaceholder: "Rechercher...",
7898
+ // "Remove rows"
7597
7899
  removeRows: "Supprimer colonne",
7900
+ // "Show"
7598
7901
  showLabel: "Afficher",
7902
+ // "entries"
7599
7903
  entriesLabel: "entrées",
7904
+ // "Texts in table"
7600
7905
  visualizer_text: "Textes en table",
7906
+ // "Wordcloud"
7601
7907
  visualizer_wordcloud: "Nuages de mots",
7908
+ // "Histogram"
7602
7909
  visualizer_histogram: "Histogramme",
7910
+ // "Average"
7603
7911
  visualizer_number: "Moyenne",
7912
+ // "Table"
7604
7913
  visualizer_choices: "Table",
7914
+ // "Chart"
7605
7915
  visualizer_selectBase: "Graphique",
7606
- // visualizer_matrix: "Chart",
7607
- chartType_bar: "Barres",
7916
+ // [Auto-translated] "Chart"
7917
+ visualizer_matrix: "Graphique",
7918
+ // [Auto-translated] "Bar"
7919
+ chartType_bar: "Bar",
7920
+ // "Vertical Bar"
7608
7921
  chartType_vbar: "Barre verticale",
7922
+ // "Stacked Bar"
7609
7923
  chartType_stackedbar: "Barres empilées",
7924
+ // "Doughnut"
7610
7925
  chartType_doughnut: "Anneau",
7926
+ // "Pie"
7611
7927
  chartType_pie: "Secteurs",
7928
+ // "Scatter"
7612
7929
  chartType_scatter: "Nuages de points",
7930
+ // "Gauge"
7613
7931
  chartType_gauge: "Gauge",
7932
+ // "Bullet"
7614
7933
  chartType_bullet: "Bulles",
7934
+ // [Auto-translated] "Line"
7935
+ chartType_line: "Ligne",
7936
+ // [Auto-translated] "Radar"
7937
+ chartType_radar: "Radar",
7938
+ // "Hide"
7615
7939
  hideButton: "Masquer",
7940
+ // "Make private"
7616
7941
  makePrivateButton: "Rendre privé",
7942
+ // "Make public"
7617
7943
  makePublicButton: "Rendre publique",
7944
+ // "Show"
7618
7945
  showButton: "Afficher",
7946
+ // "Filter"
7619
7947
  filter: "Filtre",
7948
+ // "Reset Filter"
7620
7949
  resetFilter: "Rafraichir Filtres",
7950
+ // "Change Locale"
7621
7951
  changeLocale: "Changer les paramètres régionaux",
7952
+ // "Clear"
7622
7953
  clearButton: "Rafraichir",
7954
+ // "Choose question to show..."
7623
7955
  addElement: "Choisir la question à afficher...",
7956
+ // "Default Order"
7624
7957
  defaultOrder: "Defaut",
7958
+ // "Ascending"
7625
7959
  ascOrder: "Ascendant",
7960
+ // "Descending"
7626
7961
  descOrder: "Descendant",
7962
+ // "Show minor columns"
7627
7963
  showMinorColumns: "Afficher les colonnes mineures",
7964
+ // [Auto-translated] "Actions"
7965
+ actionsColumn: "Actions",
7966
+ // "Other items and comments"
7628
7967
  otherCommentTitle: "Autre élément et commentaires",
7968
+ // "Show percentages"
7629
7969
  showPercentages: "Afficher les pourcentages",
7970
+ // "Hide percentages"
7630
7971
  hidePercentages: "Masquer les pourcentages",
7972
+ // "PDF"
7631
7973
  pdfDownloadCaption: "PDF",
7974
+ // "Excel"
7632
7975
  xlsxDownloadCaption: "Exceller",
7976
+ // "CSV"
7633
7977
  csvDownloadCaption: "Fichier CSV",
7978
+ // "Download plot as a PNG file"
7634
7979
  saveDiagramAsPNG: "Sauver en png",
7980
+ // "Hide empty answers"
7635
7981
  hideEmptyAnswers: "Masquer les réponses vides",
7982
+ // "Show empty answers"
7636
7983
  showEmptyAnswers: "Afficher les réponses vides",
7984
+ // "All answers"
7637
7985
  "topNValueText-1": "Toutes les réponses",
7986
+ // "Top 5 answers"
7638
7987
  topNValueText5: "Top 5 des réponses",
7988
+ // "Top 10 answers"
7639
7989
  topNValueText10: "Top 10 des réponses",
7990
+ // "Top 20 answers"
7640
7991
  topNValueText20: "Top 20 des réponses",
7992
+ // "Hide missing answers"
7641
7993
  hideMissingAnswers: "Masquer les réponses manquantes",
7994
+ // "Show missing answers"
7642
7995
  showMissingAnswers: "Afficher les réponses manquantes",
7996
+ // "Missing answers"
7643
7997
  missingAnswersLabel: "Réponses manquantes",
7998
+ // "This question type is not visualized yet"
7644
7999
  noVisualizerForQuestion: "Ce type de question n'est pas encore visualisé",
8000
+ // "There are no results yet"
7645
8001
  noResults: "Il n'y a pas encore de résultats",
8002
+ // "Per Values"
7646
8003
  showPerValues: "Par valeur",
8004
+ // "Per Columns"
7647
8005
  showPerColumns: "Par colonne",
8006
+ // "Answer"
7648
8007
  answer: "Réponse",
8008
+ // "Correct answer: "
7649
8009
  correctAnswer: "Réponse correcte: ",
8010
+ // "Percent"
7650
8011
  percent: "Pourcentage",
7651
- responses: "Réponses"
8012
+ // [Auto-translated] "Percentage"
8013
+ percentage: "Pourcentage",
8014
+ // [Auto-translated] "Chart"
8015
+ statistics_chart: "Graphique",
8016
+ // "Responses"
8017
+ responses: "Réponses",
8018
+ // [Auto-translated] "NPS"
8019
+ visualizer_nps: "Le NPS",
8020
+ // [Auto-translated] "NPS"
8021
+ npsScore: "Le NPS",
8022
+ // [Auto-translated] "Promoters"
8023
+ npsPromoters: "Promoteurs",
8024
+ // [Auto-translated] "Passives"
8025
+ npsPassives: "Passifs",
8026
+ // [Auto-translated] "Detractors"
8027
+ npsDetractors: "Détracteurs",
8028
+ // [Auto-translated] "Category (X Axis):"
8029
+ axisXSelectorTitle: "Catégorie (axe X) :",
8030
+ // [Auto-translated] "Legend (Series):"
8031
+ axisYSelectorTitle: "Légende (série) :",
8032
+ // [Auto-translated] "Segments:"
8033
+ axisXAlternativeSelectorTitle: "Segments:",
8034
+ // [Auto-translated] "Groups:"
8035
+ axisYAlternativeSelectorTitle: "Groupe:",
8036
+ // [Auto-translated] "Not selected"
8037
+ notSelected: "Non sélectionné"
7652
8038
  };
7653
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["fr"] = frenchStrings;
7654
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["fr"] = "Français";
7655
- // The following strings have been translated by a machine translation service
7656
- // Remove those strings that you have corrected manually
7657
- // undefined.visualizer_histogram: "Histogram" => "Histogramme"
7658
- // undefined.visualizer_number: "Average" => "Moyenne"
7659
- // undefined.visualizer_choices: "Table" => "Table"
7660
- // undefined.visualizer_selectBase: "Chart" => "Graphique"
7661
- // undefined.chartType_vbar: "Vertical Bar" => "Barre verticale"
7662
- // undefined.changeLocale: "Change Locale" => "Changer les paramètres régionaux"
7663
- // undefined.showPercentages: "Show percentages" => "Afficher les pourcentages"
7664
- // undefined.hidePercentages: "Hide percentages" => "Masquer les pourcentages"
7665
- // undefined.pdfDownloadCaption: "PDF" => "PDF"
7666
- // undefined.xlsxDownloadCaption: "Excel" => "Exceller"
7667
- // undefined.csvDownloadCaption: "CSV" => "Fichier CSV"
7668
- // undefined.hideEmptyAnswers: "Hide empty answers" => "Masquer les réponses vides"
7669
- // undefined.showEmptyAnswers: "Show empty answers" => "Afficher les réponses vides"
7670
- // undefined.topNValueText-1: "All answers" => "Toutes les réponses"
7671
- // undefined.topNValueText5: "Top 5 answers" => "Top 5 des réponses"
7672
- // undefined.topNValueText10: "Top 10 answers" => "Top 10 des réponses"
7673
- // undefined.topNValueText20: "Top 20 answers" => "Top 20 des réponses"
7674
- // undefined.hideMissingAnswers: "Hide missing answers" => "Masquer les réponses manquantes"
7675
- // undefined.showMissingAnswers: "Show missing answers" => "Afficher les réponses manquantes"
7676
- // undefined.missingAnswersLabel: "Missing answers" => "Réponses manquantes"
8039
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "fr", strings: frenchStrings, nativeName: "Français" });
7677
8040
 
7678
8041
 
7679
8042
  /***/ }),
@@ -7690,78 +8053,170 @@ __webpack_require__.r(__webpack_exports__);
7690
8053
  /* harmony export */ germanStrings: () => (/* binding */ germanStrings)
7691
8054
  /* harmony export */ });
7692
8055
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7693
- // This dictionary contains 1 untranslated or inherited localization strings.
7694
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7695
8056
 
7696
8057
  var germanStrings = {
8058
+ // "Group By Me"
7697
8059
  groupButton: "Gruppieren",
8060
+ // "Ungroup By Me"
7698
8061
  ungroupButton: "Gruppierung aufheben",
8062
+ // "Select Me"
7699
8063
  selectButton: "Mich auswählen",
8064
+ // "Hide column"
7700
8065
  hideColumn: "Spalte ausblenden",
8066
+ // "Show column"
7701
8067
  showColumn: "Spalte einblenden",
8068
+ // "Make column private"
7702
8069
  makePrivateColumn: "Spalte privat machen",
8070
+ // "Make column public"
7703
8071
  makePublicColumn: "Spalte veröffentlichen",
8072
+ // "Move to Detail"
7704
8073
  moveToDetail: "in Details verschieben",
8074
+ // "Show as Column"
7705
8075
  showAsColumn: "Als Spalte anzeigen",
8076
+ // "Search..."
7706
8077
  filterPlaceholder: "Suche...",
8078
+ // "Remove rows"
7707
8079
  removeRows: "Zeilen entfernen",
8080
+ // "Show"
7708
8081
  showLabel: "anzeigen",
8082
+ // "entries"
7709
8083
  entriesLabel: "Einträge",
8084
+ // "Texts in table"
7710
8085
  visualizer_text: "Texte in Tabellenform",
8086
+ // "Wordcloud"
7711
8087
  visualizer_wordcloud: "Wordcloud",
8088
+ // "Histogram"
7712
8089
  visualizer_histogram: "Histogramm",
8090
+ // "Average"
7713
8091
  visualizer_number: "Durchschnitt",
8092
+ // "Table"
7714
8093
  visualizer_choices: "Liste",
8094
+ // "Chart"
7715
8095
  visualizer_selectBase: "Diagrammtyp",
7716
- // visualizer_matrix: "Chart",
7717
- chartType_bar: "Balkendiagramm",
8096
+ // [Auto-translated] "Chart"
8097
+ visualizer_matrix: "Diagramm",
8098
+ // [Auto-translated] "Bar"
8099
+ chartType_bar: "Stab",
8100
+ // "Vertical Bar"
7718
8101
  chartType_vbar: "Balkendiagramm vertikal",
8102
+ // "Stacked Bar"
7719
8103
  chartType_stackedbar: "Gestapeltes Balkendiagramm",
8104
+ // "Doughnut"
7720
8105
  chartType_doughnut: "Donut-Diagramm",
8106
+ // "Pie"
7721
8107
  chartType_pie: "Kreisdiagramm",
8108
+ // "Scatter"
7722
8109
  chartType_scatter: "Punktediagramm",
8110
+ // "Gauge"
7723
8111
  chartType_gauge: "Pegeldiagramm",
8112
+ // "Bullet"
7724
8113
  chartType_bullet: "Aufzählungsdiagramm",
8114
+ // [Auto-translated] "Line"
8115
+ chartType_line: "Linie",
8116
+ // [Auto-translated] "Radar"
8117
+ chartType_radar: "Radar",
8118
+ // "Hide"
7725
8119
  hideButton: "Ausblenden",
8120
+ // "Make private"
7726
8121
  makePrivateButton: "Privat machen",
8122
+ // "Make public"
7727
8123
  makePublicButton: "Öffentlich machen",
8124
+ // "Show"
7728
8125
  showButton: "Anzeigen",
8126
+ // "Filter"
7729
8127
  filter: "Filter",
8128
+ // "Reset Filter"
7730
8129
  resetFilter: "Filter zurücksetzen",
8130
+ // "Change Locale"
7731
8131
  changeLocale: "Lokalisierung ändern",
8132
+ // "Clear"
7732
8133
  clearButton: "Einstellungen löschen",
8134
+ // "Choose question to show..."
7733
8135
  addElement: "Wählen Sie eine Frage, um zu zeigen...",
8136
+ // "Default Order"
7734
8137
  defaultOrder: "Standardreihenfolge",
8138
+ // "Ascending"
7735
8139
  ascOrder: "Aufsteigend",
8140
+ // "Descending"
7736
8141
  descOrder: "Absteigend",
8142
+ // "Show minor columns"
7737
8143
  showMinorColumns: "Kleinere Spalten anzeigen",
8144
+ // [Auto-translated] "Actions"
8145
+ actionsColumn: "Aktionen",
8146
+ // "Other items and comments"
7738
8147
  otherCommentTitle: "Andere Punkte und Kommentare",
8148
+ // "Show percentages"
7739
8149
  showPercentages: "Prozentsätze anzeigen",
8150
+ // "Hide percentages"
7740
8151
  hidePercentages: "Prozentsätze ausblenden",
8152
+ // "PDF"
7741
8153
  pdfDownloadCaption: "PDF",
8154
+ // "Excel"
7742
8155
  xlsxDownloadCaption: "Excel",
8156
+ // "CSV"
7743
8157
  csvDownloadCaption: "CSV",
8158
+ // "Download plot as a PNG file"
7744
8159
  saveDiagramAsPNG: "Diagramm als png herunterladen",
8160
+ // "Hide empty answers"
7745
8161
  hideEmptyAnswers: "Leere Antworten ausblenden",
8162
+ // "Show empty answers"
7746
8163
  showEmptyAnswers: "Leere Antworten anzeigen",
8164
+ // "All answers"
7747
8165
  "topNValueText-1": "Alle Antworten",
8166
+ // "Top 5 answers"
7748
8167
  topNValueText5: "Top 5 Antworten",
8168
+ // "Top 10 answers"
7749
8169
  topNValueText10: "Top 10 Antworten",
8170
+ // "Top 20 answers"
7750
8171
  topNValueText20: "Top 20 Antworten",
8172
+ // "Hide missing answers"
7751
8173
  hideMissingAnswers: "Fehlende Antworten ausblenden",
8174
+ // "Show missing answers"
7752
8175
  showMissingAnswers: "Fehlende Antworten anzeigen",
8176
+ // "Missing answers"
7753
8177
  missingAnswersLabel: "Fehlede Antworten",
8178
+ // "This question type is not visualized yet"
7754
8179
  noVisualizerForQuestion: "Für diesen Fragetyp gibt es noch keine Visualisierung.",
8180
+ // "There are no results yet"
7755
8181
  noResults: "Es liegen noch keine Ergebnisse vor",
8182
+ // "Per Values"
7756
8183
  showPerValues: "Pro Wert",
8184
+ // "Per Columns"
7757
8185
  showPerColumns: "Pro Spalte",
8186
+ // "Answer"
7758
8187
  answer: "Antwort",
8188
+ // "Correct answer: "
7759
8189
  correctAnswer: "Korrekte Antwort: ",
8190
+ // "Percent"
7760
8191
  percent: "Prozent",
7761
- responses: "Antworten"
8192
+ // [Auto-translated] "Percentage"
8193
+ percentage: "Prozentsatz",
8194
+ // [Auto-translated] "Chart"
8195
+ statistics_chart: "Diagramm",
8196
+ // "Responses"
8197
+ responses: "Antworten",
8198
+ // [Auto-translated] "NPS"
8199
+ visualizer_nps: "NPS (NPS)",
8200
+ // [Auto-translated] "NPS"
8201
+ npsScore: "NPS (NPS)",
8202
+ // [Auto-translated] "Promoters"
8203
+ npsPromoters: "Promotoren",
8204
+ // [Auto-translated] "Passives"
8205
+ npsPassives: "Passive Fähigkeiten",
8206
+ // [Auto-translated] "Detractors"
8207
+ npsDetractors: "Kritiker",
8208
+ // [Auto-translated] "Category (X Axis):"
8209
+ axisXSelectorTitle: "Kategorie (X-Achse):",
8210
+ // [Auto-translated] "Legend (Series):"
8211
+ axisYSelectorTitle: "Legende (Serie):",
8212
+ // [Auto-translated] "Segments:"
8213
+ axisXAlternativeSelectorTitle: "Segmente:",
8214
+ // [Auto-translated] "Groups:"
8215
+ axisYAlternativeSelectorTitle: "Gruppen:",
8216
+ // [Auto-translated] "Not selected"
8217
+ notSelected: "Nicht ausgewählt"
7762
8218
  };
7763
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["de"] = germanStrings;
7764
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["de"] = "Deutsch";
8219
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "de", strings: germanStrings, nativeName: "Deutsch" });
7765
8220
 
7766
8221
 
7767
8222
  /***/ }),
@@ -7778,81 +8233,170 @@ __webpack_require__.r(__webpack_exports__);
7778
8233
  /* harmony export */ italianStrings: () => (/* binding */ italianStrings)
7779
8234
  /* harmony export */ });
7780
8235
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7781
- // This dictionary contains 1 untranslated or inherited localization strings.
7782
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7783
8236
 
7784
8237
  var italianStrings = {
8238
+ // "Group By Me"
7785
8239
  groupButton: "Raggruppa",
8240
+ // "Ungroup By Me"
7786
8241
  ungroupButton: "Dividi",
8242
+ // "Select Me"
7787
8243
  selectButton: "Selezionami",
8244
+ // "Hide column"
7788
8245
  hideColumn: "Nascondi colonna",
8246
+ // "Show column"
7789
8247
  showColumn: "Mostra colonna",
8248
+ // "Make column private"
7790
8249
  makePrivateColumn: "Rendi la colonna privata",
8250
+ // "Make column public"
7791
8251
  makePublicColumn: "Rendi la colonna pubblica",
8252
+ // "Move to Detail"
7792
8253
  moveToDetail: "Sposta in Dettaglio",
8254
+ // "Show as Column"
7793
8255
  showAsColumn: "Mostra come Colonna",
8256
+ // "Search..."
7794
8257
  filterPlaceholder: "Cerca...",
8258
+ // "Remove rows"
7795
8259
  removeRows: "Rimuovi righe",
8260
+ // "Show"
7796
8261
  showLabel: "Mostra",
8262
+ // "entries"
7797
8263
  entriesLabel: "voci",
8264
+ // "Texts in table"
7798
8265
  visualizer_text: "Parole in tabella",
8266
+ // "Wordcloud"
7799
8267
  visualizer_wordcloud: "Nuvola di parole",
8268
+ // "Histogram"
7800
8269
  visualizer_histogram: "Istogramma",
8270
+ // "Average"
7801
8271
  visualizer_number: "Media",
8272
+ // "Table"
7802
8273
  visualizer_choices: "Tabella",
8274
+ // "Chart"
7803
8275
  visualizer_selectBase: "Grafico",
7804
- // visualizer_matrix: "Chart",
7805
- chartType_bar: "Grafico a barre",
8276
+ // [Auto-translated] "Chart"
8277
+ visualizer_matrix: "Tabella",
8278
+ // [Auto-translated] "Bar"
8279
+ chartType_bar: "Bar",
8280
+ // "Vertical Bar"
7806
8281
  chartType_vbar: "Grafico a barre verticali",
8282
+ // "Stacked Bar"
7807
8283
  chartType_stackedbar: "Grafico a barre sovrapposte",
8284
+ // "Doughnut"
7808
8285
  chartType_doughnut: "Grafico a ciambella",
8286
+ // "Pie"
7809
8287
  chartType_pie: "Grafico a torta",
8288
+ // "Scatter"
7810
8289
  chartType_scatter: "Grafico a dispersione",
8290
+ // "Gauge"
7811
8291
  chartType_gauge: "Grafico Gauge",
8292
+ // "Bullet"
7812
8293
  chartType_bullet: "Punto",
8294
+ // [Auto-translated] "Line"
8295
+ chartType_line: "Linea",
8296
+ // [Auto-translated] "Radar"
8297
+ chartType_radar: "Radar",
8298
+ // "Hide"
7813
8299
  hideButton: "Nascondi",
8300
+ // "Make private"
7814
8301
  makePrivateButton: "Rendi privato",
8302
+ // "Make public"
7815
8303
  makePublicButton: "Rendi pubblico",
8304
+ // "Show"
7816
8305
  showButton: "Mostra",
8306
+ // "Filter"
7817
8307
  filter: "Filtro",
8308
+ // "Reset Filter"
7818
8309
  resetFilter: "Cancella filtro",
8310
+ // "Change Locale"
7819
8311
  changeLocale: "Cambia lingua",
8312
+ // "Clear"
7820
8313
  clearButton: "Cancella",
8314
+ // "Choose question to show..."
7821
8315
  addElement: "Scegli la domanda da mostrare...",
8316
+ // "Default Order"
7822
8317
  defaultOrder: "Ordine di Default",
8318
+ // "Ascending"
7823
8319
  ascOrder: "Ascendente",
8320
+ // "Descending"
7824
8321
  descOrder: "Discendente",
8322
+ // "Show minor columns"
7825
8323
  showMinorColumns: "Mostra colonne secondarie",
8324
+ // [Auto-translated] "Actions"
8325
+ actionsColumn: "Azioni",
8326
+ // "Other items and comments"
7826
8327
  otherCommentTitle: "Altri punti e commenti",
8328
+ // "Show percentages"
7827
8329
  showPercentages: "Mostra percentuali",
8330
+ // "Hide percentages"
7828
8331
  hidePercentages: "Nascondi percentuali",
8332
+ // "PDF"
7829
8333
  pdfDownloadCaption: "PDF",
8334
+ // "Excel"
7830
8335
  xlsxDownloadCaption: "Excel",
8336
+ // "CSV"
7831
8337
  csvDownloadCaption: "CSV",
8338
+ // "Download plot as a PNG file"
7832
8339
  saveDiagramAsPNG: "Scarica il grafico in formato png",
8340
+ // "Hide empty answers"
7833
8341
  hideEmptyAnswers: "Nascondi risposte vuote",
8342
+ // "Show empty answers"
7834
8343
  showEmptyAnswers: "Mostra risposte vuote",
8344
+ // "All answers"
7835
8345
  "topNValueText-1": "Tutte le risposte",
8346
+ // "Top 5 answers"
7836
8347
  topNValueText5: "Top 5 risposte",
8348
+ // "Top 10 answers"
7837
8349
  topNValueText10: "Top 10 risposte",
8350
+ // "Top 20 answers"
7838
8351
  topNValueText20: "Top 20 risposte",
8352
+ // "Hide missing answers"
7839
8353
  hideMissingAnswers: "Nascondi le risposte mancanti",
8354
+ // "Show missing answers"
7840
8355
  showMissingAnswers: "Mostra le risposte mancanti",
8356
+ // "Missing answers"
7841
8357
  missingAnswersLabel: "Risposte mancanti",
8358
+ // "This question type is not visualized yet"
7842
8359
  noVisualizerForQuestion: "Questo tipo di domanda non è ancora stato visualizzato",
8360
+ // "There are no results yet"
7843
8361
  noResults: "Non ci sono ancora risultati",
8362
+ // "Per Values"
7844
8363
  showPerValues: "Per Valori",
8364
+ // "Per Columns"
7845
8365
  showPerColumns: "Per Colonne",
8366
+ // "Answer"
7846
8367
  answer: "Risposta",
8368
+ // "Correct answer: "
7847
8369
  correctAnswer: "Risposta esatta: ",
8370
+ // "Percent"
7848
8371
  percent: "Percentuale",
7849
- responses: "Risposte"
8372
+ // [Auto-translated] "Percentage"
8373
+ percentage: "Percentuale",
8374
+ // [Auto-translated] "Chart"
8375
+ statistics_chart: "Tabella",
8376
+ // "Responses"
8377
+ responses: "Risposte",
8378
+ // [Auto-translated] "NPS"
8379
+ visualizer_nps: "Rete nazionale di dati",
8380
+ // [Auto-translated] "NPS"
8381
+ npsScore: "Rete nazionale di dati",
8382
+ // [Auto-translated] "Promoters"
8383
+ npsPromoters: "Promotori",
8384
+ // [Auto-translated] "Passives"
8385
+ npsPassives: "Passivi",
8386
+ // [Auto-translated] "Detractors"
8387
+ npsDetractors: "Detrattori",
8388
+ // [Auto-translated] "Category (X Axis):"
8389
+ axisXSelectorTitle: "Categoria (asse X):",
8390
+ // [Auto-translated] "Legend (Series):"
8391
+ axisYSelectorTitle: "Leggenda (serie):",
8392
+ // [Auto-translated] "Segments:"
8393
+ axisXAlternativeSelectorTitle: "Segmenti:",
8394
+ // [Auto-translated] "Groups:"
8395
+ axisYAlternativeSelectorTitle: "Gruppi:",
8396
+ // [Auto-translated] "Not selected"
8397
+ notSelected: "Non selezionato"
7850
8398
  };
7851
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["it"] = italianStrings;
7852
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["it"] = "Italiano";
7853
- // The following strings have been translated by a machine translation service
7854
- // Remove those strings that you have corrected manually
7855
- // undefined.correctAnswer: "Correct answer: " => "Risposta esatta: "
8399
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "it", strings: italianStrings, nativeName: "Italiano" });
7856
8400
 
7857
8401
 
7858
8402
  /***/ }),
@@ -7871,73 +8415,168 @@ __webpack_require__.r(__webpack_exports__);
7871
8415
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7872
8416
 
7873
8417
  var japaneseStrings = {
8418
+ // "Group By Me"
7874
8419
  groupButton: "グループ化",
8420
+ // "Ungroup By Me"
7875
8421
  ungroupButton: "グループ解除",
8422
+ // "Select Me"
7876
8423
  selectButton: "選択",
8424
+ // "Hide column"
7877
8425
  hideColumn: "列を非表示",
8426
+ // "Show column"
7878
8427
  showColumn: "列を表示",
8428
+ // "Make column private"
7879
8429
  makePrivateColumn: "列を非公開にする",
8430
+ // "Make column public"
7880
8431
  makePublicColumn: "列を公開する",
8432
+ // "Move to Detail"
7881
8433
  moveToDetail: "詳細に移動",
8434
+ // "Show as Column"
7882
8435
  showAsColumn: "列として表示",
8436
+ // "Search..."
7883
8437
  filterPlaceholder: "検索...",
8438
+ // "Remove rows"
7884
8439
  removeRows: "行を削除",
8440
+ // "Show"
7885
8441
  showLabel: "表示",
8442
+ // "entries"
7886
8443
  entriesLabel: "件",
8444
+ // "Texts in table"
7887
8445
  visualizer_text: "テキスト",
8446
+ // "Wordcloud"
7888
8447
  visualizer_wordcloud: "ワードクラウド",
8448
+ // "Histogram"
7889
8449
  visualizer_histogram: "ヒストグラム",
8450
+ // "Average"
7890
8451
  visualizer_number: "平均",
8452
+ // "Table"
7891
8453
  visualizer_choices: "テーブル",
8454
+ // "Chart"
7892
8455
  visualizer_selectBase: "チャート",
8456
+ // [Auto-translated] "Chart"
8457
+ visualizer_matrix: "チャート",
8458
+ // "Bar"
7893
8459
  chartType_bar: "棒グラフ",
8460
+ // "Vertical Bar"
7894
8461
  chartType_vbar: "縦棒グラフ",
8462
+ // "Stacked Bar"
7895
8463
  chartType_stackedbar: "積み上げ棒グラフ",
8464
+ // "Doughnut"
7896
8465
  chartType_doughnut: "ドーナツチャート",
8466
+ // "Pie"
7897
8467
  chartType_pie: "円グラフ",
8468
+ // "Scatter"
7898
8469
  chartType_scatter: "散布図",
8470
+ // "Gauge"
7899
8471
  chartType_gauge: "ゲージ",
8472
+ // "Bullet"
7900
8473
  chartType_bullet: "バレット",
8474
+ // [Auto-translated] "Line"
8475
+ chartType_line: "線",
8476
+ // [Auto-translated] "Radar"
8477
+ chartType_radar: "レーダー",
8478
+ // "Hide"
7901
8479
  hideButton: "非表示",
8480
+ // "Make private"
7902
8481
  makePrivateButton: "非公開にする",
8482
+ // "Make public"
7903
8483
  makePublicButton: "公開する",
8484
+ // "Show"
7904
8485
  showButton: "表示",
8486
+ // "Filter"
7905
8487
  filter: "フィルター",
8488
+ // "Reset Filter"
7906
8489
  resetFilter: "フィルターをリセット",
8490
+ // "Change Locale"
7907
8491
  changeLocale: "言語を変更",
8492
+ // "Clear"
7908
8493
  clearButton: "クリア",
8494
+ // "Choose question to show..."
7909
8495
  addElement: "表示する質問を選択...",
8496
+ // "Default Order"
7910
8497
  defaultOrder: "デフォルト順",
8498
+ // "Ascending"
7911
8499
  ascOrder: "昇順",
8500
+ // "Descending"
7912
8501
  descOrder: "降順",
8502
+ // "Show minor columns"
7913
8503
  showMinorColumns: "マイナー列を表示",
8504
+ // [Auto-translated] "Actions"
8505
+ actionsColumn: "アクション",
8506
+ // "Other items and comments"
7914
8507
  otherCommentTitle: "その他のアイテムとコメント",
8508
+ // "Show percentages"
7915
8509
  showPercentages: "パーセンテージを表示",
8510
+ // "Hide percentages"
7916
8511
  hidePercentages: "パーセンテージを非表示",
8512
+ // "PDF"
7917
8513
  pdfDownloadCaption: "PDF",
8514
+ // "Excel"
7918
8515
  xlsxDownloadCaption: "Excel",
8516
+ // "CSV"
7919
8517
  csvDownloadCaption: "CSV",
8518
+ // "Download plot as a PNG file"
7920
8519
  saveDiagramAsPNG: "プロットをPNGファイルとして保存",
8520
+ // "Hide empty answers"
7921
8521
  hideEmptyAnswers: "空の回答を非表示",
8522
+ // "Show empty answers"
7922
8523
  showEmptyAnswers: "空の回答を表示",
8524
+ // "All answers"
7923
8525
  "topNValueText-1": "すべての回答",
7924
- "topNValueText5": "上位5つの回答",
7925
- "topNValueText10": "上位10の回答",
7926
- "topNValueText20": "上位20の回答",
8526
+ // "Top 5 answers"
8527
+ topNValueText5: "上位5つの回答",
8528
+ // "Top 10 answers"
8529
+ topNValueText10: "上位10の回答",
8530
+ // "Top 20 answers"
8531
+ topNValueText20: "上位20の回答",
8532
+ // "Hide missing answers"
7927
8533
  hideMissingAnswers: "欠損値を非表示",
8534
+ // "Show missing answers"
7928
8535
  showMissingAnswers: "欠損値を表示",
8536
+ // "Missing answers"
7929
8537
  missingAnswersLabel: "欠損値",
8538
+ // "This question type is not visualized yet"
7930
8539
  noVisualizerForQuestion: "この質問タイプはまだ視覚化されていません",
8540
+ // "There are no results yet"
7931
8541
  noResults: "まだ結果がありません",
8542
+ // "Per Values"
7932
8543
  showPerValues: "値ごとに表示",
8544
+ // "Per Columns"
7933
8545
  showPerColumns: "列ごとに表示",
8546
+ // "Answer"
7934
8547
  answer: "回答",
8548
+ // "Correct answer: "
7935
8549
  correctAnswer: "正解: ",
8550
+ // "Percent"
7936
8551
  percent: "パーセント",
7937
- responses: "回答数"
8552
+ // [Auto-translated] "Percentage"
8553
+ percentage: "百分率",
8554
+ // [Auto-translated] "Chart"
8555
+ statistics_chart: "チャート",
8556
+ // "Responses"
8557
+ responses: "回答数",
8558
+ // [Auto-translated] "NPS"
8559
+ visualizer_nps: "NPSの",
8560
+ // [Auto-translated] "NPS"
8561
+ npsScore: "NPSの",
8562
+ // [Auto-translated] "Promoters"
8563
+ npsPromoters: "プロモーター",
8564
+ // [Auto-translated] "Passives"
8565
+ npsPassives: "パッシブ",
8566
+ // [Auto-translated] "Detractors"
8567
+ npsDetractors: "中傷",
8568
+ // [Auto-translated] "Category (X Axis):"
8569
+ axisXSelectorTitle: "カテゴリ(X軸):",
8570
+ // [Auto-translated] "Legend (Series):"
8571
+ axisYSelectorTitle: "凡例(シリーズ):",
8572
+ // [Auto-translated] "Segments:"
8573
+ axisXAlternativeSelectorTitle: "セグメント:",
8574
+ // [Auto-translated] "Groups:"
8575
+ axisYAlternativeSelectorTitle: "グループ:",
8576
+ // [Auto-translated] "Not selected"
8577
+ notSelected: "選択されていない"
7938
8578
  };
7939
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["ja"] = japaneseStrings;
7940
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["ja"] = "Japanese";
8579
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "ja", strings: japaneseStrings, nativeName: "日本語" });
7941
8580
 
7942
8581
 
7943
8582
  /***/ }),
@@ -7954,107 +8593,170 @@ __webpack_require__.r(__webpack_exports__);
7954
8593
  /* harmony export */ norwegianStrings: () => (/* binding */ norwegianStrings)
7955
8594
  /* harmony export */ });
7956
8595
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
7957
- // This dictionary contains 1 untranslated or inherited localization strings.
7958
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
7959
8596
 
7960
8597
  var norwegianStrings = {
8598
+ // "Group By Me"
7961
8599
  groupButton: "Grupper",
8600
+ // "Ungroup By Me"
7962
8601
  ungroupButton: "Opphev gruppering",
8602
+ // "Select Me"
7963
8603
  selectButton: "Velg",
8604
+ // "Hide column"
7964
8605
  hideColumn: "Skjul kolonne",
8606
+ // "Show column"
7965
8607
  showColumn: "Vis kolonne",
8608
+ // "Make column private"
7966
8609
  makePrivateColumn: "Gjør kolonne privat",
8610
+ // "Make column public"
7967
8611
  makePublicColumn: "Gjør kolonne offentlig",
8612
+ // "Move to Detail"
7968
8613
  moveToDetail: "Flytt til detaljert visning",
8614
+ // "Show as Column"
7969
8615
  showAsColumn: "Vis som kolonne",
8616
+ // "Search..."
7970
8617
  filterPlaceholder: "Søk...",
8618
+ // "Remove rows"
7971
8619
  removeRows: "Fjern rader",
8620
+ // "Show"
7972
8621
  showLabel: "Vis",
8622
+ // "entries"
7973
8623
  entriesLabel: "oppføringer",
8624
+ // "Texts in table"
7974
8625
  visualizer_text: "Tabellvisning",
8626
+ // "Wordcloud"
7975
8627
  visualizer_wordcloud: "Ordsky",
8628
+ // "Histogram"
7976
8629
  visualizer_histogram: "Histogram",
8630
+ // "Average"
7977
8631
  visualizer_number: "Gjennomsnitt",
8632
+ // "Table"
7978
8633
  visualizer_choices: "Bord",
8634
+ // "Chart"
7979
8635
  visualizer_selectBase: "Sjøkart",
7980
- // visualizer_matrix: "Chart",
7981
- chartType_bar: "Stolpediagram",
8636
+ // [Auto-translated] "Chart"
8637
+ visualizer_matrix: "Sjøkart",
8638
+ // [Auto-translated] "Bar"
8639
+ chartType_bar: "Bar",
8640
+ // "Vertical Bar"
7982
8641
  chartType_vbar: "Vertikal stolpe",
8642
+ // "Stacked Bar"
7983
8643
  chartType_stackedbar: "Stablet stolpediagram",
8644
+ // "Doughnut"
7984
8645
  chartType_doughnut: "Hjuldiagram",
8646
+ // "Pie"
7985
8647
  chartType_pie: "Sektordiagram",
8648
+ // "Scatter"
7986
8649
  chartType_scatter: "Punktdiagram",
8650
+ // "Gauge"
7987
8651
  chartType_gauge: "Målediagram",
8652
+ // "Bullet"
7988
8653
  chartType_bullet: "Kulediagram",
8654
+ // [Auto-translated] "Line"
8655
+ chartType_line: "Linje",
8656
+ // [Auto-translated] "Radar"
8657
+ chartType_radar: "Radar",
8658
+ // "Hide"
7989
8659
  hideButton: "Skjul",
8660
+ // "Make private"
7990
8661
  makePrivateButton: "Gjør privat",
8662
+ // "Make public"
7991
8663
  makePublicButton: "Gjør offentlig",
8664
+ // "Show"
7992
8665
  showButton: "Vis",
8666
+ // "Filter"
7993
8667
  filter: "Filter",
8668
+ // "Reset Filter"
7994
8669
  resetFilter: "Nullstill filter",
8670
+ // "Change Locale"
7995
8671
  changeLocale: "Bytt språk",
8672
+ // "Clear"
7996
8673
  clearButton: "Tøm",
8674
+ // "Choose question to show..."
7997
8675
  addElement: "Velg spørsmål...",
8676
+ // "Default Order"
7998
8677
  defaultOrder: "Standard",
8678
+ // "Ascending"
7999
8679
  ascOrder: "Stigende",
8680
+ // "Descending"
8000
8681
  descOrder: "Synkende",
8682
+ // "Show minor columns"
8001
8683
  showMinorColumns: "Vis mindre kolonner",
8684
+ // [Auto-translated] "Actions"
8685
+ actionsColumn: "Handlinger",
8686
+ // "Other items and comments"
8002
8687
  otherCommentTitle: "Annet og kommentarer",
8688
+ // "Show percentages"
8003
8689
  showPercentages: "Vis prosenter",
8690
+ // "Hide percentages"
8004
8691
  hidePercentages: "Skjul prosenter",
8692
+ // "PDF"
8005
8693
  pdfDownloadCaption: "PDF",
8694
+ // "Excel"
8006
8695
  xlsxDownloadCaption: "Overgå",
8696
+ // "CSV"
8007
8697
  csvDownloadCaption: "CSV",
8698
+ // "Download plot as a PNG file"
8008
8699
  saveDiagramAsPNG: "Last ned plott som en PNG-fil",
8700
+ // "Hide empty answers"
8009
8701
  hideEmptyAnswers: "Skjul tomme svar",
8702
+ // "Show empty answers"
8010
8703
  showEmptyAnswers: "Vis tomme svar",
8704
+ // "All answers"
8011
8705
  "topNValueText-1": "Alle svar",
8706
+ // "Top 5 answers"
8012
8707
  topNValueText5: "Topp 5 svar",
8708
+ // "Top 10 answers"
8013
8709
  topNValueText10: "Topp 10 svar",
8710
+ // "Top 20 answers"
8014
8711
  topNValueText20: "Topp 20 svar",
8712
+ // "Hide missing answers"
8015
8713
  hideMissingAnswers: "Skjul manglende svar",
8714
+ // "Show missing answers"
8016
8715
  showMissingAnswers: "Vis manglende svar",
8716
+ // "Missing answers"
8017
8717
  missingAnswersLabel: "Mangler svar",
8718
+ // "This question type is not visualized yet"
8018
8719
  noVisualizerForQuestion: "Denne spørsmålstypen er ikke visualisert ennå",
8720
+ // "There are no results yet"
8019
8721
  noResults: "Det er ingen resultater ennå",
8722
+ // "Per Values"
8020
8723
  showPerValues: "Per verdier",
8724
+ // "Per Columns"
8021
8725
  showPerColumns: "Per kolonner",
8726
+ // "Answer"
8022
8727
  answer: "Svare",
8728
+ // "Correct answer: "
8023
8729
  correctAnswer: "Riktig svar: ",
8730
+ // "Percent"
8024
8731
  percent: "Prosent",
8025
- responses: "Svar"
8732
+ // [Auto-translated] "Percentage"
8733
+ percentage: "Prosent",
8734
+ // [Auto-translated] "Chart"
8735
+ statistics_chart: "Sjøkart",
8736
+ // "Responses"
8737
+ responses: "Svar",
8738
+ // [Auto-translated] "NPS"
8739
+ visualizer_nps: "NPS",
8740
+ // [Auto-translated] "NPS"
8741
+ npsScore: "NPS",
8742
+ // [Auto-translated] "Promoters"
8743
+ npsPromoters: "Arrangører",
8744
+ // [Auto-translated] "Passives"
8745
+ npsPassives: "Passive",
8746
+ // [Auto-translated] "Detractors"
8747
+ npsDetractors: "Motstandere",
8748
+ // [Auto-translated] "Category (X Axis):"
8749
+ axisXSelectorTitle: "Kategori (X-akse):",
8750
+ // [Auto-translated] "Legend (Series):"
8751
+ axisYSelectorTitle: "Legende (serie):",
8752
+ // [Auto-translated] "Segments:"
8753
+ axisXAlternativeSelectorTitle: "Segmenter:",
8754
+ // [Auto-translated] "Groups:"
8755
+ axisYAlternativeSelectorTitle: "Grupper:",
8756
+ // [Auto-translated] "Not selected"
8757
+ notSelected: "Ikke valgt"
8026
8758
  };
8027
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["no"] = norwegianStrings;
8028
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["no"] = "Norsk";
8029
- // The following strings have been translated by a machine translation service
8030
- // Remove those strings that you have corrected manually
8031
- // undefined.visualizer_histogram: "Histogram" => "Histogram"
8032
- // undefined.visualizer_number: "Average" => "Gjennomsnitt"
8033
- // undefined.visualizer_choices: "Table" => "Bord"
8034
- // undefined.visualizer_selectBase: "Chart" => "Sjøkart"
8035
- // undefined.chartType_vbar: "Vertical Bar" => "Vertikal stolpe"
8036
- // undefined.filter: "Filter" => "Filter"
8037
- // undefined.pdfDownloadCaption: "PDF" => "PDF"
8038
- // undefined.xlsxDownloadCaption: "Excel" => "Overgå"
8039
- // undefined.csvDownloadCaption: "CSV" => "CSV"
8040
- // undefined.saveDiagramAsPNG: "Download plot as a PNG file" => "Last ned plott som en PNG-fil"
8041
- // undefined.hideEmptyAnswers: "Hide empty answers" => "Skjul tomme svar"
8042
- // undefined.showEmptyAnswers: "Show empty answers" => "Vis tomme svar"
8043
- // undefined.topNValueText-1: "All answers" => "Alle svar"
8044
- // undefined.topNValueText5: "Top 5 answers" => "Topp 5 svar"
8045
- // undefined.topNValueText10: "Top 10 answers" => "Topp 10 svar"
8046
- // undefined.topNValueText20: "Top 20 answers" => "Topp 20 svar"
8047
- // undefined.hideMissingAnswers: "Hide missing answers" => "Skjul manglende svar"
8048
- // undefined.showMissingAnswers: "Show missing answers" => "Vis manglende svar"
8049
- // undefined.missingAnswersLabel: "Missing answers" => "Mangler svar"
8050
- // undefined.noVisualizerForQuestion: "This question type is not visualized yet" => "Denne spørsmålstypen er ikke visualisert ennå"
8051
- // undefined.noResults: "There are no results yet" => "Det er ingen resultater ennå"
8052
- // undefined.showPerValues: "Per Values" => "Per verdier"
8053
- // undefined.showPerColumns: "Per Columns" => "Per kolonner"
8054
- // undefined.answer: "Answer" => "Svare"
8055
- // undefined.correctAnswer: "Correct answer: " => "Riktig svar: "
8056
- // undefined.percent: "Percent" => "Prosent"
8057
- // undefined.responses: "Responses" => "Svar"
8759
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "no", strings: norwegianStrings, nativeName: "Norsk" });
8058
8760
 
8059
8761
 
8060
8762
  /***/ }),
@@ -8071,79 +8773,170 @@ __webpack_require__.r(__webpack_exports__);
8071
8773
  /* harmony export */ plStrings: () => (/* binding */ plStrings)
8072
8774
  /* harmony export */ });
8073
8775
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
8074
- // This dictionary contains 1 untranslated or inherited localization strings.
8075
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
8076
8776
 
8077
8777
  var plStrings = {
8778
+ // "Group By Me"
8078
8779
  groupButton: "Grupuj według mnie",
8780
+ // "Ungroup By Me"
8079
8781
  ungroupButton: "Rozgrupuj według mnie",
8782
+ // "Select Me"
8080
8783
  selectButton: "Wybierz",
8784
+ // "Hide column"
8081
8785
  hideColumn: "Ukryj kolumnę",
8786
+ // "Show column"
8082
8787
  showColumn: "Pokaż kolumnę",
8788
+ // "Make column private"
8083
8789
  makePrivateColumn: "Uczyń kolumnę prywatną",
8790
+ // "Make column public"
8084
8791
  makePublicColumn: "Uczyń kolumnę publiczną",
8792
+ // "Move to Detail"
8085
8793
  moveToDetail: "Przenieś do szczegółów",
8794
+ // "Show as Column"
8086
8795
  showAsColumn: "Pokaż jako kolumnę",
8796
+ // "Search..."
8087
8797
  filterPlaceholder: "Szukaj...",
8798
+ // "Remove rows"
8088
8799
  removeRows: "Usuń wiersze",
8800
+ // "Show"
8089
8801
  showLabel: "Pokaż",
8802
+ // "entries"
8090
8803
  entriesLabel: "wejścia",
8804
+ // "Texts in table"
8091
8805
  visualizer_text: "Teksty w tabeli",
8806
+ // "Wordcloud"
8092
8807
  visualizer_wordcloud: "Chmura słów",
8808
+ // "Histogram"
8093
8809
  visualizer_histogram: "Histogram",
8810
+ // "Average"
8094
8811
  visualizer_number: "Średnia",
8812
+ // "Table"
8095
8813
  visualizer_choices: "Tabela",
8814
+ // "Chart"
8096
8815
  visualizer_selectBase: "Wykres",
8816
+ // "Chart"
8097
8817
  visualizer_matrix: "Wykres",
8818
+ // "Bar"
8098
8819
  chartType_bar: "Słupkowy",
8820
+ // "Vertical Bar"
8099
8821
  chartType_vbar: "Słupkowy pionowy",
8822
+ // "Stacked Bar"
8100
8823
  chartType_stackedbar: "Słupkowy skumulowany",
8824
+ // "Doughnut"
8101
8825
  chartType_doughnut: "Oponka",
8826
+ // "Pie"
8102
8827
  chartType_pie: "Tarta",
8828
+ // "Scatter"
8103
8829
  chartType_scatter: "Rozrzut",
8830
+ // "Gauge"
8104
8831
  chartType_gauge: "Skala",
8832
+ // "Bullet"
8105
8833
  chartType_bullet: "Pocisk",
8834
+ // [Auto-translated] "Line"
8835
+ chartType_line: "Linia",
8836
+ // [Auto-translated] "Radar"
8837
+ chartType_radar: "Radar",
8838
+ // "Hide"
8106
8839
  hideButton: "Ukryj",
8840
+ // "Make private"
8107
8841
  makePrivateButton: "Uczyń prywatnym",
8842
+ // "Make public"
8108
8843
  makePublicButton: "Uczyń publicznym",
8844
+ // "Show"
8109
8845
  showButton: "Pokaż",
8846
+ // "Filter"
8110
8847
  filter: "Filtruj",
8848
+ // "Reset Filter"
8111
8849
  resetFilter: "Resetuj filtr",
8850
+ // "Change Locale"
8112
8851
  changeLocale: "Zmień lokalizację",
8852
+ // "Clear"
8113
8853
  clearButton: "Wyczyść",
8854
+ // "Choose question to show..."
8114
8855
  addElement: "Wybierz pytanie do pokazania...",
8856
+ // "Default Order"
8115
8857
  defaultOrder: "Domyślne sortowanie",
8858
+ // "Ascending"
8116
8859
  ascOrder: "Rosnąco",
8860
+ // "Descending"
8117
8861
  descOrder: "Malejąco",
8862
+ // "Show minor columns"
8118
8863
  showMinorColumns: "Pokaż mniejsze kolumny",
8864
+ // [Auto-translated] "Actions"
8865
+ actionsColumn: "Akcje",
8866
+ // "Other items and comments"
8119
8867
  otherCommentTitle: "Inne elementy i komentarze",
8868
+ // "Show percentages"
8120
8869
  showPercentages: "Pokaż procenty",
8870
+ // "Hide percentages"
8121
8871
  hidePercentages: "Ukryj procenty",
8872
+ // "PDF"
8122
8873
  pdfDownloadCaption: "PDF",
8874
+ // "Excel"
8123
8875
  xlsxDownloadCaption: "Excel",
8876
+ // "CSV"
8124
8877
  csvDownloadCaption: "CSV",
8878
+ // "Download plot as a PNG file"
8125
8879
  saveDiagramAsPNG: "Pobierz diagram jako PNG",
8880
+ // "Hide empty answers"
8126
8881
  hideEmptyAnswers: "Ukryj puste odpowiedzi",
8882
+ // "Show empty answers"
8127
8883
  showEmptyAnswers: "Pokaż puste odpowiedzi",
8884
+ // "All answers"
8128
8885
  "topNValueText-1": "Wszystkie odpowiedzi",
8886
+ // "Top 5 answers"
8129
8887
  topNValueText5: "Pierwsze 5 odpowiedzi",
8888
+ // "Top 10 answers"
8130
8889
  topNValueText10: "Pierwsze 10 odpowiedzi",
8890
+ // "Top 20 answers"
8131
8891
  topNValueText20: "Pierwsze 20 odpowiedzi",
8892
+ // "Hide missing answers"
8132
8893
  hideMissingAnswers: "Ukryj nieodpowiedziane pytania",
8894
+ // "Show missing answers"
8133
8895
  showMissingAnswers: "Pokaż nieodpowiedziane pytania",
8896
+ // "Missing answers"
8134
8897
  missingAnswersLabel: "Nieodpowiedziane pytania",
8898
+ // "This question type is not visualized yet"
8135
8899
  noVisualizerForQuestion: "Ten typ pytania nie został jeszcze zwizualizowany",
8900
+ // "There are no results yet"
8136
8901
  noResults: "Nie ma jeszcze wyników",
8902
+ // "Per Values"
8137
8903
  showPerValues: "Według wartości",
8904
+ // "Per Columns"
8138
8905
  showPerColumns: "Według kolumn",
8906
+ // "Answer"
8139
8907
  answer: "Odpowiedź",
8908
+ // "Correct answer: "
8140
8909
  correctAnswer: "Odpowiedź poprawna: ",
8910
+ // "Percent"
8141
8911
  percent: "Procent",
8142
- responses: "Odpowiedzi"
8912
+ // [Auto-translated] "Percentage"
8913
+ percentage: "Procent",
8914
+ // [Auto-translated] "Chart"
8915
+ statistics_chart: "Wykres",
8916
+ // "Responses"
8917
+ responses: "Odpowiedzi",
8918
+ // [Auto-translated] "NPS"
8919
+ visualizer_nps: "Wskaźnik NPS",
8920
+ // [Auto-translated] "NPS"
8921
+ npsScore: "Wskaźnik NPS",
8922
+ // [Auto-translated] "Promoters"
8923
+ npsPromoters: "Promotorów",
8924
+ // [Auto-translated] "Passives"
8925
+ npsPassives: "Passives",
8926
+ // [Auto-translated] "Detractors"
8927
+ npsDetractors: "Przeciwników",
8928
+ // [Auto-translated] "Category (X Axis):"
8929
+ axisXSelectorTitle: "Kategoria (oś X):",
8930
+ // [Auto-translated] "Legend (Series):"
8931
+ axisYSelectorTitle: "Legenda (seria):",
8932
+ // [Auto-translated] "Segments:"
8933
+ axisXAlternativeSelectorTitle: "Segmenty:",
8934
+ // [Auto-translated] "Groups:"
8935
+ axisYAlternativeSelectorTitle: "Grupy:",
8936
+ // [Auto-translated] "Not selected"
8937
+ notSelected: "Nie wybrano"
8143
8938
  };
8144
- //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.
8145
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["pl"] = plStrings;
8146
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["pl"] = "Polish";
8939
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "pl", strings: plStrings, nativeName: "Polski" });
8147
8940
 
8148
8941
 
8149
8942
  /***/ }),
@@ -8160,79 +8953,170 @@ __webpack_require__.r(__webpack_exports__);
8160
8953
  /* harmony export */ portugueseStrings: () => (/* binding */ portugueseStrings)
8161
8954
  /* harmony export */ });
8162
8955
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
8163
- // This dictionary contains 1 untranslated or inherited localization strings.
8164
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
8165
8956
 
8166
8957
  var portugueseStrings = {
8958
+ // "Group By Me"
8167
8959
  groupButton: "Agrupar Por Mim",
8960
+ // "Ungroup By Me"
8168
8961
  ungroupButton: "Desagrupar Por Mim",
8962
+ // "Select Me"
8169
8963
  selectButton: "Selecionar",
8964
+ // "Hide column"
8170
8965
  hideColumn: "Esconder coluna",
8966
+ // "Show column"
8171
8967
  showColumn: "Mostrar coluna",
8968
+ // "Make column private"
8172
8969
  makePrivateColumn: "Tornar coluna privada",
8970
+ // "Make column public"
8173
8971
  makePublicColumn: "Tornar coluna pública",
8972
+ // "Move to Detail"
8174
8973
  moveToDetail: "Mover para Detalhes",
8974
+ // "Show as Column"
8175
8975
  showAsColumn: "Mostrar como Coluna",
8976
+ // "Search..."
8176
8977
  filterPlaceholder: "Pesquisar...",
8978
+ // "Remove rows"
8177
8979
  removeRows: "Remover linhas",
8980
+ // "Show"
8178
8981
  showLabel: "Mostrar",
8982
+ // "entries"
8179
8983
  entriesLabel: "entradas",
8984
+ // "Texts in table"
8180
8985
  visualizer_text: "Textos em tabela",
8986
+ // "Wordcloud"
8181
8987
  visualizer_wordcloud: "Nuvem de palavras",
8988
+ // "Histogram"
8182
8989
  visualizer_histogram: "Histograma",
8990
+ // "Average"
8183
8991
  visualizer_number: "Média",
8992
+ // "Table"
8184
8993
  visualizer_choices: "Tabela",
8994
+ // "Chart"
8185
8995
  visualizer_selectBase: "Gráfico",
8186
- // visualizer_matrix: "Chart",
8996
+ // [Auto-translated] "Chart"
8997
+ visualizer_matrix: "Gráfico",
8998
+ // [Auto-translated] "Bar"
8187
8999
  chartType_bar: "Barra",
9000
+ // "Vertical Bar"
8188
9001
  chartType_vbar: "Barra vertical",
9002
+ // "Stacked Bar"
8189
9003
  chartType_stackedbar: "Barra Empilhada",
9004
+ // "Doughnut"
8190
9005
  chartType_doughnut: "Rosca",
9006
+ // "Pie"
8191
9007
  chartType_pie: "Tarte",
9008
+ // "Scatter"
8192
9009
  chartType_scatter: "Lastro",
9010
+ // "Gauge"
8193
9011
  chartType_gauge: "Escala",
9012
+ // "Bullet"
8194
9013
  chartType_bullet: "Bala",
9014
+ // [Auto-translated] "Line"
9015
+ chartType_line: "Linha",
9016
+ // [Auto-translated] "Radar"
9017
+ chartType_radar: "Radar",
9018
+ // "Hide"
8195
9019
  hideButton: "Esconder",
9020
+ // "Make private"
8196
9021
  makePrivateButton: "Tornar privado",
9022
+ // "Make public"
8197
9023
  makePublicButton: "Tornar público",
9024
+ // "Show"
8198
9025
  showButton: "Mostrar",
9026
+ // "Filter"
8199
9027
  filter: "Filtrar",
9028
+ // "Reset Filter"
8200
9029
  resetFilter: "Restaurar Filtro",
9030
+ // "Change Locale"
8201
9031
  changeLocale: "Mudar Localização",
9032
+ // "Clear"
8202
9033
  clearButton: "Limpar",
9034
+ // "Choose question to show..."
8203
9035
  addElement: "Escolher questão para mostrar...",
9036
+ // "Default Order"
8204
9037
  defaultOrder: "Ordenação Padrão",
9038
+ // "Ascending"
8205
9039
  ascOrder: "Ascendente",
9040
+ // "Descending"
8206
9041
  descOrder: "Descendente",
9042
+ // "Show minor columns"
8207
9043
  showMinorColumns: "Mostrar colunas menores",
9044
+ // [Auto-translated] "Actions"
9045
+ actionsColumn: "Ações",
9046
+ // "Other items and comments"
8208
9047
  otherCommentTitle: "Outros itens e comentários",
9048
+ // "Show percentages"
8209
9049
  showPercentages: "Mostrar percentuais",
9050
+ // "Hide percentages"
8210
9051
  hidePercentages: "Esconder percentuais",
9052
+ // "PDF"
8211
9053
  pdfDownloadCaption: "PDF",
9054
+ // "Excel"
8212
9055
  xlsxDownloadCaption: "Excel",
9056
+ // "CSV"
8213
9057
  csvDownloadCaption: "CSV",
9058
+ // "Download plot as a PNG file"
8214
9059
  saveDiagramAsPNG: "Baixar diagrama como PNG",
9060
+ // "Hide empty answers"
8215
9061
  hideEmptyAnswers: "Esconder perguntas vazias",
9062
+ // "Show empty answers"
8216
9063
  showEmptyAnswers: "Mostrar perguntas vazias",
9064
+ // "All answers"
8217
9065
  "topNValueText-1": "Todas as respostas",
9066
+ // "Top 5 answers"
8218
9067
  topNValueText5: "Primeiras 5 respostas",
9068
+ // "Top 10 answers"
8219
9069
  topNValueText10: "Primeiras 10 respostas",
9070
+ // "Top 20 answers"
8220
9071
  topNValueText20: "Primeiras 20 respostas",
9072
+ // "Hide missing answers"
8221
9073
  hideMissingAnswers: "Ocultar perguntas não respondidas",
9074
+ // "Show missing answers"
8222
9075
  showMissingAnswers: "Mostrar perguntas não respondidas",
9076
+ // "Missing answers"
8223
9077
  missingAnswersLabel: "Perguntas não respondidas",
9078
+ // "This question type is not visualized yet"
8224
9079
  noVisualizerForQuestion: "Este tipo de pergunta ainda não foi visualizada",
9080
+ // "There are no results yet"
8225
9081
  noResults: "Ainda não possui resultados",
9082
+ // "Per Values"
8226
9083
  showPerValues: "Por valores",
9084
+ // "Per Columns"
8227
9085
  showPerColumns: "Por colunas",
9086
+ // "Answer"
8228
9087
  answer: "Resposta",
9088
+ // "Correct answer: "
8229
9089
  correctAnswer: "Resposta correta: ",
9090
+ // "Percent"
8230
9091
  percent: "Percentagem",
8231
- responses: "Respostas"
9092
+ // [Auto-translated] "Percentage"
9093
+ percentage: "Porcentagem",
9094
+ // [Auto-translated] "Chart"
9095
+ statistics_chart: "Gráfico",
9096
+ // "Responses"
9097
+ responses: "Respostas",
9098
+ // [Auto-translated] "NPS"
9099
+ visualizer_nps: "NPS",
9100
+ // [Auto-translated] "NPS"
9101
+ npsScore: "NPS",
9102
+ // [Auto-translated] "Promoters"
9103
+ npsPromoters: "Promotores",
9104
+ // [Auto-translated] "Passives"
9105
+ npsPassives: "Passivos",
9106
+ // [Auto-translated] "Detractors"
9107
+ npsDetractors: "Detratores",
9108
+ // [Auto-translated] "Category (X Axis):"
9109
+ axisXSelectorTitle: "Categoria (eixo X):",
9110
+ // [Auto-translated] "Legend (Series):"
9111
+ axisYSelectorTitle: "Lenda (Série):",
9112
+ // [Auto-translated] "Segments:"
9113
+ axisXAlternativeSelectorTitle: "Segmentos:",
9114
+ // [Auto-translated] "Groups:"
9115
+ axisYAlternativeSelectorTitle: "Grupos:",
9116
+ // [Auto-translated] "Not selected"
9117
+ notSelected: "Não selecionado"
8232
9118
  };
8233
- //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.
8234
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["pt"] = portugueseStrings;
8235
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["pt"] = "Português";
9119
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "pt", strings: portugueseStrings, nativeName: "Português" });
8236
9120
 
8237
9121
 
8238
9122
  /***/ }),
@@ -8251,74 +9135,168 @@ __webpack_require__.r(__webpack_exports__);
8251
9135
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
8252
9136
 
8253
9137
  var russianStrings = {
9138
+ // "Group By Me"
8254
9139
  groupButton: "Сгруппировать",
9140
+ // "Ungroup By Me"
8255
9141
  ungroupButton: "Разгруппировать",
9142
+ // "Select Me"
8256
9143
  selectButton: "Выбрать",
9144
+ // "Hide column"
8257
9145
  hideColumn: "Скрыть столбец",
9146
+ // "Show column"
8258
9147
  showColumn: "Показать столбец",
9148
+ // "Make column private"
8259
9149
  makePrivateColumn: "Сделать столбец приватным",
9150
+ // "Make column public"
8260
9151
  makePublicColumn: "Сделать столбец публичным",
9152
+ // "Move to Detail"
8261
9153
  moveToDetail: "Спрятать в раскрывающуюся секцию",
9154
+ // "Show as Column"
8262
9155
  showAsColumn: "Показать как столбец",
9156
+ // "Search..."
8263
9157
  filterPlaceholder: "Поиск...",
9158
+ // "Remove rows"
8264
9159
  removeRows: "Удалить строки",
9160
+ // "Show"
8265
9161
  showLabel: "Показать",
9162
+ // "entries"
8266
9163
  entriesLabel: "записей",
9164
+ // "Texts in table"
8267
9165
  visualizer_text: "Таблица",
9166
+ // "Wordcloud"
8268
9167
  visualizer_wordcloud: "Облако тэгов",
9168
+ // "Histogram"
8269
9169
  visualizer_histogram: "Гистограмма",
9170
+ // "Average"
8270
9171
  visualizer_number: "Среднее значение",
9172
+ // "Table"
8271
9173
  visualizer_choices: "Таблица",
9174
+ // "Chart"
8272
9175
  visualizer_selectBase: "Диаграмма",
9176
+ // "Chart"
8273
9177
  visualizer_matrix: "Диаграмма",
9178
+ // "Bar"
8274
9179
  chartType_bar: "Столбчатая диаграмма",
9180
+ // "Vertical Bar"
8275
9181
  chartType_vbar: "Вертикальная столбчатая диаграмма",
9182
+ // "Stacked Bar"
8276
9183
  chartType_stackedbar: "Столбчатая диаграмма с накоплением",
9184
+ // "Doughnut"
8277
9185
  chartType_doughnut: "Кольцевая диаграмма",
9186
+ // "Pie"
8278
9187
  chartType_pie: "Круговая диаграмма",
9188
+ // "Scatter"
8279
9189
  chartType_scatter: "Точечная диаграмма",
9190
+ // "Gauge"
8280
9191
  chartType_gauge: "Измерительная диаграмма",
9192
+ // "Bullet"
8281
9193
  chartType_bullet: "Маркированная диаграмма",
9194
+ // [Auto-translated] "Line"
9195
+ chartType_line: "Линия",
9196
+ // [Auto-translated] "Radar"
9197
+ chartType_radar: "Радар",
9198
+ // "Hide"
8282
9199
  hideButton: "Скрыть",
9200
+ // "Make private"
8283
9201
  makePrivateButton: "Сделать приватным",
9202
+ // "Make public"
8284
9203
  makePublicButton: "Сделать публичным",
9204
+ // "Show"
8285
9205
  showButton: "Показать",
9206
+ // "Filter"
8286
9207
  filter: "Фильтр",
9208
+ // "Reset Filter"
8287
9209
  resetFilter: "Очистить фильтр",
9210
+ // "Change Locale"
8288
9211
  changeLocale: "Сменить язык",
9212
+ // "Clear"
8289
9213
  clearButton: "Очистить",
9214
+ // "Choose question to show..."
8290
9215
  addElement: "Выберите вопрос...",
9216
+ // "Default Order"
8291
9217
  defaultOrder: "Порядок по умолчанию",
9218
+ // "Ascending"
8292
9219
  ascOrder: "Сортировать по возрастанию",
9220
+ // "Descending"
8293
9221
  descOrder: "Сортировать по убыванию",
9222
+ // "Show minor columns"
8294
9223
  showMinorColumns: "Показать второстепенные столбцы",
9224
+ // [Auto-translated] "Actions"
9225
+ actionsColumn: "Действия",
9226
+ // "Other items and comments"
8295
9227
  otherCommentTitle: "Другое и комментарии",
9228
+ // "Show percentages"
8296
9229
  showPercentages: "Показать проценты",
9230
+ // "Hide percentages"
8297
9231
  hidePercentages: "Скрыть проценты",
9232
+ // "PDF"
8298
9233
  pdfDownloadCaption: "PDF",
9234
+ // "Excel"
8299
9235
  xlsxDownloadCaption: "Excel",
9236
+ // "CSV"
8300
9237
  csvDownloadCaption: "CSV",
9238
+ // "Download plot as a PNG file"
8301
9239
  saveDiagramAsPNG: "Скачать диаграмму в формате PNG",
9240
+ // "Hide empty answers"
8302
9241
  hideEmptyAnswers: "Скрыть пустые ответы",
9242
+ // "Show empty answers"
8303
9243
  showEmptyAnswers: "Показать пустые ответы",
9244
+ // "All answers"
8304
9245
  "topNValueText-1": "Все ответы",
9246
+ // "Top 5 answers"
8305
9247
  topNValueText5: "Первые 5 ответов",
9248
+ // "Top 10 answers"
8306
9249
  topNValueText10: "Первые 10 ответов",
9250
+ // "Top 20 answers"
8307
9251
  topNValueText20: "Первые 20 ответов",
9252
+ // "Hide missing answers"
8308
9253
  hideMissingAnswers: "Скрыть отсутствующие ответы",
9254
+ // "Show missing answers"
8309
9255
  showMissingAnswers: "Показать отсутствующие ответы",
9256
+ // "Missing answers"
8310
9257
  missingAnswersLabel: "Отсутствующие ответы",
9258
+ // "This question type is not visualized yet"
8311
9259
  noVisualizerForQuestion: "Этот тип вопроса не поддерживается",
9260
+ // "There are no results yet"
8312
9261
  noResults: "Результаты отсутствуют",
9262
+ // "Per Values"
8313
9263
  showPerValues: "По значениям",
9264
+ // "Per Columns"
8314
9265
  showPerColumns: "По столбцам",
9266
+ // "Answer"
8315
9267
  answer: "Ответ",
9268
+ // "Correct answer: "
8316
9269
  correctAnswer: "Правильный ответ: ",
9270
+ // "Percent"
8317
9271
  percent: "процентов",
8318
- responses: "ответов"
9272
+ // [Auto-translated] "Percentage"
9273
+ percentage: "Процент",
9274
+ // [Auto-translated] "Chart"
9275
+ statistics_chart: "Диаграмма",
9276
+ // "Responses"
9277
+ responses: "ответов",
9278
+ // [Auto-translated] "NPS"
9279
+ visualizer_nps: "NPS",
9280
+ // [Auto-translated] "NPS"
9281
+ npsScore: "NPS",
9282
+ // [Auto-translated] "Promoters"
9283
+ npsPromoters: "Промоутеров",
9284
+ // [Auto-translated] "Passives"
9285
+ npsPassives: "Пассивные способности",
9286
+ // [Auto-translated] "Detractors"
9287
+ npsDetractors: "Критики",
9288
+ // [Auto-translated] "Category (X Axis):"
9289
+ axisXSelectorTitle: "Категория (ось X):",
9290
+ // [Auto-translated] "Legend (Series):"
9291
+ axisYSelectorTitle: "Легенда (Серия):",
9292
+ // [Auto-translated] "Segments:"
9293
+ axisXAlternativeSelectorTitle: "Сегментов:",
9294
+ // [Auto-translated] "Groups:"
9295
+ axisYAlternativeSelectorTitle: "Группы:",
9296
+ // [Auto-translated] "Not selected"
9297
+ notSelected: "Не выбрано"
8319
9298
  };
8320
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["ru"] = russianStrings;
8321
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["ru"] = "Русский";
9299
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "ru", strings: russianStrings, nativeName: "Русский" });
8322
9300
 
8323
9301
 
8324
9302
  /***/ }),
@@ -8335,96 +9313,350 @@ __webpack_require__.r(__webpack_exports__);
8335
9313
  /* harmony export */ spanishStrings: () => (/* binding */ spanishStrings)
8336
9314
  /* harmony export */ });
8337
9315
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
8338
- // This dictionary contains 1 untranslated or inherited localization strings.
8339
- // These strings are commented out. Uncomment and edit them if you want to add your translations.
8340
9316
 
8341
9317
  var spanishStrings = {
9318
+ // "Group By Me"
8342
9319
  groupButton: "Grupo Por Mí",
9320
+ // "Ungroup By Me"
8343
9321
  ungroupButton: "Desagrupar por mí",
9322
+ // "Select Me"
8344
9323
  selectButton: "Seleccionarme",
9324
+ // "Hide column"
8345
9325
  hideColumn: "Ocultar columna",
9326
+ // "Show column"
8346
9327
  showColumn: "Mostrar columna",
9328
+ // "Make column private"
8347
9329
  makePrivateColumn: "Hacer que la columna sea privada",
9330
+ // "Make column public"
8348
9331
  makePublicColumn: "Hacer pública la columna",
9332
+ // "Move to Detail"
8349
9333
  moveToDetail: "Mover al detalle",
9334
+ // "Show as Column"
8350
9335
  showAsColumn: "Mostrar como columna",
9336
+ // "Search..."
8351
9337
  filterPlaceholder: "Buscar ...",
9338
+ // "Remove rows"
8352
9339
  removeRows: "Eliminar filas",
9340
+ // "Show"
8353
9341
  showLabel: "Mostrar",
9342
+ // "entries"
8354
9343
  entriesLabel: "Entradas",
9344
+ // "Texts in table"
8355
9345
  visualizer_text: "Textos en tabla",
9346
+ // "Wordcloud"
8356
9347
  visualizer_wordcloud: "Wordcloud",
9348
+ // "Histogram"
8357
9349
  visualizer_histogram: "Histograma",
9350
+ // "Average"
8358
9351
  visualizer_number: "Promedio",
9352
+ // "Table"
8359
9353
  visualizer_choices: "Mesa",
9354
+ // "Chart"
8360
9355
  visualizer_selectBase: "Gráfico",
8361
- // visualizer_matrix: "Chart",
8362
- chartType_bar: "Bar",
9356
+ // [Auto-translated] "Chart"
9357
+ visualizer_matrix: "Gráfico",
9358
+ // [Auto-translated] "Bar"
9359
+ chartType_bar: "Barra",
9360
+ // "Vertical Bar"
8363
9361
  chartType_vbar: "Barra vertical",
9362
+ // "Stacked Bar"
8364
9363
  chartType_stackedbar: "Barra apilada",
9364
+ // "Doughnut"
8365
9365
  chartType_doughnut: "Donut",
9366
+ // "Pie"
8366
9367
  chartType_pie: "Pie",
9368
+ // "Scatter"
8367
9369
  chartType_scatter: "Dispersión",
9370
+ // "Gauge"
8368
9371
  chartType_gauge: "Gauge",
9372
+ // "Bullet"
8369
9373
  chartType_bullet: "Bullet",
9374
+ // [Auto-translated] "Line"
9375
+ chartType_line: "Línea",
9376
+ // [Auto-translated] "Radar"
9377
+ chartType_radar: "Radar",
9378
+ // "Hide"
8370
9379
  hideButton: "Ocultar",
9380
+ // "Make private"
8371
9381
  makePrivateButton: "Hacer privado",
9382
+ // "Make public"
8372
9383
  makePublicButton: "Hacer público",
9384
+ // "Show"
8373
9385
  showButton: "Mostrar",
9386
+ // "Filter"
8374
9387
  filter: "Filtro",
9388
+ // "Reset Filter"
8375
9389
  resetFilter: "Restablecer filtro",
9390
+ // "Change Locale"
8376
9391
  changeLocale: "Cambiar configuración regional",
9392
+ // "Clear"
8377
9393
  clearButton: "Borrar",
9394
+ // "Choose question to show..."
8378
9395
  addElement: "Elija la pregunta para mostrar ...",
9396
+ // "Default Order"
8379
9397
  defaultOrder: "Orden predeterminado",
9398
+ // "Ascending"
8380
9399
  ascOrder: "Ascendente",
9400
+ // "Descending"
8381
9401
  descOrder: "Descendente",
9402
+ // "Show minor columns"
8382
9403
  showMinorColumns: "Mostrar columnas secundarias",
9404
+ // [Auto-translated] "Actions"
9405
+ actionsColumn: "Acciones",
9406
+ // "Other items and comments"
8383
9407
  otherCommentTitle: "Otros elementos y comentarios",
9408
+ // "Show percentages"
8384
9409
  showPercentages: "Mostrar porcentajes",
9410
+ // "Hide percentages"
8385
9411
  hidePercentages: "Ocultar porcentajes",
9412
+ // "PDF"
8386
9413
  pdfDownloadCaption: "PDF",
9414
+ // "Excel"
8387
9415
  xlsxDownloadCaption: "Excel",
9416
+ // "CSV"
8388
9417
  csvDownloadCaption: "CSV",
9418
+ // "Download plot as a PNG file"
8389
9419
  saveDiagramAsPNG: "Descargar el gráfico como png",
9420
+ // "Hide empty answers"
8390
9421
  hideEmptyAnswers: "Ocultar respuestas vacías",
9422
+ // "Show empty answers"
8391
9423
  showEmptyAnswers: "Mostrar respuestas vacías",
9424
+ // "All answers"
8392
9425
  "topNValueText-1": "Todas las respuestas",
9426
+ // "Top 5 answers"
8393
9427
  topNValueText5: "Las 5 respuestas principales",
9428
+ // "Top 10 answers"
8394
9429
  topNValueText10: "Las 10 respuestas principales",
9430
+ // "Top 20 answers"
8395
9431
  topNValueText20: "20 respuestas principales",
9432
+ // "Hide missing answers"
8396
9433
  hideMissingAnswers: "Ocultar las respuestas que faltan",
9434
+ // "Show missing answers"
8397
9435
  showMissingAnswers: "Mostrar las respuestas que faltan",
9436
+ // "Missing answers"
8398
9437
  missingAnswersLabel: "Respuestas faltantes",
9438
+ // "This question type is not visualized yet"
8399
9439
  noVisualizerForQuestion: "Este tipo de pregunta aún no se visualiza",
9440
+ // "There are no results yet"
8400
9441
  noResults: "Aún no hay resultados",
9442
+ // "Per Values"
8401
9443
  showPerValues: "Por valores",
9444
+ // "Per Columns"
8402
9445
  showPerColumns: "Por columnas",
9446
+ // "Answer"
8403
9447
  answer: "Respuesta",
9448
+ // "Correct answer: "
8404
9449
  correctAnswer: "Respuesta correcta: ",
9450
+ // "Percent"
8405
9451
  percent: "Por ciento",
8406
- responses: "Respuestas"
9452
+ // [Auto-translated] "Percentage"
9453
+ percentage: "Porcentaje",
9454
+ // [Auto-translated] "Chart"
9455
+ statistics_chart: "Gráfico",
9456
+ // "Responses"
9457
+ responses: "Respuestas",
9458
+ // [Auto-translated] "NPS"
9459
+ visualizer_nps: "NPS",
9460
+ // [Auto-translated] "NPS"
9461
+ npsScore: "NPS",
9462
+ // [Auto-translated] "Promoters"
9463
+ npsPromoters: "Promotores",
9464
+ // [Auto-translated] "Passives"
9465
+ npsPassives: "Pasivos",
9466
+ // [Auto-translated] "Detractors"
9467
+ npsDetractors: "Detractores",
9468
+ // [Auto-translated] "Category (X Axis):"
9469
+ axisXSelectorTitle: "Categoría (eje X):",
9470
+ // [Auto-translated] "Legend (Series):"
9471
+ axisYSelectorTitle: "Leyenda (Serie):",
9472
+ // [Auto-translated] "Segments:"
9473
+ axisXAlternativeSelectorTitle: "Segmentos:",
9474
+ // [Auto-translated] "Groups:"
9475
+ axisYAlternativeSelectorTitle: "Grupos:",
9476
+ // [Auto-translated] "Not selected"
9477
+ notSelected: "No seleccionado"
9478
+ };
9479
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "es", strings: spanishStrings, nativeName: "Español" });
9480
+
9481
+
9482
+ /***/ }),
9483
+
9484
+ /***/ "./src/analytics-localization/swedish.ts":
9485
+ /*!***********************************************!*\
9486
+ !*** ./src/analytics-localization/swedish.ts ***!
9487
+ \***********************************************/
9488
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9489
+
9490
+ "use strict";
9491
+ __webpack_require__.r(__webpack_exports__);
9492
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9493
+ /* harmony export */ swedishStrings: () => (/* binding */ swedishStrings)
9494
+ /* harmony export */ });
9495
+ /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
9496
+
9497
+ var swedishStrings = {
9498
+ // "Group By Me"
9499
+ groupButton: "Gruppera av mig",
9500
+ // "Ungroup By Me"
9501
+ ungroupButton: "Avgruppera av mig",
9502
+ // "Select Me"
9503
+ selectButton: "Välj mig",
9504
+ // "Hide column"
9505
+ hideColumn: "Göm kolumn",
9506
+ // "Show column"
9507
+ showColumn: "Visa kolumn",
9508
+ // "Make column private"
9509
+ makePrivateColumn: "Gör kolumn privat",
9510
+ // "Make column public"
9511
+ makePublicColumn: "Gör kolumn offentlig",
9512
+ // "Move to Detail"
9513
+ moveToDetail: "Flytta till detalj",
9514
+ // "Show as Column"
9515
+ showAsColumn: "Visa som kolumn",
9516
+ // "Search..."
9517
+ filterPlaceholder: "Sök...",
9518
+ // "Remove rows"
9519
+ removeRows: "Ta bort rader",
9520
+ // "Show"
9521
+ showLabel: "Visa",
9522
+ // "entries"
9523
+ entriesLabel: "poster",
9524
+ // "Texts in table"
9525
+ visualizer_text: "Texter i tabell",
9526
+ // "Wordcloud"
9527
+ visualizer_wordcloud: "Ordmoln",
9528
+ // "Histogram"
9529
+ visualizer_histogram: "Histogram",
9530
+ // "Average"
9531
+ visualizer_number: "Genomsnitt",
9532
+ // "Table"
9533
+ visualizer_choices: "Tabell",
9534
+ // "Chart"
9535
+ visualizer_selectBase: "Diagram",
9536
+ // "Chart"
9537
+ visualizer_matrix: "Diagram",
9538
+ // "Bar"
9539
+ chartType_bar: "Stapel",
9540
+ // "Vertical Bar"
9541
+ chartType_vbar: "Vertikal stapel",
9542
+ // "Stacked Bar"
9543
+ chartType_stackedbar: "Staplad stapel",
9544
+ // "Doughnut"
9545
+ chartType_doughnut: "Ring",
9546
+ // "Pie"
9547
+ chartType_pie: "Cirkel",
9548
+ // "Scatter"
9549
+ chartType_scatter: "Punkt",
9550
+ // "Gauge"
9551
+ chartType_gauge: "Mätare",
9552
+ // "Bullet"
9553
+ chartType_bullet: "Bullet",
9554
+ // "Line"
9555
+ chartType_line: "Linje",
9556
+ // "Radar"
9557
+ chartType_radar: "Radar",
9558
+ // "Hide"
9559
+ hideButton: "Göm",
9560
+ // "Make private"
9561
+ makePrivateButton: "Gör privat",
9562
+ // "Make public"
9563
+ makePublicButton: "Gör offentlig",
9564
+ // "Show"
9565
+ showButton: "Visa",
9566
+ // "Filter"
9567
+ filter: "Filter",
9568
+ // "Reset Filter"
9569
+ resetFilter: "Återställ filter",
9570
+ // "Change Locale"
9571
+ changeLocale: "Ändra språk",
9572
+ // "Clear"
9573
+ clearButton: "Rensa",
9574
+ // "Choose question to show..."
9575
+ addElement: "Välj fråga att visa...",
9576
+ // "Default Order"
9577
+ defaultOrder: "Standard ordning",
9578
+ // "Ascending"
9579
+ ascOrder: "Stigande",
9580
+ // "Descending"
9581
+ descOrder: "Fallande",
9582
+ // "Show minor columns"
9583
+ showMinorColumns: "Visa mindre kolumner",
9584
+ // "Actions"
9585
+ actionsColumn: "Åtgärder",
9586
+ // "Other items and comments"
9587
+ otherCommentTitle: "Övriga objekt och kommentarer",
9588
+ // "Show percentages"
9589
+ showPercentages: "Visa procent",
9590
+ // "Hide percentages"
9591
+ hidePercentages: "Göm procent",
9592
+ // "PDF"
9593
+ pdfDownloadCaption: "PDF",
9594
+ // "Excel"
9595
+ xlsxDownloadCaption: "Excel",
9596
+ // "CSV"
9597
+ csvDownloadCaption: "CSV",
9598
+ // "Download plot as a PNG file"
9599
+ saveDiagramAsPNG: "Ladda ner diagram som PNG-fil",
9600
+ // "Hide empty answers"
9601
+ hideEmptyAnswers: "Göm tomma svar",
9602
+ // "Show empty answers"
9603
+ showEmptyAnswers: "Visa tomma svar",
9604
+ // "All answers"
9605
+ "topNValueText-1": "Alla svar",
9606
+ // "Top 5 answers"
9607
+ topNValueText5: "Topp 5 svar",
9608
+ // "Top 10 answers"
9609
+ topNValueText10: "Topp 10 svar",
9610
+ // "Top 20 answers"
9611
+ topNValueText20: "Topp 20 svar",
9612
+ // "Hide missing answers"
9613
+ hideMissingAnswers: "Göm saknade svar",
9614
+ // "Show missing answers"
9615
+ showMissingAnswers: "Visa saknade svar",
9616
+ // "Missing answers"
9617
+ missingAnswersLabel: "Saknade svar",
9618
+ // "This question type is not visualized yet"
9619
+ noVisualizerForQuestion: "Detta frågetyp är inte visualiserad ännu",
9620
+ // "There are no results yet"
9621
+ noResults: "Det finns inga resultat ännu",
9622
+ // "Per Values"
9623
+ showPerValues: "Per värden",
9624
+ // "Per Columns"
9625
+ showPerColumns: "Per kolumner",
9626
+ // "Answer"
9627
+ answer: "Svar",
9628
+ // "Correct answer: "
9629
+ correctAnswer: "Rätt svar: ",
9630
+ // "Percent"
9631
+ percent: "Procent",
9632
+ // "Percentage"
9633
+ percentage: "Procent",
9634
+ // "Chart"
9635
+ statistics_chart: "Diagram",
9636
+ // "Responses"
9637
+ responses: "Svar",
9638
+ // "NPS"
9639
+ visualizer_nps: "NPS",
9640
+ // "NPS"
9641
+ npsScore: "NPS",
9642
+ // "Promoters"
9643
+ npsPromoters: "Promotorer",
9644
+ // "Passives"
9645
+ npsPassives: "Passiva",
9646
+ // "Detractors"
9647
+ npsDetractors: "Kritiker",
9648
+ // "Category (X Axis):"
9649
+ axisXSelectorTitle: "X-axel:",
9650
+ // "Legend (Series):"
9651
+ axisYSelectorTitle: "Y-axel:",
9652
+ // [Auto-translated] "Segments:"
9653
+ axisXAlternativeSelectorTitle: "Segment:",
9654
+ // [Auto-translated] "Groups:"
9655
+ axisYAlternativeSelectorTitle: "Grupper:",
9656
+ // [Auto-translated] "Not selected"
9657
+ notSelected: "Inte valt"
8407
9658
  };
8408
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.locales["es"] = spanishStrings;
8409
- _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization.localeNames["es"] = "Español";
8410
- // The following strings have been translated by a machine translation service
8411
- // Remove those strings that you have corrected manually
8412
- // undefined.groupButton: "Group By Me" => "Grupo Por Mí"
8413
- // undefined.entriesLabel: "entries" => "Entradas"
8414
- // undefined.visualizer_histogram: "Histogram" => "Histograma"
8415
- // undefined.visualizer_number: "Average" => "Promedio"
8416
- // undefined.visualizer_choices: "Table" => "Mesa"
8417
- // undefined.visualizer_selectBase: "Chart" => "Gráfico"
8418
- // undefined.chartType_vbar: "Vertical Bar" => "Barra vertical"
8419
- // undefined.hideMissingAnswers: "Hide missing answers" => "Ocultar las respuestas que faltan"
8420
- // undefined.showMissingAnswers: "Show missing answers" => "Mostrar las respuestas que faltan"
8421
- // undefined.missingAnswersLabel: "Missing answers" => "Respuestas faltantes"
8422
- // undefined.showPerValues: "Per Values" => "Por valores"
8423
- // undefined.showPerColumns: "Per Columns" => "Por columnas"
8424
- // undefined.answer: "Answer" => "Respuesta"
8425
- // undefined.correctAnswer: "Correct answer: " => "Respuesta correcta: "
8426
- // undefined.percent: "Percent" => "Por ciento"
8427
- // undefined.responses: "Responses" => "Respuestas"
9659
+ (0,_localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale)({ localeCode: "sv", strings: swedishStrings, nativeName: "Svenska" });
8428
9660
 
8429
9661
 
8430
9662
  /***/ }),
@@ -8743,7 +9975,7 @@ var HistogramModel = /** @class */ (function (_super) {
8743
9975
  var _this = _super.call(this, question, data, options, name || "histogram") || this;
8744
9976
  _this.valueType = "number";
8745
9977
  _this._cachedValues = undefined;
8746
- _this._continiousData = undefined;
9978
+ _this._continuousData = undefined;
8747
9979
  _this._cachedIntervals = undefined;
8748
9980
  _this._intervalPrecision = 2;
8749
9981
  _this._transposeData = false;
@@ -8760,11 +9992,11 @@ var HistogramModel = /** @class */ (function (_super) {
8760
9992
  return _this;
8761
9993
  }
8762
9994
  HistogramModel.prototype.reset = function () {
8763
- this._continiousData = undefined;
9995
+ this._continuousData = undefined;
8764
9996
  this._cachedValues = undefined;
8765
9997
  this._cachedIntervals = undefined;
8766
9998
  };
8767
- HistogramModel.prototype.getContiniousValue = function (value) {
9999
+ HistogramModel.prototype.getContinuousValue = function (value) {
8768
10000
  if (this.valueType === "date") {
8769
10001
  return Date.parse(value);
8770
10002
  }
@@ -8781,7 +10013,7 @@ var HistogramModel = /** @class */ (function (_super) {
8781
10013
  return Math.round(base * value) / base;
8782
10014
  };
8783
10015
  HistogramModel.prototype.getSelectedItemByText = function (itemText) {
8784
- if (this.hasCustomIntervals || this.getContiniousValues().length > HistogramModel.UseIntervalsFrom) {
10016
+ if (this.hasCustomIntervals || this.getContinuousValues().length > HistogramModel.UseIntervalsFrom) {
8785
10017
  var interval = this.intervals.filter(function (interval) { return interval.label === itemText; })[0];
8786
10018
  return new survey_core__WEBPACK_IMPORTED_MODULE_1__.ItemValue(interval, interval !== undefined ? interval.label : "");
8787
10019
  }
@@ -8800,27 +10032,27 @@ var HistogramModel = /** @class */ (function (_super) {
8800
10032
  this.reset();
8801
10033
  _super.prototype.onDataChanged.call(this);
8802
10034
  };
8803
- HistogramModel.prototype.getContiniousValues = function () {
10035
+ HistogramModel.prototype.getContinuousValues = function () {
8804
10036
  var _this = this;
8805
10037
  if (this._cachedValues === undefined) {
8806
10038
  var series = this.getSeriesValues();
8807
10039
  if (series.length === 0) {
8808
10040
  series.push("");
8809
10041
  }
8810
- this._continiousData = {};
8811
- series.forEach(function (seriesValue) { return _this._continiousData[seriesValue] = []; });
10042
+ this._continuousData = {};
10043
+ series.forEach(function (seriesValue) { return _this._continuousData[seriesValue] = []; });
8812
10044
  var hash_1 = {};
8813
10045
  this.data.forEach(function (dataItem) {
8814
10046
  var answerData = dataItem[_this.name];
8815
10047
  if (answerData !== undefined) {
8816
10048
  var seriesValue = dataItem[_dataProvider__WEBPACK_IMPORTED_MODULE_2__.DataProvider.seriesMarkerKey] || "";
8817
- // TODO: _continiousData should be sorted in order to speed-up statistics calculation in the getData function
8818
- _this._continiousData[seriesValue].push(_this.getContiniousValue(answerData));
10049
+ // TODO: _continuousData should be sorted in order to speed-up statistics calculation in the getData function
10050
+ _this._continuousData[seriesValue].push(_this.getContinuousValue(answerData));
8819
10051
  hash_1[answerData] = answerData;
8820
10052
  }
8821
10053
  });
8822
- this._cachedValues = Object.keys(hash_1).map(function (key) { return ({ original: hash_1[key], continious: _this.getContiniousValue(key) }); });
8823
- this._cachedValues.sort(function (a, b) { return a.continious - b.continious; });
10054
+ this._cachedValues = Object.keys(hash_1).map(function (key) { return ({ original: hash_1[key], continuous: _this.getContinuousValue(key) }); });
10055
+ this._cachedValues.sort(function (a, b) { return a.continuous - b.continuous; });
8824
10056
  }
8825
10057
  return this._cachedValues;
8826
10058
  };
@@ -8875,11 +10107,11 @@ var HistogramModel = /** @class */ (function (_super) {
8875
10107
  }
8876
10108
  }
8877
10109
  if (this._cachedIntervals === undefined) {
8878
- var continiousValues = this.getContiniousValues();
10110
+ var continuousValues = this.getContinuousValues();
8879
10111
  this._cachedIntervals = [];
8880
- if (continiousValues.length) {
8881
- var start = continiousValues[0].continious;
8882
- var end = continiousValues[continiousValues.length - 1].continious;
10112
+ if (continuousValues.length) {
10113
+ var start = continuousValues[0].continuous;
10114
+ var end = continuousValues[continuousValues.length - 1].continuous;
8883
10115
  var intervalsCount = HistogramModel.IntervalsCount;
8884
10116
  var delta = (end - start) / intervalsCount;
8885
10117
  for (var i = 0; i < intervalsCount; ++i) {
@@ -8904,8 +10136,8 @@ var HistogramModel = /** @class */ (function (_super) {
8904
10136
  return [externalCalculatedData];
8905
10137
  };
8906
10138
  HistogramModel.prototype.getCalculatedValuesCore = function () {
8907
- var continiousValues = this.getContiniousValues();
8908
- return (0,_statisticCalculators__WEBPACK_IMPORTED_MODULE_5__.histogramStatisticsCalculator)(this._continiousData, this.intervals, this.getSeriesValues());
10139
+ var continuousValues = this.getContinuousValues();
10140
+ return (0,_statisticCalculators__WEBPACK_IMPORTED_MODULE_5__.histogramStatisticsCalculator)(this._continuousData, this.intervals, this.getSeriesValues());
8909
10141
  };
8910
10142
  HistogramModel.prototype.getValueType = function () {
8911
10143
  return this.valueType;
@@ -9202,9 +10434,13 @@ var MuuriLayoutEngine = /** @class */ (function (_super) {
9202
10434
  __webpack_require__.r(__webpack_exports__);
9203
10435
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9204
10436
  /* harmony export */ localization: () => (/* binding */ localization),
10437
+ /* harmony export */ setupLocale: () => (/* binding */ setupLocale),
9205
10438
  /* harmony export */ surveyStrings: () => (/* binding */ surveyStrings)
9206
10439
  /* harmony export */ });
9207
10440
  /* harmony import */ var _analytics_localization_english__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./analytics-localization/english */ "./src/analytics-localization/english.ts");
10441
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! survey-core */ "survey-core");
10442
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_1__);
10443
+
9208
10444
 
9209
10445
  var localization = {
9210
10446
  currentLocaleValue: "",
@@ -9226,6 +10462,14 @@ var localization = {
9226
10462
  set defaultLocale(val) {
9227
10463
  this.defaultLocaleValue = val;
9228
10464
  },
10465
+ setupLocale: function (loc, strings) {
10466
+ this.locales[loc] = strings;
10467
+ },
10468
+ getLocaleName: function (loc, inEnglish) {
10469
+ if (inEnglish === void 0) { inEnglish = false; }
10470
+ var res = !inEnglish ? this.localeNames[loc] : "";
10471
+ return res || survey_core__WEBPACK_IMPORTED_MODULE_1__.surveyLocalization.getLocaleName(loc, inEnglish);
10472
+ },
9229
10473
  getString: function (strName) {
9230
10474
  var loc = this.currentLocale
9231
10475
  ? this.locales[this.currentLocale]
@@ -9256,8 +10500,14 @@ var localization = {
9256
10500
  }
9257
10501
  };
9258
10502
  var surveyStrings = _analytics_localization_english__WEBPACK_IMPORTED_MODULE_0__.englishStrings;
9259
- localization.locales["en"] = _analytics_localization_english__WEBPACK_IMPORTED_MODULE_0__.englishStrings;
9260
- localization.localeNames["en"] = "English";
10503
+ function setupLocale(localeConfig) {
10504
+ var loc = localeConfig.localeCode;
10505
+ localization.setupLocale(loc, localeConfig.strings);
10506
+ if (localeConfig.nativeName) {
10507
+ localization.localeNames[loc] = localeConfig.nativeName;
10508
+ }
10509
+ }
10510
+ setupLocale({ localeCode: "en", strings: _analytics_localization_english__WEBPACK_IMPORTED_MODULE_0__.englishStrings, nativeName: "English" });
9261
10511
 
9262
10512
 
9263
10513
  /***/ }),
@@ -9758,7 +11008,7 @@ var PivotModel = /** @class */ (function (_super) {
9758
11008
  _this.questions = questions;
9759
11009
  _this.valueType = "enum";
9760
11010
  _this._cachedValues = undefined;
9761
- _this._continiousData = undefined;
11011
+ _this._continuousData = undefined;
9762
11012
  _this._cachedIntervals = undefined;
9763
11013
  _this._intervalPrecision = 2;
9764
11014
  _this.axisYSelectors = [];
@@ -9775,7 +11025,12 @@ var PivotModel = /** @class */ (function (_super) {
9775
11025
  value: question.name,
9776
11026
  text: question.title || question.name,
9777
11027
  };
9778
- }), function (option) { return _this.axisXQuestionName === option.value; }, function (e) { _this.axisXQuestionName = e.target.value; _this.setupPivot(); }, _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("axisXSelectorTitle"));
11028
+ }), function (option) { return _this.axisXQuestionName === option.value; }, function (e) {
11029
+ _this.axisXQuestionName = e.target.value;
11030
+ _this.updateQuestionsSelection();
11031
+ _this.updateToolbar();
11032
+ _this.setupPivot();
11033
+ }, function () { return _this.isXYChart() ? _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("axisXSelectorTitle") : _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("axisXAlternativeSelectorTitle"); });
9779
11034
  });
9780
11035
  _this.registerToolbarItem("axisYSelector0", _this.createYSelecterGenerator());
9781
11036
  _this.setupPivot();
@@ -9790,6 +11045,9 @@ var PivotModel = /** @class */ (function (_super) {
9790
11045
  selector = _this.createAxisYSelector(selectorIndex);
9791
11046
  _this.axisYSelectors.push(selector);
9792
11047
  }
11048
+ else {
11049
+ selector["__updateSelect"] && selector["__updateSelect"]();
11050
+ }
9793
11051
  return selector;
9794
11052
  };
9795
11053
  };
@@ -9814,27 +11072,63 @@ var PivotModel = /** @class */ (function (_super) {
9814
11072
  }
9815
11073
  this.axisYSelectors = this.axisYSelectors.slice(0, index + 1);
9816
11074
  this.axisYQuestionNames = this.axisYQuestionNames.slice(0, index + 1);
9817
- this.updateToolbar();
9818
11075
  }
9819
11076
  }
9820
11077
  else {
9821
11078
  if (!!value) {
9822
11079
  this.registerToolbarItem("axisYSelector" + this.axisYSelectors.length, this.createYSelecterGenerator());
9823
- this.updateToolbar();
9824
11080
  }
9825
11081
  }
11082
+ this.updateQuestionsSelection();
11083
+ this.updateToolbar();
9826
11084
  this.setupPivot();
9827
11085
  };
11086
+ PivotModel.prototype.updateQuestionsSelection = function () {
11087
+ var selectedQuestions = [this.axisXQuestionName];
11088
+ for (var i = 0; i < this.axisYQuestionNames.length; ++i) {
11089
+ var questionName = this.axisYQuestionNames[i];
11090
+ if (selectedQuestions.indexOf(questionName) !== -1) {
11091
+ this.onAxisYSelectorChanged(i, undefined);
11092
+ break;
11093
+ }
11094
+ else {
11095
+ selectedQuestions.push(questionName);
11096
+ }
11097
+ }
11098
+ };
9828
11099
  PivotModel.prototype.createAxisYSelector = function (selectorIndex) {
9829
11100
  var _this = this;
9830
- var selector = _utils__WEBPACK_IMPORTED_MODULE_3__.DocumentHelper.createSelector([{ value: "", text: "Not selected" }].concat(this.questions.map(function (question) {
9831
- return {
9832
- value: question.name,
9833
- text: question.title || question.name,
9834
- };
9835
- })), function (option) { return _this.axisYQuestionNames[selectorIndex] === option.value; }, function (e) { _this.onAxisYSelectorChanged(selectorIndex, e.target.value); }, selectorIndex ? undefined : _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("axisYSelectorTitle"));
11101
+ var getChoices = function () {
11102
+ var choices = _this.questions.filter(function (q) {
11103
+ if (q.name === _this.axisXQuestionName) {
11104
+ return false;
11105
+ }
11106
+ var usedIndex = _this.axisYQuestionNames.indexOf(q.name);
11107
+ return usedIndex == -1 || usedIndex >= selectorIndex;
11108
+ }).map(function (question) {
11109
+ return {
11110
+ value: question.name,
11111
+ text: question.title || question.name,
11112
+ };
11113
+ });
11114
+ return [{ value: "", text: _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("notSelected") }].concat(choices);
11115
+ };
11116
+ if (getChoices().length == 1) {
11117
+ return undefined;
11118
+ }
11119
+ var selector = _utils__WEBPACK_IMPORTED_MODULE_3__.DocumentHelper.createSelector(getChoices, function (option) { return _this.axisYQuestionNames[selectorIndex] === option.value; }, function (e) { _this.onAxisYSelectorChanged(selectorIndex, e.target.value); }, function () { return selectorIndex ? undefined : (_this.isXYChart() ? _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("axisYSelectorTitle") : _localizationManager__WEBPACK_IMPORTED_MODULE_5__.localization.getString("axisYAlternativeSelectorTitle")); });
9836
11120
  return selector;
9837
11121
  };
11122
+ PivotModel.prototype.setChartType = function (chartType) {
11123
+ var prev2Dchart = this.isXYChart();
11124
+ _super.prototype.setChartType.call(this, chartType);
11125
+ if (prev2Dchart !== this.isXYChart()) {
11126
+ this.updateToolbar();
11127
+ }
11128
+ };
11129
+ PivotModel.prototype.isXYChart = function () {
11130
+ return ["pie", "doughnut"].indexOf(this.chartType) === -1;
11131
+ };
9838
11132
  PivotModel.prototype.getQuestionValueType = function (question) {
9839
11133
  var questionType = question.getType();
9840
11134
  if (questionType === "text" && (question["inputType"] === "date" || question["inputType"] === "datetime")) {
@@ -9862,11 +11156,11 @@ var PivotModel = /** @class */ (function (_super) {
9862
11156
  this.onDataChanged();
9863
11157
  };
9864
11158
  PivotModel.prototype.reset = function () {
9865
- this._continiousData = undefined;
11159
+ this._continuousData = undefined;
9866
11160
  this._cachedValues = undefined;
9867
11161
  this._cachedIntervals = undefined;
9868
11162
  };
9869
- PivotModel.prototype.getContiniousValue = function (value) {
11163
+ PivotModel.prototype.getContinuousValue = function (value) {
9870
11164
  if (this.valueType === "date") {
9871
11165
  return Date.parse(value);
9872
11166
  }
@@ -9883,7 +11177,7 @@ var PivotModel = /** @class */ (function (_super) {
9883
11177
  return Math.round(base * value) / base;
9884
11178
  };
9885
11179
  PivotModel.prototype.getSelectedItemByText = function (itemText) {
9886
- if (this.hasCustomIntervals || this.getContiniousValues().length > PivotModel.UseIntervalsFrom) {
11180
+ if (this.hasCustomIntervals || this.getContinuousValues().length > PivotModel.UseIntervalsFrom) {
9887
11181
  var interval = this.intervals.filter(function (interval) { return interval.label === itemText; })[0];
9888
11182
  return new survey_core__WEBPACK_IMPORTED_MODULE_1__.ItemValue(interval, interval !== undefined ? interval.label : "");
9889
11183
  }
@@ -9902,10 +11196,10 @@ var PivotModel = /** @class */ (function (_super) {
9902
11196
  this.reset();
9903
11197
  _super.prototype.onDataChanged.call(this);
9904
11198
  };
9905
- PivotModel.prototype.getContiniousValues = function () {
11199
+ PivotModel.prototype.getContinuousValues = function () {
9906
11200
  var _this = this;
9907
11201
  if (this._cachedValues === undefined) {
9908
- this._continiousData = [];
11202
+ this._continuousData = [];
9909
11203
  if (this.valueType === "enum") {
9910
11204
  this._cachedValues = [];
9911
11205
  return this._cachedValues;
@@ -9914,13 +11208,13 @@ var PivotModel = /** @class */ (function (_super) {
9914
11208
  this.data.forEach(function (dataItem) {
9915
11209
  var answerData = dataItem[_this.name];
9916
11210
  if (answerData !== undefined) {
9917
- // TODO: _continiousData should be sorted in order to speed-up statistics calculation in the getData function
9918
- _this._continiousData.push({ continious: _this.getContiniousValue(answerData), row: dataItem });
11211
+ // TODO: _continuousData should be sorted in order to speed-up statistics calculation in the getData function
11212
+ _this._continuousData.push({ continuous: _this.getContinuousValue(answerData), row: dataItem });
9919
11213
  hash_1[answerData] = { value: answerData, row: dataItem };
9920
11214
  }
9921
11215
  });
9922
- this._cachedValues = Object.keys(hash_1).map(function (key) { return ({ original: hash_1[key].value, continious: _this.getContiniousValue(key), row: hash_1[key].row }); });
9923
- this._cachedValues.sort(function (a, b) { return a.continious - b.continious; });
11216
+ this._cachedValues = Object.keys(hash_1).map(function (key) { return ({ original: hash_1[key].value, continuous: _this.getContinuousValue(key), row: hash_1[key].row }); });
11217
+ this._cachedValues.sort(function (a, b) { return a.continuous - b.continuous; });
9924
11218
  }
9925
11219
  return this._cachedValues;
9926
11220
  };
@@ -10016,11 +11310,11 @@ var PivotModel = /** @class */ (function (_super) {
10016
11310
  }
10017
11311
  }
10018
11312
  if (this._cachedIntervals === undefined) {
10019
- var continiousValues = this.getContiniousValues();
11313
+ var continuousValues = this.getContinuousValues();
10020
11314
  this._cachedIntervals = [];
10021
- if (continiousValues.length) {
10022
- var start = continiousValues[0].continious;
10023
- var end = continiousValues[continiousValues.length - 1].continious;
11315
+ if (continuousValues.length) {
11316
+ var start = continuousValues[0].continuous;
11317
+ var end = continuousValues[continuousValues.length - 1].continuous;
10024
11318
  var intervalsCount = PivotModel.IntervalsCount;
10025
11319
  var delta = (end - start) / intervalsCount;
10026
11320
  for (var i = 0; i < intervalsCount; ++i) {
@@ -10107,14 +11401,14 @@ var PivotModel = /** @class */ (function (_super) {
10107
11401
  });
10108
11402
  }
10109
11403
  else {
10110
- var continiousValues = this.getContiniousValues();
11404
+ var continuousValues = this.getContinuousValues();
10111
11405
  var intervals_1 = this.intervals;
10112
11406
  for (var i = 0; i < series.length; ++i) {
10113
11407
  statistics.push(intervals_1.map(function (i) { return 0; }));
10114
11408
  }
10115
- this._continiousData.forEach(function (dataValue) {
11409
+ this._continuousData.forEach(function (dataValue) {
10116
11410
  for (var valueIndex = 0; valueIndex < intervals_1.length; ++valueIndex) {
10117
- if (intervals_1[valueIndex].start <= dataValue.continious && (dataValue.continious < intervals_1[valueIndex].end || valueIndex == intervals_1.length - 1)) {
11411
+ if (intervals_1[valueIndex].start <= dataValue.continuous && (dataValue.continuous < intervals_1[valueIndex].end || valueIndex == intervals_1.length - 1)) {
10118
11412
  if (_this.questionsY.length === 0) {
10119
11413
  statistics[0][valueIndex]++;
10120
11414
  }
@@ -10393,7 +11687,7 @@ var SelectBase = /** @class */ (function (_super) {
10393
11687
  _this.updateEmptyAnswersBtn();
10394
11688
  }
10395
11689
  return _this.emptyAnswersBtn;
10396
- });
11690
+ }, 1000);
10397
11691
  _this.registerToolbarItem("topNAnswers", function () {
10398
11692
  if (_this.options.allowTopNAnswers &&
10399
11693
  _this.getSeriesValues().length === 0) {
@@ -10947,17 +12241,24 @@ function defaultStatisticsCalculator(data, dataInfo) {
10947
12241
  }
10948
12242
  statistics.push(dataNameStatistics);
10949
12243
  }
12244
+ var getValueIndex = function (val) {
12245
+ if (val !== null && typeof val === "object")
12246
+ return valuesIndex[val.value];
12247
+ return valuesIndex[val];
12248
+ };
10950
12249
  data.forEach(function (row) {
10951
12250
  dataNames.forEach(function (dataName, index) {
10952
12251
  var rowValue = row[dataName];
10953
12252
  if (rowValue !== undefined || processMissingAnswers) {
10954
12253
  var rowValues = Array.isArray(rowValue) ? rowValue : [rowValue];
10955
12254
  if (series.length > 0) {
10956
- if (row[_dataProvider__WEBPACK_IMPORTED_MODULE_0__.DataProvider.seriesMarkerKey] !== undefined) {
12255
+ var rowName = row[_dataProvider__WEBPACK_IMPORTED_MODULE_0__.DataProvider.seriesMarkerKey];
12256
+ if (rowName !== undefined) {
10957
12257
  // Series are labelled by seriesMarkerKey in row data
10958
- var seriesNo_1 = seriesIndex[row[_dataProvider__WEBPACK_IMPORTED_MODULE_0__.DataProvider.seriesMarkerKey]] || 0;
12258
+ var seriesNo_1 = seriesIndex[rowName] || 0;
10959
12259
  rowValues.forEach(function (val) {
10960
- statistics[index][seriesNo_1][valuesIndex[val]]++;
12260
+ var valIndex = getValueIndex(val);
12261
+ statistics[index][seriesNo_1][valIndex]++;
10961
12262
  });
10962
12263
  }
10963
12264
  else {
@@ -10966,8 +12267,12 @@ function defaultStatisticsCalculator(data, dataInfo) {
10966
12267
  rowValues.forEach(function (val) {
10967
12268
  series.forEach(function (seriesName) {
10968
12269
  if (val[seriesName] !== undefined) {
10969
- var seriesNo = seriesIndex[seriesName] || 0;
10970
- statistics[index][seriesNo][valuesIndex[val[seriesName]]]++;
12270
+ var seriesNo_2 = seriesIndex[seriesName] || 0;
12271
+ var values_1 = Array.isArray(val[seriesName]) ? val[seriesName] : [val[seriesName]];
12272
+ values_1.forEach(function (value) {
12273
+ var valIndex = getValueIndex(value);
12274
+ statistics[index][seriesNo_2][valIndex]++;
12275
+ });
10971
12276
  }
10972
12277
  });
10973
12278
  });
@@ -10975,7 +12280,10 @@ function defaultStatisticsCalculator(data, dataInfo) {
10975
12280
  }
10976
12281
  else {
10977
12282
  // No series
10978
- rowValues.forEach(function (val) { return statistics[0][0][valuesIndex[val]]++; });
12283
+ rowValues.forEach(function (val) {
12284
+ var valIndex = getValueIndex(val);
12285
+ statistics[0][0][valIndex]++;
12286
+ });
10979
12287
  }
10980
12288
  }
10981
12289
  });
@@ -11597,30 +12905,50 @@ __webpack_require__.r(__webpack_exports__);
11597
12905
  /* harmony export */ options: () => (/* binding */ options),
11598
12906
  /* harmony export */ toPrecision: () => (/* binding */ toPrecision)
11599
12907
  /* harmony export */ });
12908
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! survey-core */ "survey-core");
12909
+ /* harmony import */ var survey_core__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(survey_core__WEBPACK_IMPORTED_MODULE_0__);
12910
+ /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
12911
+
12912
+
11600
12913
  var DocumentHelper = /** @class */ (function () {
11601
12914
  function DocumentHelper() {
11602
12915
  }
11603
12916
  DocumentHelper.createSelector = function (options, isSelected, handler, title) {
11604
12917
  var selectWrapper = document.createElement("div");
11605
12918
  selectWrapper.className = "sa-question__select-wrapper";
11606
- if (title) {
11607
- var titleElement = DocumentHelper.createElement("span", "sa-question__select-title", {
11608
- innerText: title,
11609
- });
11610
- selectWrapper.appendChild(titleElement);
11611
- }
12919
+ var titleElement = DocumentHelper.createElement("span", "sa-question__select-title");
11612
12920
  var select = document.createElement("select");
11613
12921
  select.className = "sa-question__select";
11614
- options.forEach(function (option) {
11615
- var optionElement = DocumentHelper.createElement("option", "", {
11616
- value: option.value,
11617
- text: option.text,
11618
- selected: isSelected(option),
11619
- });
11620
- select.appendChild(optionElement);
11621
- });
12922
+ var updateTitle = function () {
12923
+ var titleText = !!title && (typeof title == "string" ? title : title());
12924
+ titleElement.innerText = titleText;
12925
+ if (!!titleText) {
12926
+ selectWrapper.insertBefore(titleElement, select);
12927
+ }
12928
+ else if (titleElement.parentElement === selectWrapper) {
12929
+ selectWrapper.removeChild(titleElement);
12930
+ }
12931
+ };
11622
12932
  select.onchange = handler;
11623
12933
  selectWrapper.appendChild(select);
12934
+ var updateOptions = function () {
12935
+ select.innerHTML = "";
12936
+ var optionsSource = options || [];
12937
+ var optionItems = Array.isArray(optionsSource) ? optionsSource : optionsSource();
12938
+ optionItems.forEach(function (option) {
12939
+ var optionElement = DocumentHelper.createElement("option", "", {
12940
+ value: option.value,
12941
+ text: option.text,
12942
+ selected: isSelected(option),
12943
+ });
12944
+ select.appendChild(optionElement);
12945
+ });
12946
+ };
12947
+ selectWrapper["__updateSelect"] = function () {
12948
+ updateTitle();
12949
+ updateOptions();
12950
+ };
12951
+ selectWrapper["__updateSelect"]();
11624
12952
  return selectWrapper;
11625
12953
  };
11626
12954
  DocumentHelper.createButton = function (handler, text, className) {
@@ -11706,19 +13034,18 @@ var options = {
11706
13034
  function allowDomRendering() {
11707
13035
  return options.runningInBrowser;
11708
13036
  }
13037
+ function getLicenseText() {
13038
+ var d = !!survey_core__WEBPACK_IMPORTED_MODULE_0__.glc ? (0,survey_core__WEBPACK_IMPORTED_MODULE_0__.glc)(1) : false;
13039
+ if (!!d && d.toLocaleDateString)
13040
+ return _localizationManager__WEBPACK_IMPORTED_MODULE_1__.localization.getString("license2").replace("{date}", d.toLocaleDateString());
13041
+ return _localizationManager__WEBPACK_IMPORTED_MODULE_1__.localization.getString("license");
13042
+ }
11709
13043
  function createCommercialLicenseLink() {
11710
13044
  var container = DocumentHelper.createElement("div", "sa-commercial");
11711
- var link = DocumentHelper.createElement("a", "sa-commercial__text", {
11712
- href: "https://www.surveyjs.io/Buy",
11713
- target: "_blank",
11714
- });
13045
+ var link = DocumentHelper.createElement("div", "sa-commercial__text");
11715
13046
  var containerSpan = DocumentHelper.createElement("span", "");
11716
- var icon = DocumentHelper.createSvgElement("noncommercial");
11717
- var textSpan = DocumentHelper.createElement("span", "sa-commercial__product", {
11718
- innerText: "Please purchase a SurveyJS Analytics developer license to use it in your app.",
11719
- });
13047
+ var textSpan = DocumentHelper.createElement("span", "sa-commercial__product", { innerHTML: getLicenseText() });
11720
13048
  container.appendChild(link).appendChild(containerSpan);
11721
- containerSpan.appendChild(icon);
11722
13049
  containerSpan.appendChild(textSpan);
11723
13050
  return container;
11724
13051
  }
@@ -12303,7 +13630,7 @@ var VisualizationPanel = /** @class */ (function (_super) {
12303
13630
  }
12304
13631
  });
12305
13632
  }, _localizationManager__WEBPACK_IMPORTED_MODULE_6__.localization.getString("resetFilter"));
12306
- });
13633
+ }, 900);
12307
13634
  _this.registerToolbarItem("addElement", function (toolbar) {
12308
13635
  if (_this.allowHideQuestions) {
12309
13636
  var addElementSelector_1 = undefined;
@@ -12344,7 +13671,7 @@ var VisualizationPanel = /** @class */ (function (_super) {
12344
13671
  var localeChoices_1 = _this.locales.map(function (element) {
12345
13672
  return {
12346
13673
  value: element,
12347
- text: _localizationManager__WEBPACK_IMPORTED_MODULE_6__.localization.localeNames[element] || _localizationManager__WEBPACK_IMPORTED_MODULE_6__.localization.getString(element) || element
13674
+ text: _localizationManager__WEBPACK_IMPORTED_MODULE_6__.localization.getLocaleName(element)
12348
13675
  };
12349
13676
  });
12350
13677
  // localeChoices.unshift({
@@ -12486,7 +13813,7 @@ var VisualizationPanel = /** @class */ (function (_super) {
12486
13813
  return _utils_index__WEBPACK_IMPORTED_MODULE_5__.DocumentHelper.createButton(function () {
12487
13814
  setTimeout(function () { return _this.hideElement(question.name); }, 0);
12488
13815
  }, _localizationManager__WEBPACK_IMPORTED_MODULE_6__.localization.getString("hideButton"));
12489
- });
13816
+ }, 1000);
12490
13817
  }
12491
13818
  if (_this.allowMakeQuestionsPrivate) {
12492
13819
  visualizer.registerToolbarItem("makePrivatePublic", function () {
@@ -12511,7 +13838,7 @@ var VisualizationPanel = /** @class */ (function (_super) {
12511
13838
  visualizer.registerToolbarItem("questionFilterInfo", function () {
12512
13839
  filterInfo_1.update(visualizerWithSelection_1.selection);
12513
13840
  return filterInfo_1.htmlElement;
12514
- });
13841
+ }, 900);
12515
13842
  visualizerWithSelection_1.onDataItemSelected = function (selectedValue, selectedText) {
12516
13843
  filterInfo_1.update({ value: selectedValue, text: selectedText });
12517
13844
  _this.setFilter(question.name, selectedValue);
@@ -13164,6 +14491,9 @@ var VisualizerBase = /** @class */ (function () {
13164
14491
  }
13165
14492
  this.onStateChanged.fire(this, this.getState());
13166
14493
  };
14494
+ VisualizerBase.prototype.getToolbarItemCreators = function () {
14495
+ return Object.assign({}, this.toolbarItemCreators, this.onGetToolbarItemCreators && this.onGetToolbarItemCreators() || {});
14496
+ };
13167
14497
  Object.defineProperty(VisualizerBase.prototype, "questionOptions", {
13168
14498
  get: function () {
13169
14499
  var _a;
@@ -13319,8 +14649,9 @@ var VisualizerBase = /** @class */ (function () {
13319
14649
  * @param creator A function that accepts the toolbar and should return an `HTMLElement` with the toolbar item.
13320
14650
  * @see unregisterToolbarItem
13321
14651
  */
13322
- VisualizerBase.prototype.registerToolbarItem = function (name, creator) {
13323
- this.toolbarItemCreators[name] = creator;
14652
+ VisualizerBase.prototype.registerToolbarItem = function (name, creator, order) {
14653
+ if (order === void 0) { order = 100; }
14654
+ this.toolbarItemCreators[name] = { creator: creator, order: order };
13324
14655
  };
13325
14656
  /**
13326
14657
  *
@@ -13331,9 +14662,9 @@ var VisualizerBase = /** @class */ (function () {
13331
14662
  */
13332
14663
  VisualizerBase.prototype.unregisterToolbarItem = function (name) {
13333
14664
  if (this.toolbarItemCreators[name] !== undefined) {
13334
- var creator = this.toolbarItemCreators[name];
14665
+ var item = this.toolbarItemCreators[name];
13335
14666
  delete this.toolbarItemCreators[name];
13336
- return creator;
14667
+ return item.creator;
13337
14668
  }
13338
14669
  return undefined;
13339
14670
  };
@@ -13431,9 +14762,12 @@ var VisualizerBase = /** @class */ (function () {
13431
14762
  }
13432
14763
  };
13433
14764
  VisualizerBase.prototype.createToolbarItems = function (toolbar) {
13434
- var _this = this;
13435
- Object.keys(this.toolbarItemCreators || {}).forEach(function (toolbarItemName) {
13436
- var toolbarItem = _this.toolbarItemCreators[toolbarItemName](toolbar);
14765
+ var toolbarItemCreators = this.getToolbarItemCreators();
14766
+ var sortedItems = Object.keys(toolbarItemCreators || {})
14767
+ .map(function (name) { return ((0,tslib__WEBPACK_IMPORTED_MODULE_0__.__assign)({ name: name }, toolbarItemCreators[name])); })
14768
+ .sort(function (a, b) { return a.order - b.order; });
14769
+ sortedItems.forEach(function (item) {
14770
+ var toolbarItem = item.creator(toolbar);
13437
14771
  if (!!toolbarItem) {
13438
14772
  toolbar.appendChild(toolbarItem);
13439
14773
  }
@@ -15798,37 +17132,38 @@ var __webpack_exports__ = {};
15798
17132
  \*************************************/
15799
17133
  __webpack_require__.r(__webpack_exports__);
15800
17134
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
15801
- /* harmony export */ AlternativeVisualizersWrapper: () => (/* reexport safe */ _alternativeVizualizersWrapper__WEBPACK_IMPORTED_MODULE_27__.AlternativeVisualizersWrapper),
15802
- /* harmony export */ BooleanModel: () => (/* reexport safe */ _boolean__WEBPACK_IMPORTED_MODULE_18__.BooleanModel),
15803
- /* harmony export */ DataProvider: () => (/* reexport safe */ _dataProvider__WEBPACK_IMPORTED_MODULE_14__.DataProvider),
15804
- /* harmony export */ DocumentHelper: () => (/* reexport safe */ _utils_index__WEBPACK_IMPORTED_MODULE_35__.DocumentHelper),
15805
- /* harmony export */ HistogramModel: () => (/* reexport safe */ _histogram__WEBPACK_IMPORTED_MODULE_19__.HistogramModel),
15806
- /* harmony export */ Matrix: () => (/* reexport safe */ _matrix__WEBPACK_IMPORTED_MODULE_17__.Matrix),
15807
- /* harmony export */ NpsAdapter: () => (/* reexport safe */ _nps__WEBPACK_IMPORTED_MODULE_32__.NpsAdapter),
15808
- /* harmony export */ NpsVisualizer: () => (/* reexport safe */ _nps__WEBPACK_IMPORTED_MODULE_32__.NpsVisualizer),
15809
- /* harmony export */ NpsVisualizerWidget: () => (/* reexport safe */ _nps__WEBPACK_IMPORTED_MODULE_32__.NpsVisualizerWidget),
15810
- /* harmony export */ NumberModel: () => (/* reexport safe */ _number__WEBPACK_IMPORTED_MODULE_20__.NumberModel),
15811
- /* harmony export */ PivotModel: () => (/* reexport safe */ _pivot__WEBPACK_IMPORTED_MODULE_34__.PivotModel),
15812
- /* harmony export */ PostponeHelper: () => (/* reexport safe */ _visualizerBase__WEBPACK_IMPORTED_MODULE_21__.PostponeHelper),
15813
- /* harmony export */ RankingModel: () => (/* reexport safe */ _ranking__WEBPACK_IMPORTED_MODULE_33__.RankingModel),
15814
- /* harmony export */ SelectBase: () => (/* reexport safe */ _selectBase__WEBPACK_IMPORTED_MODULE_16__.SelectBase),
15815
- /* harmony export */ StatisticsTable: () => (/* reexport safe */ _statistics_table__WEBPACK_IMPORTED_MODULE_31__.StatisticsTable),
15816
- /* harmony export */ StatisticsTableAdapter: () => (/* reexport safe */ _statistics_table__WEBPACK_IMPORTED_MODULE_31__.StatisticsTableAdapter),
15817
- /* harmony export */ Text: () => (/* reexport safe */ _text__WEBPACK_IMPORTED_MODULE_30__.Text),
15818
- /* harmony export */ TextTableAdapter: () => (/* reexport safe */ _text__WEBPACK_IMPORTED_MODULE_30__.TextTableAdapter),
15819
- /* harmony export */ VisualizationManager: () => (/* reexport safe */ _visualizationManager__WEBPACK_IMPORTED_MODULE_22__.VisualizationManager),
15820
- /* harmony export */ VisualizationMatrixDropdown: () => (/* reexport safe */ _visualizationMatrixDropdown__WEBPACK_IMPORTED_MODULE_26__.VisualizationMatrixDropdown),
15821
- /* harmony export */ VisualizationMatrixDynamic: () => (/* reexport safe */ _visualizationMatrixDynamic__WEBPACK_IMPORTED_MODULE_25__.VisualizationMatrixDynamic),
15822
- /* harmony export */ VisualizationPanel: () => (/* reexport safe */ _visualizationPanel__WEBPACK_IMPORTED_MODULE_23__.VisualizationPanel),
15823
- /* harmony export */ VisualizationPanelDynamic: () => (/* reexport safe */ _visualizationPanelDynamic__WEBPACK_IMPORTED_MODULE_24__.VisualizationPanelDynamic),
15824
- /* harmony export */ VisualizerBase: () => (/* reexport safe */ _visualizerBase__WEBPACK_IMPORTED_MODULE_21__.VisualizerBase),
15825
- /* harmony export */ VisualizerFactory: () => (/* reexport safe */ _visualizerFactory__WEBPACK_IMPORTED_MODULE_15__.VisualizerFactory),
15826
- /* harmony export */ WordCloud: () => (/* reexport safe */ _wordcloud_wordcloud__WEBPACK_IMPORTED_MODULE_28__.WordCloud),
15827
- /* harmony export */ WordCloudAdapter: () => (/* reexport safe */ _wordcloud_wordcloud__WEBPACK_IMPORTED_MODULE_28__.WordCloudAdapter),
15828
- /* harmony export */ hideEmptyAnswersInData: () => (/* reexport safe */ _selectBase__WEBPACK_IMPORTED_MODULE_16__.hideEmptyAnswersInData),
17135
+ /* harmony export */ AlternativeVisualizersWrapper: () => (/* reexport safe */ _alternativeVizualizersWrapper__WEBPACK_IMPORTED_MODULE_28__.AlternativeVisualizersWrapper),
17136
+ /* harmony export */ BooleanModel: () => (/* reexport safe */ _boolean__WEBPACK_IMPORTED_MODULE_19__.BooleanModel),
17137
+ /* harmony export */ DataProvider: () => (/* reexport safe */ _dataProvider__WEBPACK_IMPORTED_MODULE_15__.DataProvider),
17138
+ /* harmony export */ DocumentHelper: () => (/* reexport safe */ _utils_index__WEBPACK_IMPORTED_MODULE_36__.DocumentHelper),
17139
+ /* harmony export */ HistogramModel: () => (/* reexport safe */ _histogram__WEBPACK_IMPORTED_MODULE_20__.HistogramModel),
17140
+ /* harmony export */ Matrix: () => (/* reexport safe */ _matrix__WEBPACK_IMPORTED_MODULE_18__.Matrix),
17141
+ /* harmony export */ NpsAdapter: () => (/* reexport safe */ _nps__WEBPACK_IMPORTED_MODULE_33__.NpsAdapter),
17142
+ /* harmony export */ NpsVisualizer: () => (/* reexport safe */ _nps__WEBPACK_IMPORTED_MODULE_33__.NpsVisualizer),
17143
+ /* harmony export */ NpsVisualizerWidget: () => (/* reexport safe */ _nps__WEBPACK_IMPORTED_MODULE_33__.NpsVisualizerWidget),
17144
+ /* harmony export */ NumberModel: () => (/* reexport safe */ _number__WEBPACK_IMPORTED_MODULE_21__.NumberModel),
17145
+ /* harmony export */ PivotModel: () => (/* reexport safe */ _pivot__WEBPACK_IMPORTED_MODULE_35__.PivotModel),
17146
+ /* harmony export */ PostponeHelper: () => (/* reexport safe */ _visualizerBase__WEBPACK_IMPORTED_MODULE_22__.PostponeHelper),
17147
+ /* harmony export */ RankingModel: () => (/* reexport safe */ _ranking__WEBPACK_IMPORTED_MODULE_34__.RankingModel),
17148
+ /* harmony export */ SelectBase: () => (/* reexport safe */ _selectBase__WEBPACK_IMPORTED_MODULE_17__.SelectBase),
17149
+ /* harmony export */ StatisticsTable: () => (/* reexport safe */ _statistics_table__WEBPACK_IMPORTED_MODULE_32__.StatisticsTable),
17150
+ /* harmony export */ StatisticsTableAdapter: () => (/* reexport safe */ _statistics_table__WEBPACK_IMPORTED_MODULE_32__.StatisticsTableAdapter),
17151
+ /* harmony export */ Text: () => (/* reexport safe */ _text__WEBPACK_IMPORTED_MODULE_31__.Text),
17152
+ /* harmony export */ TextTableAdapter: () => (/* reexport safe */ _text__WEBPACK_IMPORTED_MODULE_31__.TextTableAdapter),
17153
+ /* harmony export */ VisualizationManager: () => (/* reexport safe */ _visualizationManager__WEBPACK_IMPORTED_MODULE_23__.VisualizationManager),
17154
+ /* harmony export */ VisualizationMatrixDropdown: () => (/* reexport safe */ _visualizationMatrixDropdown__WEBPACK_IMPORTED_MODULE_27__.VisualizationMatrixDropdown),
17155
+ /* harmony export */ VisualizationMatrixDynamic: () => (/* reexport safe */ _visualizationMatrixDynamic__WEBPACK_IMPORTED_MODULE_26__.VisualizationMatrixDynamic),
17156
+ /* harmony export */ VisualizationPanel: () => (/* reexport safe */ _visualizationPanel__WEBPACK_IMPORTED_MODULE_24__.VisualizationPanel),
17157
+ /* harmony export */ VisualizationPanelDynamic: () => (/* reexport safe */ _visualizationPanelDynamic__WEBPACK_IMPORTED_MODULE_25__.VisualizationPanelDynamic),
17158
+ /* harmony export */ VisualizerBase: () => (/* reexport safe */ _visualizerBase__WEBPACK_IMPORTED_MODULE_22__.VisualizerBase),
17159
+ /* harmony export */ VisualizerFactory: () => (/* reexport safe */ _visualizerFactory__WEBPACK_IMPORTED_MODULE_16__.VisualizerFactory),
17160
+ /* harmony export */ WordCloud: () => (/* reexport safe */ _wordcloud_wordcloud__WEBPACK_IMPORTED_MODULE_29__.WordCloud),
17161
+ /* harmony export */ WordCloudAdapter: () => (/* reexport safe */ _wordcloud_wordcloud__WEBPACK_IMPORTED_MODULE_29__.WordCloudAdapter),
17162
+ /* harmony export */ hideEmptyAnswersInData: () => (/* reexport safe */ _selectBase__WEBPACK_IMPORTED_MODULE_17__.hideEmptyAnswersInData),
15829
17163
  /* harmony export */ localization: () => (/* reexport safe */ _localizationManager__WEBPACK_IMPORTED_MODULE_0__.localization),
17164
+ /* harmony export */ setupLocale: () => (/* reexport safe */ _localizationManager__WEBPACK_IMPORTED_MODULE_0__.setupLocale),
15830
17165
  /* harmony export */ surveyStrings: () => (/* reexport safe */ _localizationManager__WEBPACK_IMPORTED_MODULE_0__.surveyStrings),
15831
- /* harmony export */ textHelper: () => (/* reexport safe */ _wordcloud_stopwords_index__WEBPACK_IMPORTED_MODULE_29__.textHelper)
17166
+ /* harmony export */ textHelper: () => (/* reexport safe */ _wordcloud_stopwords_index__WEBPACK_IMPORTED_MODULE_30__.textHelper)
15832
17167
  /* harmony export */ });
15833
17168
  /* harmony import */ var _localizationManager__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../localizationManager */ "./src/localizationManager.ts");
15834
17169
  /* harmony import */ var _analytics_localization_farsi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../analytics-localization/farsi */ "./src/analytics-localization/farsi.ts");
@@ -15844,28 +17179,29 @@ __webpack_require__.r(__webpack_exports__);
15844
17179
  /* harmony import */ var _analytics_localization_japanese__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../analytics-localization/japanese */ "./src/analytics-localization/japanese.ts");
15845
17180
  /* harmony import */ var _analytics_localization_polish__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../analytics-localization/polish */ "./src/analytics-localization/polish.ts");
15846
17181
  /* harmony import */ var _analytics_localization_finnish__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../analytics-localization/finnish */ "./src/analytics-localization/finnish.ts");
15847
- /* harmony import */ var _dataProvider__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../dataProvider */ "./src/dataProvider.ts");
15848
- /* harmony import */ var _visualizerFactory__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../visualizerFactory */ "./src/visualizerFactory.ts");
15849
- /* harmony import */ var _selectBase__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../selectBase */ "./src/selectBase.ts");
15850
- /* harmony import */ var _matrix__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../matrix */ "./src/matrix.ts");
15851
- /* harmony import */ var _boolean__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../boolean */ "./src/boolean.ts");
15852
- /* harmony import */ var _histogram__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../histogram */ "./src/histogram.ts");
15853
- /* harmony import */ var _number__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../number */ "./src/number.ts");
15854
- /* harmony import */ var _visualizerBase__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../visualizerBase */ "./src/visualizerBase.ts");
15855
- /* harmony import */ var _visualizationManager__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../visualizationManager */ "./src/visualizationManager.ts");
15856
- /* harmony import */ var _visualizationPanel__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../visualizationPanel */ "./src/visualizationPanel.ts");
15857
- /* harmony import */ var _visualizationPanelDynamic__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../visualizationPanelDynamic */ "./src/visualizationPanelDynamic.ts");
15858
- /* harmony import */ var _visualizationMatrixDynamic__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../visualizationMatrixDynamic */ "./src/visualizationMatrixDynamic.ts");
15859
- /* harmony import */ var _visualizationMatrixDropdown__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../visualizationMatrixDropdown */ "./src/visualizationMatrixDropdown.ts");
15860
- /* harmony import */ var _alternativeVizualizersWrapper__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../alternativeVizualizersWrapper */ "./src/alternativeVizualizersWrapper.ts");
15861
- /* harmony import */ var _wordcloud_wordcloud__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../wordcloud/wordcloud */ "./src/wordcloud/wordcloud.ts");
15862
- /* harmony import */ var _wordcloud_stopwords_index__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../wordcloud/stopwords/index */ "./src/wordcloud/stopwords/index.ts");
15863
- /* harmony import */ var _text__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../text */ "./src/text.ts");
15864
- /* harmony import */ var _statistics_table__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../statistics-table */ "./src/statistics-table.ts");
15865
- /* harmony import */ var _nps__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../nps */ "./src/nps.ts");
15866
- /* harmony import */ var _ranking__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../ranking */ "./src/ranking.ts");
15867
- /* harmony import */ var _pivot__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../pivot */ "./src/pivot.ts");
15868
- /* harmony import */ var _utils_index__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../utils/index */ "./src/utils/index.ts");
17182
+ /* harmony import */ var _analytics_localization_swedish__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../analytics-localization/swedish */ "./src/analytics-localization/swedish.ts");
17183
+ /* harmony import */ var _dataProvider__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../dataProvider */ "./src/dataProvider.ts");
17184
+ /* harmony import */ var _visualizerFactory__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../visualizerFactory */ "./src/visualizerFactory.ts");
17185
+ /* harmony import */ var _selectBase__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../selectBase */ "./src/selectBase.ts");
17186
+ /* harmony import */ var _matrix__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../matrix */ "./src/matrix.ts");
17187
+ /* harmony import */ var _boolean__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../boolean */ "./src/boolean.ts");
17188
+ /* harmony import */ var _histogram__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../histogram */ "./src/histogram.ts");
17189
+ /* harmony import */ var _number__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../number */ "./src/number.ts");
17190
+ /* harmony import */ var _visualizerBase__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../visualizerBase */ "./src/visualizerBase.ts");
17191
+ /* harmony import */ var _visualizationManager__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../visualizationManager */ "./src/visualizationManager.ts");
17192
+ /* harmony import */ var _visualizationPanel__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../visualizationPanel */ "./src/visualizationPanel.ts");
17193
+ /* harmony import */ var _visualizationPanelDynamic__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../visualizationPanelDynamic */ "./src/visualizationPanelDynamic.ts");
17194
+ /* harmony import */ var _visualizationMatrixDynamic__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../visualizationMatrixDynamic */ "./src/visualizationMatrixDynamic.ts");
17195
+ /* harmony import */ var _visualizationMatrixDropdown__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../visualizationMatrixDropdown */ "./src/visualizationMatrixDropdown.ts");
17196
+ /* harmony import */ var _alternativeVizualizersWrapper__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../alternativeVizualizersWrapper */ "./src/alternativeVizualizersWrapper.ts");
17197
+ /* harmony import */ var _wordcloud_wordcloud__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../wordcloud/wordcloud */ "./src/wordcloud/wordcloud.ts");
17198
+ /* harmony import */ var _wordcloud_stopwords_index__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../wordcloud/stopwords/index */ "./src/wordcloud/stopwords/index.ts");
17199
+ /* harmony import */ var _text__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../text */ "./src/text.ts");
17200
+ /* harmony import */ var _statistics_table__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../statistics-table */ "./src/statistics-table.ts");
17201
+ /* harmony import */ var _nps__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../nps */ "./src/nps.ts");
17202
+ /* harmony import */ var _ranking__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../ranking */ "./src/ranking.ts");
17203
+ /* harmony import */ var _pivot__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ../pivot */ "./src/pivot.ts");
17204
+ /* harmony import */ var _utils_index__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../utils/index */ "./src/utils/index.ts");
15869
17205
 
15870
17206
  //localization
15871
17207
 
@@ -15902,6 +17238,7 @@ __webpack_require__.r(__webpack_exports__);
15902
17238
 
15903
17239
 
15904
17240
 
17241
+
15905
17242
 
15906
17243
 
15907
17244
  })();