survey-analytics 2.5.13 → 3.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm/shared.mjs +754 -3179
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +9687 -8187
- package/fesm/shared2.mjs.map +1 -1
- package/fesm/shared3.mjs +4982 -0
- package/fesm/shared3.mjs.map +1 -0
- package/fesm/shared4.mjs +42 -0
- package/fesm/shared4.mjs.map +1 -0
- package/fesm/survey.analytics.apexcharts.mjs +1061 -0
- package/fesm/survey.analytics.apexcharts.mjs.map +1 -0
- package/fesm/survey.analytics.core.mjs +3 -3
- package/fesm/survey.analytics.mjs +7 -755
- package/fesm/survey.analytics.mjs.map +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.mongo.mjs.map +1 -1
- package/fesm/survey.analytics.plotly.mjs +13 -0
- package/fesm/survey.analytics.plotly.mjs.map +1 -0
- package/fesm/survey.analytics.tabulator.mjs +343 -181
- package/fesm/survey.analytics.tabulator.mjs.map +1 -1
- package/fesm/themes/index.mjs +1942 -0
- package/fesm/themes/index.mjs.map +1 -0
- package/package.json +38 -11
- package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
- package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/english.d.ts +130 -0
- package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -0
- package/survey-analytics-plotly.types/boolean.d.ts +15 -0
- package/survey-analytics-plotly.types/card.d.ts +29 -0
- package/survey-analytics-plotly.types/chartConfig.d.ts +9 -0
- package/survey-analytics-plotly.types/config.d.ts +35 -0
- package/survey-analytics-plotly.types/dashboard.d.ts +51 -0
- package/survey-analytics-plotly.types/dataProvider.d.ts +69 -0
- package/survey-analytics-plotly.types/entries/plotly.d.ts +2 -0
- package/survey-analytics-plotly.types/entries/summary.core.d.ts +44 -0
- package/survey-analytics-plotly.types/filterInfo.d.ts +11 -0
- package/survey-analytics-plotly.types/histogram.d.ts +102 -0
- package/{survey-analytics.types/layoutEngine.d.ts → survey-analytics-plotly.types/layout-engine.d.ts} +0 -12
- package/survey-analytics-plotly.types/localizationManager.d.ts +152 -0
- package/survey-analytics-plotly.types/matrix.d.ts +17 -0
- package/survey-analytics-plotly.types/matrixDropdownGrouped.d.ts +15 -0
- package/survey-analytics-plotly.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics-plotly.types/nps.d.ts +37 -0
- package/survey-analytics-plotly.types/number.d.ts +27 -0
- package/survey-analytics-plotly.types/pivot.d.ts +59 -0
- package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/chart-adapter.d.ts +11 -2
- package/survey-analytics-plotly.types/plotly/setup.d.ts +150 -0
- package/survey-analytics-plotly.types/ranking.d.ts +12 -0
- package/survey-analytics-plotly.types/selectBase.d.ts +116 -0
- package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
- package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
- package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
- package/survey-analytics-plotly.types/text.d.ts +25 -0
- package/survey-analytics-plotly.types/theme.d.ts +50 -0
- package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics-plotly.types/utils/index.d.ts +62 -0
- package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
- package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
- package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationManager.d.ts +60 -0
- package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
- package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
- package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
- package/survey-analytics-plotly.types/visualizerBase.d.ts +422 -0
- package/survey-analytics-plotly.types/visualizerDescription.d.ts +19 -0
- package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
- package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +28 -0
- package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
- package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +28 -0
- package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
- package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
- package/survey-analytics-tabulator.types/tables/tabulator.d.ts +10 -1
- package/survey-analytics-tabulator.types/theme.d.ts +50 -0
- package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics-tabulator.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics-tabulator.types/utils/index.d.ts +25 -2
- package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
- package/survey-analytics.types/analytics-localization/english.d.ts +28 -0
- package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
- package/survey-analytics.types/apexcharts/index.d.ts +2 -0
- package/survey-analytics.types/apexcharts/setup.d.ts +185 -0
- package/survey-analytics.types/boolean.d.ts +1 -1
- package/survey-analytics.types/card.d.ts +29 -0
- package/survey-analytics.types/chartConfig.d.ts +9 -0
- package/survey-analytics.types/config.d.ts +1 -33
- package/survey-analytics.types/dashboard.d.ts +51 -0
- package/survey-analytics.types/dataProvider.d.ts +17 -0
- package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
- package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
- package/survey-analytics.types/entries/summary.core.d.ts +6 -0
- package/survey-analytics.types/histogram.d.ts +29 -13
- package/survey-analytics.types/layout-engine.d.ts +29 -0
- package/survey-analytics.types/localizationManager.d.ts +28 -0
- package/survey-analytics.types/matrix.d.ts +3 -2
- package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
- package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics.types/nps.d.ts +5 -10
- package/survey-analytics.types/number.d.ts +8 -7
- package/survey-analytics.types/pivot.d.ts +25 -35
- package/survey-analytics.types/ranking.d.ts +3 -2
- package/survey-analytics.types/selectBase.d.ts +12 -15
- package/survey-analytics.types/statisticCalculators.d.ts +8 -13
- package/survey-analytics.types/statistics-table.d.ts +2 -2
- package/survey-analytics.types/text.d.ts +4 -3
- package/survey-analytics.types/theme.d.ts +50 -0
- package/survey-analytics.types/themes/default-light.d.ts +965 -0
- package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics.types/utils/index.d.ts +25 -2
- package/survey-analytics.types/utils/toggle.d.ts +17 -0
- package/survey-analytics.types/utils/utils.d.ts +9 -0
- package/survey-analytics.types/visualizationComposite.d.ts +1 -1
- package/survey-analytics.types/visualizationManager.d.ts +5 -5
- package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
- package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
- package/survey-analytics.types/visualizationPanel.d.ts +20 -3
- package/survey-analytics.types/visualizationPanelDynamic.d.ts +2 -1
- package/survey-analytics.types/visualizerBase.d.ts +65 -10
- package/survey-analytics.types/visualizerDescription.d.ts +19 -0
- package/survey-analytics.types/visualizerFactory.d.ts +11 -2
- package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
- package/survey.analytics.core.css +1131 -99
- package/survey.analytics.core.css.map +1 -1
- package/survey.analytics.core.js +5063 -1002
- package/survey.analytics.core.js.map +1 -1
- package/survey.analytics.core.min.css +9 -6
- package/survey.analytics.core.min.js +1 -1
- package/survey.analytics.core.min.js.LICENSE.txt +1 -1
- package/survey.analytics.css +1494 -103
- package/survey.analytics.css.map +1 -1
- package/survey.analytics.d.ts +1 -2
- package/survey.analytics.fontless.css +1629 -0
- package/survey.analytics.fontless.css.map +1 -0
- package/survey.analytics.fontless.min.css +14 -0
- package/survey.analytics.js +7427 -3055
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +11 -6
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.mongo.js +2 -2
- package/survey.analytics.mongo.js.map +1 -1
- package/survey.analytics.mongo.min.js +1 -1
- package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
- package/survey.analytics.plotly.css +1714 -0
- package/survey.analytics.plotly.css.map +1 -0
- package/survey.analytics.plotly.d.ts +1 -0
- package/survey.analytics.plotly.fontless.css +1492 -0
- package/survey.analytics.plotly.fontless.css.map +1 -0
- package/survey.analytics.plotly.fontless.min.css +13 -0
- package/survey.analytics.plotly.js +23829 -0
- package/survey.analytics.plotly.js.map +1 -0
- package/survey.analytics.plotly.min.css +14 -0
- package/survey.analytics.plotly.min.js +2 -0
- package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
- package/survey.analytics.tabulator.css +992 -132
- package/survey.analytics.tabulator.css.map +1 -1
- package/survey.analytics.tabulator.fontless.css +1121 -0
- package/survey.analytics.tabulator.fontless.css.map +1 -0
- package/survey.analytics.tabulator.fontless.min.css +6 -0
- package/survey.analytics.tabulator.js +2634 -251
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +3 -2
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
- package/themes/default-dark.js +1032 -0
- package/themes/default-dark.js.map +1 -0
- package/themes/default-dark.min.js +2 -0
- package/themes/default-dark.min.js.LICENSE.txt +5 -0
- package/themes/default-light.js +1032 -0
- package/themes/default-light.js.map +1 -0
- package/themes/default-light.min.js +2 -0
- package/themes/default-light.min.js.LICENSE.txt +5 -0
- package/themes/index.js +2063 -0
- package/themes/index.js.map +1 -0
- package/themes/index.min.js +2 -0
- package/themes/index.min.js.LICENSE.txt +5 -0
- package/themes/themes/default-dark.d.ts +965 -0
- package/themes/themes/default-light.d.ts +965 -0
- package/themes/themes/index.d.ts +1934 -0
- package/themes/utils/helpers.d.ts +8 -0
- package/survey-analytics.types/plotly/setup.d.ts +0 -32
- /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var finnishStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var frenchStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var germanStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var italianStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var japaneseStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var norwegianStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare var plStrings: {
|
|
2
|
+
groupButton: string;
|
|
3
|
+
ungroupButton: string;
|
|
4
|
+
selectButton: string;
|
|
5
|
+
hideColumn: string;
|
|
6
|
+
showColumn: string;
|
|
7
|
+
makePrivateColumn: string;
|
|
8
|
+
makePublicColumn: string;
|
|
9
|
+
moveToDetail: string;
|
|
10
|
+
showAsColumn: string;
|
|
11
|
+
filterPlaceholder: string;
|
|
12
|
+
removeRows: string;
|
|
13
|
+
showLabel: string;
|
|
14
|
+
entriesLabel: string;
|
|
15
|
+
visualizer_text: string;
|
|
16
|
+
visualizer_wordcloud: string;
|
|
17
|
+
visualizer_histogram: string;
|
|
18
|
+
visualizer_number: string;
|
|
19
|
+
visualizer_choices: string;
|
|
20
|
+
visualizer_selectBase: string;
|
|
21
|
+
visualizer_matrix: string;
|
|
22
|
+
chartType_bar: string;
|
|
23
|
+
chartType_vbar: string;
|
|
24
|
+
chartType_stackedbar: string;
|
|
25
|
+
chartType_doughnut: string;
|
|
26
|
+
chartType_pie: string;
|
|
27
|
+
chartType_scatter: string;
|
|
28
|
+
chartType_gauge: string;
|
|
29
|
+
chartType_bullet: string;
|
|
30
|
+
chartType_line: string;
|
|
31
|
+
chartType_radar: string;
|
|
32
|
+
hideButton: string;
|
|
33
|
+
makePrivateButton: string;
|
|
34
|
+
makePublicButton: string;
|
|
35
|
+
showButton: string;
|
|
36
|
+
filter: string;
|
|
37
|
+
resetFilter: string;
|
|
38
|
+
changeLocale: string;
|
|
39
|
+
clearButton: string;
|
|
40
|
+
addElement: string;
|
|
41
|
+
defaultOrder: string;
|
|
42
|
+
ascOrder: string;
|
|
43
|
+
descOrder: string;
|
|
44
|
+
showMinorColumns: string;
|
|
45
|
+
actionsColumn: string;
|
|
46
|
+
otherCommentTitle: string;
|
|
47
|
+
showPercentages: string;
|
|
48
|
+
hidePercentages: string;
|
|
49
|
+
pdfDownloadCaption: string;
|
|
50
|
+
xlsxDownloadCaption: string;
|
|
51
|
+
csvDownloadCaption: string;
|
|
52
|
+
saveDiagramAsPNG: string;
|
|
53
|
+
hideEmptyAnswers: string;
|
|
54
|
+
showEmptyAnswers: string;
|
|
55
|
+
"topNValueText-1": string;
|
|
56
|
+
topNValueText5: string;
|
|
57
|
+
topNValueText10: string;
|
|
58
|
+
topNValueText20: string;
|
|
59
|
+
hideMissingAnswers: string;
|
|
60
|
+
showMissingAnswers: string;
|
|
61
|
+
missingAnswersLabel: string;
|
|
62
|
+
noVisualizerForQuestion: string;
|
|
63
|
+
noResults: string;
|
|
64
|
+
showPerValues: string;
|
|
65
|
+
showPerColumns: string;
|
|
66
|
+
answer: string;
|
|
67
|
+
correctAnswer: string;
|
|
68
|
+
percent: string;
|
|
69
|
+
percentage: string;
|
|
70
|
+
statistics_chart: string;
|
|
71
|
+
responses: string;
|
|
72
|
+
visualizer_nps: string;
|
|
73
|
+
visualizer_boolean: string;
|
|
74
|
+
visualizer_options: string;
|
|
75
|
+
npsScore: string;
|
|
76
|
+
npsPromoters: string;
|
|
77
|
+
npsPassives: string;
|
|
78
|
+
npsDetractors: string;
|
|
79
|
+
axisXSelectorTitle: string;
|
|
80
|
+
axisYSelectorTitle: string;
|
|
81
|
+
axisXAlternativeSelectorTitle: string;
|
|
82
|
+
axisYAlternativeSelectorTitle: string;
|
|
83
|
+
notSelected: string;
|
|
84
|
+
intervalMode_default: string;
|
|
85
|
+
intervalMode_decades: string;
|
|
86
|
+
intervalMode_years: string;
|
|
87
|
+
intervalMode_quarters: string;
|
|
88
|
+
intervalMode_months: string;
|
|
89
|
+
intervalMode_days: string;
|
|
90
|
+
intervalMode_custom: string;
|
|
91
|
+
intervalMode_auto: string;
|
|
92
|
+
intervalModeTitle: string;
|
|
93
|
+
noRunningTotals: string;
|
|
94
|
+
runningTotals: string;
|
|
95
|
+
groupDateSeries: string;
|
|
96
|
+
ungroupDateSeries: string;
|
|
97
|
+
noneAggregateText: string;
|
|
98
|
+
selectAggregateText: string;
|
|
99
|
+
groupedYearsAxisTitle: string;
|
|
100
|
+
};
|