sea-chart 0.0.1-beta

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 (213) hide show
  1. package/README.md +120 -0
  2. package/dist/assets/icons/area-chart.svg +10 -0
  3. package/dist/assets/icons/bar-chart.svg +12 -0
  4. package/dist/assets/icons/card.svg +22 -0
  5. package/dist/assets/icons/combination-chart.svg +17 -0
  6. package/dist/assets/icons/dtable-logo.svg +16 -0
  7. package/dist/assets/icons/facet-chart.svg +12 -0
  8. package/dist/assets/icons/gauge.svg +18 -0
  9. package/dist/assets/icons/heat-map.svg +14 -0
  10. package/dist/assets/icons/histogram.svg +12 -0
  11. package/dist/assets/icons/line-chart.svg +12 -0
  12. package/dist/assets/icons/map.svg +20 -0
  13. package/dist/assets/icons/pie-chart.svg +11 -0
  14. package/dist/assets/icons/rectangular-tree-diagram.svg +10 -0
  15. package/dist/assets/icons/scatter-chart.svg +15 -0
  16. package/dist/assets/icons/type-change.svg +17 -0
  17. package/dist/assets/img/area-chart.png +0 -0
  18. package/dist/assets/img/area-group-chart.png +0 -0
  19. package/dist/assets/img/bar-group.png +0 -0
  20. package/dist/assets/img/bar-stack.png +0 -0
  21. package/dist/assets/img/bar.png +0 -0
  22. package/dist/assets/img/combination-chart.png +0 -0
  23. package/dist/assets/img/compared-chart.png +0 -0
  24. package/dist/assets/img/completeness-chart.png +0 -0
  25. package/dist/assets/img/custom-bar.png +0 -0
  26. package/dist/assets/img/dashboard-chart.png +0 -0
  27. package/dist/assets/img/group-completeness-chart.png +0 -0
  28. package/dist/assets/img/group_line.png +0 -0
  29. package/dist/assets/img/heat-map.png +0 -0
  30. package/dist/assets/img/horizontal-bar.png +0 -0
  31. package/dist/assets/img/horizontal-group-bar.png +0 -0
  32. package/dist/assets/img/line.png +0 -0
  33. package/dist/assets/img/map-bubble.png +0 -0
  34. package/dist/assets/img/map.png +0 -0
  35. package/dist/assets/img/mirror.png +0 -0
  36. package/dist/assets/img/number-card.png +0 -0
  37. package/dist/assets/img/pie.png +0 -0
  38. package/dist/assets/img/pivot-table.png +0 -0
  39. package/dist/assets/img/ring.png +0 -0
  40. package/dist/assets/img/scatter.png +0 -0
  41. package/dist/assets/img/stacked-horizontal-bar.png +0 -0
  42. package/dist/assets/img/treemap.png +0 -0
  43. package/dist/assets/img/trend-chart.png +0 -0
  44. package/dist/assets/img/world-map-bubble.png +0 -0
  45. package/dist/assets/img/world-map.png +0 -0
  46. package/dist/components/collaborator/index.js +26 -0
  47. package/dist/components/icon/index.css +5 -0
  48. package/dist/components/icon/index.js +24 -0
  49. package/dist/components/index.js +8 -0
  50. package/dist/components/loading/index.css +54 -0
  51. package/dist/components/loading/index.js +12 -0
  52. package/dist/components/number-input/index.js +31 -0
  53. package/dist/components/pixel-editor/index.css +29 -0
  54. package/dist/components/pixel-editor/index.js +38 -0
  55. package/dist/components/select-group/index.css +67 -0
  56. package/dist/components/select-group/index.js +52 -0
  57. package/dist/components/types-dialog/index.css +97 -0
  58. package/dist/components/types-dialog/index.js +116 -0
  59. package/dist/constants/geolocation.js +11 -0
  60. package/dist/constants/index.js +184 -0
  61. package/dist/constants/model.js +187 -0
  62. package/dist/constants/style.js +15 -0
  63. package/dist/constants/type-image.js +59 -0
  64. package/dist/constants/type.js +124 -0
  65. package/dist/context.js +33 -0
  66. package/dist/editor/index.css +0 -0
  67. package/dist/editor/index.js +36 -0
  68. package/dist/index.js +6 -0
  69. package/dist/intl.js +37 -0
  70. package/dist/locale/index.js +18 -0
  71. package/dist/locale/lang/de.js +141 -0
  72. package/dist/locale/lang/en.js +143 -0
  73. package/dist/locale/lang/es.js +141 -0
  74. package/dist/locale/lang/fr.js +141 -0
  75. package/dist/locale/lang/pt.js +141 -0
  76. package/dist/locale/lang/ru.js +141 -0
  77. package/dist/locale/lang/zh_CN.js +143 -0
  78. package/dist/model/area-group.js +41 -0
  79. package/dist/model/area.js +32 -0
  80. package/dist/model/bar-group.js +44 -0
  81. package/dist/model/bar-stack.js +41 -0
  82. package/dist/model/bar.js +38 -0
  83. package/dist/model/base-model.js +9 -0
  84. package/dist/model/basic-number-card.js +22 -0
  85. package/dist/model/chart.js +23 -0
  86. package/dist/model/combination.js +38 -0
  87. package/dist/model/compare-bar.js +39 -0
  88. package/dist/model/completeness-group.js +24 -0
  89. package/dist/model/completeness.js +18 -0
  90. package/dist/model/dashboard.js +16 -0
  91. package/dist/model/generic-model.js +224 -0
  92. package/dist/model/heat-map.js +23 -0
  93. package/dist/model/horizontal-bar.js +38 -0
  94. package/dist/model/horizontal-group-bar.js +43 -0
  95. package/dist/model/index.js +63 -0
  96. package/dist/model/line-group.js +44 -0
  97. package/dist/model/line.js +38 -0
  98. package/dist/model/map-bubble.js +27 -0
  99. package/dist/model/map.js +27 -0
  100. package/dist/model/mirror.js +26 -0
  101. package/dist/model/pie.js +26 -0
  102. package/dist/model/ring.js +26 -0
  103. package/dist/model/scatter.js +19 -0
  104. package/dist/model/stacked-horizontal-bar.js +32 -0
  105. package/dist/model/table.js +23 -0
  106. package/dist/model/tree-map.js +20 -0
  107. package/dist/model/trend.js +24 -0
  108. package/dist/model/user.js +15 -0
  109. package/dist/model/world-map-bubble.js +26 -0
  110. package/dist/model/world-map.js +26 -0
  111. package/dist/settings/advance-bar-settings/data-settings.js +143 -0
  112. package/dist/settings/advance-bar-settings/index.js +3 -0
  113. package/dist/settings/advance-bar-settings/style-settings.js +161 -0
  114. package/dist/settings/bar-settings/data-settings.js +162 -0
  115. package/dist/settings/bar-settings/index.js +3 -0
  116. package/dist/settings/bar-settings/style-settings.js +179 -0
  117. package/dist/settings/basic-number-card/data-settings.js +126 -0
  118. package/dist/settings/basic-number-card/index.js +3 -0
  119. package/dist/settings/basic-number-card/style-settings.js +42 -0
  120. package/dist/settings/combination-settings/data-settings.js +279 -0
  121. package/dist/settings/combination-settings/index.js +3 -0
  122. package/dist/settings/combination-settings/style-settings.js +174 -0
  123. package/dist/settings/dashboard-settings/data-settings.js +179 -0
  124. package/dist/settings/dashboard-settings/index.js +2 -0
  125. package/dist/settings/data-settings.js +73 -0
  126. package/dist/settings/horizontal-bar-settings/data-settings.js +55 -0
  127. package/dist/settings/horizontal-bar-settings/index.js +3 -0
  128. package/dist/settings/horizontal-bar-settings/style-settings.js +46 -0
  129. package/dist/settings/index.css +85 -0
  130. package/dist/settings/index.js +76 -0
  131. package/dist/settings/pie-settings/data-settings.js +146 -0
  132. package/dist/settings/pie-settings/index.js +3 -0
  133. package/dist/settings/pie-settings/style-settings.js +141 -0
  134. package/dist/settings/style-settings.js +118 -0
  135. package/dist/settings/table-settings/data-settings.js +549 -0
  136. package/dist/settings/table-settings/index.js +2 -0
  137. package/dist/settings/time-comparison-settings/data-settings.js +172 -0
  138. package/dist/settings/time-comparison-settings/index.js +3 -0
  139. package/dist/settings/time-comparison-settings/style-settings.js +213 -0
  140. package/dist/settings/widgets/basic-summary/index.css +12 -0
  141. package/dist/settings/widgets/basic-summary/index.js +176 -0
  142. package/dist/settings/widgets/chart-type/index.css +31 -0
  143. package/dist/settings/widgets/chart-type/index.js +59 -0
  144. package/dist/settings/widgets/common-data-settings.js +48 -0
  145. package/dist/settings/widgets/data-filter/index.css +17 -0
  146. package/dist/settings/widgets/data-filter/index.js +89 -0
  147. package/dist/settings/widgets/data-sort.js +44 -0
  148. package/dist/settings/widgets/date-summary-item.js +111 -0
  149. package/dist/settings/widgets/display-values-settings/index.css +13 -0
  150. package/dist/settings/widgets/display-values-settings/index.js +42 -0
  151. package/dist/settings/widgets/divider/index.css +4 -0
  152. package/dist/settings/widgets/divider/index.js +12 -0
  153. package/dist/settings/widgets/font-settings/font-size-settings.js +33 -0
  154. package/dist/settings/widgets/font-settings/font-weight-settings.js +44 -0
  155. package/dist/settings/widgets/font-settings/index.js +3 -0
  156. package/dist/settings/widgets/group-by.js +160 -0
  157. package/dist/settings/widgets/label-color.js +30 -0
  158. package/dist/settings/widgets/min-max-setting.js +52 -0
  159. package/dist/settings/widgets/mininum-slice-percent.js +63 -0
  160. package/dist/settings/widgets/numeric-summary-item.js +90 -0
  161. package/dist/settings/widgets/select-table/index.css +0 -0
  162. package/dist/settings/widgets/select-table/index.js +38 -0
  163. package/dist/settings/widgets/stack.js +50 -0
  164. package/dist/settings/widgets/summary-method-setting.js +66 -0
  165. package/dist/settings/widgets/summary-settings.js +411 -0
  166. package/dist/settings/widgets/switch/index.css +37 -0
  167. package/dist/settings/widgets/switch/index.js +24 -0
  168. package/dist/settings/widgets/text-horizontal-settings.js +25 -0
  169. package/dist/settings/widgets/time-picker.js +173 -0
  170. package/dist/settings/widgets/title-settings/index.js +60 -0
  171. package/dist/settings/widgets/title-settings/title-text.js +25 -0
  172. package/dist/settings/widgets/x-axios.js +0 -0
  173. package/dist/settings/widgets/y-axis-group-settings.js +438 -0
  174. package/dist/utils/cell-format-utils.js +42 -0
  175. package/dist/utils/chart-data-sql.js +606 -0
  176. package/dist/utils/chart-utils.js +1800 -0
  177. package/dist/utils/chart.js +6 -0
  178. package/dist/utils/collaborator-utils.js +39 -0
  179. package/dist/utils/column-2-sql-column.js +551 -0
  180. package/dist/utils/column-utils.js +208 -0
  181. package/dist/utils/custom-g2.js +612 -0
  182. package/dist/utils/date-translate.js +66 -0
  183. package/dist/utils/index.js +48 -0
  184. package/dist/utils/key-generator.js +13 -0
  185. package/dist/utils/object-utils.js +45 -0
  186. package/dist/utils/options-utils.js +60 -0
  187. package/dist/view/index.css +53 -0
  188. package/dist/view/index.js +189 -0
  189. package/dist/view/title/index.css +3 -0
  190. package/dist/view/title/index.js +46 -0
  191. package/dist/view/wrapper/area.js +150 -0
  192. package/dist/view/wrapper/bar-group.js +148 -0
  193. package/dist/view/wrapper/bar.js +138 -0
  194. package/dist/view/wrapper/basic-number-card.js +127 -0
  195. package/dist/view/wrapper/chart-component.js +261 -0
  196. package/dist/view/wrapper/combination.js +399 -0
  197. package/dist/view/wrapper/dashboard.js +164 -0
  198. package/dist/view/wrapper/horizontal-bar-group.js +149 -0
  199. package/dist/view/wrapper/horizontal-bar.js +140 -0
  200. package/dist/view/wrapper/horizontal-component.js +78 -0
  201. package/dist/view/wrapper/index.js +200 -0
  202. package/dist/view/wrapper/line-group.js +145 -0
  203. package/dist/view/wrapper/line.js +157 -0
  204. package/dist/view/wrapper/pie.js +185 -0
  205. package/dist/view/wrapper/ring.js +264 -0
  206. package/dist/view/wrapper/table/index.css +103 -0
  207. package/dist/view/wrapper/table/index.js +31 -0
  208. package/dist/view/wrapper/table/one-dimension-table-no-numeric-columns.js +144 -0
  209. package/dist/view/wrapper/table/one-dimension-table-with-numeric-columns.js +198 -0
  210. package/dist/view/wrapper/table/pivot-table-display-name.js +247 -0
  211. package/dist/view/wrapper/table/two-dimension-table.js +249 -0
  212. package/dist/view/wrapper/treemap.js +186 -0
  213. package/package.json +151 -0
@@ -0,0 +1,143 @@
1
+ /* eslint-disable */
2
+ const en = {
3
+ 'Empty': 'Empty',
4
+ 'Amount': 'Amount',
5
+ 'Counting': 'Count',
6
+ 'Summarize_a_field': 'Summarize a field',
7
+ 'By_day': 'By day',
8
+ 'By_week': 'By week',
9
+ 'By_month': 'By month',
10
+ 'By_quarter': 'By quarter',
11
+ 'By_year': 'By year',
12
+ 'Sum': 'Sum',
13
+ "Avg": "Average",
14
+ "Mdn": "Median",
15
+ 'Max': 'Max',
16
+ 'Min': 'Min',
17
+ 'Mean': 'Mean',
18
+ 'Number_of_distinct_values': 'Number of distinct values',
19
+ 'By_province': 'By province',
20
+ 'By_city': 'By city',
21
+ 'By_district': 'By district',
22
+ 'Row_count': 'Row count',
23
+ 'Left': 'Left',
24
+ 'Right': 'Right',
25
+ 'Center': 'Center',
26
+ 'Top': 'Top',
27
+ 'Bottom': 'Bottom',
28
+ 'Others': 'Others',
29
+ 'Total': 'Total',
30
+ 'There_are_too_many_statistics_entries_to_display': 'here are too many statistics entries to display.',
31
+ 'Data_settings': 'Data settings',
32
+ 'Style_settings': 'Style settings',
33
+ 'Include_empty': 'Include empty',
34
+ 'X_axis': 'X axis',
35
+ 'Y_axis': 'Y axis',
36
+ 'Display_value': 'Display values on data points',
37
+ 'Auto_range': 'Auto range',
38
+ 'Select_a_column': 'Select a column',
39
+ "Summary_method": 'Summary method',
40
+ 'Label': '',
41
+ 'Y-axis(left side)': 'Y-axis (left side)',
42
+ 'Y-axis(right side)': 'Y-axis (right side)',
43
+ 'Display_title': 'Display title',
44
+ 'Current_value_field': 'Current value field',
45
+ 'Total_value_field': 'Total value field',
46
+ 'Group_by': 'Group by',
47
+ 'Display_legend': 'Display legend',
48
+ 'Display_label': 'Display label',
49
+ 'Label_position': 'Label position',
50
+ 'Label_format': 'Label format',
51
+ 'Label_font_size': 'Label font size',
52
+ "Count_the_number_of_records_in_each_group": "Count the number of records in each group",
53
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_a_field": "Compute the sum, maximum, minimum or mean value of records in each group by a field",
54
+ "Group_the_records_according_to_the_vertical_axis_and_count_the_records_in_each_group": "Group the records according to the vertical axis, and count the records in each group",
55
+ "Group_the_records_according_to_the_vertical_axis_and_compute_the_sum_maximum_or_minimum_of_records_in_each_group_by_a_field": "Group the records according to the vertical axis, and compute the sum, maximum, minimum or mean of records in each group by a field",
56
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_multiple_fields": "Compute the sum, maximum, minimum or mean value of records in each group by multiple fields",
57
+ "Count_the_records": "Group the records according to the X axis, and count the records in every group",
58
+ "Compute_sum_max_min": "Group the records according to the X axis, and compute the sum, maximum, minimum or mean by a field in the records",
59
+ 'Summarize_multiple_fields': 'Summarize multiple fields',
60
+ 'Add_new_field': 'Add new field',
61
+ 'Row_grouping_field': 'Row grouping field',
62
+ 'Column_grouping_field': 'Column grouping field',
63
+ 'Date_range': 'Date range',
64
+ 'Compare_to_date_range': 'Compare to date range',
65
+ 'Display_increase': 'Display increase',
66
+ 'Display_percentage_increase': 'Display percentage increase',
67
+ 'Color': 'Color',
68
+ 'Data_sort': 'Data sort',
69
+ 'Not_sorted': 'Not sorted',
70
+ 'Ascending': 'Ascending',
71
+ 'Descending': 'Descending',
72
+ 'Numeric_field': 'Numeric field',
73
+ 'Summary_field': 'Summary field',
74
+ 'Summary_type': "Summary type",
75
+ 'No_column': 'No column',
76
+ 'Display_mode': 'Display mode',
77
+ 'Stack': 'Stack',
78
+ 'Location_field': 'Location field',
79
+ 'Time_field': 'Time field',
80
+ "Calculate_the_number_of_records_in_two_time_periods": "Calculate the number of records in two time periods",
81
+ "Use_a_field_to_calculate_the_sum_maximum_or_minimum_value_of_records_in_two_time_periods": "Use a field to calculate the sum maximum or minimum value of records in two time periods",
82
+ // 'Count_by_var': 'Count_by_var',
83
+ // 'Compute_sum_max_min_by_var': 'Compute_sum_max_min_by_var',
84
+ 'No_options': 'No options',
85
+ 'Text_horizontal_alignment': 'Text horizontal alignment',
86
+ 'Please_input_date': 'Please input date',
87
+ 'Filter': 'Filter',
88
+ '1 Filter': '1 filter',
89
+ 'Filters': 'filters',
90
+ 'Font_size': 'Font size',
91
+ 'Font_weight': 'Font weight',
92
+ 'Table': 'Table',
93
+ 'Chart_type': 'Chart type',
94
+ "Histogram": "Histogram",
95
+ "Basic_histogram": "Basic histogram",
96
+ "Grouped_histogram": "Grouped histogram",
97
+ "Stacked_histogram": "Stacked histogram",
98
+ "Time_comparison_histogram": "Time comparison histogram",
99
+ "Bar_chart": "Bar chart",
100
+ "Basic_bar_chart": "Basic bar chart",
101
+ "Grouped_bar_chart": "Grouped bar chart",
102
+ "Stacked_bar_chart": "Stacked bar chart",
103
+ "Completeness": "Completeness chart",
104
+ "Grouped_completeness": "Grouped completeness chart",
105
+ "Line_chart": "Line chart",
106
+ "Basic_line_chart": "Basic line chart",
107
+ "Grouped_line_chart": "Grouped line chart",
108
+ "Area": "Area",
109
+ "Grouped_area": "Grouped area",
110
+ "Pie_chart": "Pie chart",
111
+ "Basic_pie_chart": "Basic pie chart",
112
+ "Ring_chart": "Ring chart",
113
+ "Scatter": "Scatter chart",
114
+ "Combination": "Combination chart",
115
+ "Map": "Map",
116
+ "World_map": "World map",
117
+ "World_map_bubble": "World map(bubble)",
118
+ "Heat_map": "Heat map",
119
+ "Facet_chart": "Facet chart",
120
+ "Mirror_chart": "Mirror chart",
121
+ "Card": "Card",
122
+ "Basic_number_card": "Basic number card",
123
+ "Trend": "Trend chart",
124
+ "Gauge": "Gauge",
125
+ 'Tree_map': 'Tree map',
126
+ 'Pivot_table': 'Pivot table',
127
+ 'Title': 'Title',
128
+ 'Edit_type': 'Edit type',
129
+ 'Cancel': 'Cancel',
130
+ 'Submit': 'Submit',
131
+ 'There_are_no_statistic_results_yet': 'There are no statistic results yet',
132
+ 'Year': 'Year',
133
+ 'Month': 'Month',
134
+ 'Day': 'Day',
135
+ 'Hour': 'Hour',
136
+ 'Minute': 'Minute',
137
+ 'Done': 'Done',
138
+ 'Internal_server_error': 'Internal server error',
139
+ 'Network_error': 'Network error',
140
+ 'There_are_some_problems_with_the_filters': 'There are some problems with the filters.',
141
+ 'Please_complete_the_chart_configuration_first': 'Please complete the chart configuration first'
142
+ };
143
+ export default en;
@@ -0,0 +1,141 @@
1
+ /* eslint-disable */
2
+ const es = {
3
+ 'Empty': 'Empty',
4
+ 'Amount': 'Amount',
5
+ 'Counting': 'Count',
6
+ 'Summarize_a_field': 'Summarize a field',
7
+ 'By_day': 'By day',
8
+ 'By_week': 'By week',
9
+ 'By_month': 'By month',
10
+ 'By_quarter': 'By quarter',
11
+ 'By_year': 'By year',
12
+ 'Sum': 'Sum',
13
+ "Avg": "Average",
14
+ "Mdn": "Median",
15
+ 'Max': 'Max',
16
+ 'Min': 'Min',
17
+ 'Mean': 'Mean',
18
+ 'Number_of_distinct_values': 'Number of distinct values',
19
+ 'By_province': 'By province',
20
+ 'By_city': 'By city',
21
+ 'By_district': 'By district',
22
+ 'Row_count': 'Row count',
23
+ 'Left': 'Left',
24
+ 'Right': 'Right',
25
+ 'Center': 'Center',
26
+ 'Top': 'Top',
27
+ 'Bottom': 'Bottom',
28
+ 'Others': 'Others',
29
+ 'Total': 'Total',
30
+ 'There_are_too_many_statistics_entries_to_display': 'here are too many statistics entries to display.',
31
+ 'Data_settings': 'Data settings',
32
+ 'Style_settings': 'Style settings',
33
+ 'Include_empty': 'Include empty',
34
+ 'X_axis': 'X axis',
35
+ 'Y_axis': 'Y axis',
36
+ 'Display_value': 'Display values on data points',
37
+ 'Auto_range': 'Auto range',
38
+ 'Select_a_column': 'Select a column',
39
+ "Summary_method": 'Summary method',
40
+ 'Label': '',
41
+ 'Y-axis(left side)': 'Y-axis (left side)',
42
+ 'Y-axis(right side)': 'Y-axis (right side)',
43
+ 'Display_title': 'Display title',
44
+ 'Current_value_field': 'Current value field',
45
+ 'Total_value_field': 'Total value field',
46
+ 'Group_by': 'Group by',
47
+ 'Display_legend': 'Display legend',
48
+ 'Display_label': 'Display label',
49
+ 'Label_position': 'Label position',
50
+ 'Label_format': 'Label format',
51
+ 'Label_font_size': 'Label font size',
52
+ "Count_the_number_of_records_in_each_group": "Count the number of records in each group",
53
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_a_field": "Compute the sum, maximum, minimum or mean value of records in each group by a field",
54
+ "Group_the_records_according_to_the_vertical_axis_and_count_the_records_in_each_group": "Group the records according to the vertical axis, and count the records in each group",
55
+ "Group_the_records_according_to_the_vertical_axis_and_compute_the_sum_maximum_or_minimum_of_records_in_each_group_by_a_field": "Group the records according to the vertical axis, and compute the sum, maximum, minimum or mean of records in each group by a field",
56
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_multiple_fields": "Compute the sum, maximum, minimum or mean value of records in each group by multiple fields",
57
+ "Count_the_records": "Group the records according to the X axis, and count the records in every group",
58
+ "Compute_sum_max_min": "Group the records according to the X axis, and compute the sum, maximum, minimum or mean by a field in the records",
59
+ 'Summarize_multiple_fields': 'Summarize multiple fields',
60
+ 'Add_new_field': 'Add new field',
61
+ 'Row_grouping_field': 'Row grouping field',
62
+ 'Column_grouping_field': 'Column grouping field',
63
+ 'Date_range': 'Date range',
64
+ 'Compare_to_date_range': 'Compare to date range',
65
+ 'Display_increase': 'Display increase',
66
+ 'Display_percentage_increase': 'Display percentage increase',
67
+ 'Color': 'Color',
68
+ 'Data_sort': 'Data sort',
69
+ 'Not_sorted': 'Not sorted',
70
+ 'Ascending': 'Ascending',
71
+ 'Descending': 'Descending',
72
+ 'Numeric_field': 'Numeric field',
73
+ 'Summary_field': 'Summary field',
74
+ 'No_column': 'No column',
75
+ 'Display_mode': 'Display mode',
76
+ 'Stack': 'Stack',
77
+ 'Location_field': 'Location field',
78
+ 'Time_field': 'Time field',
79
+ "Calculate_the_number_of_records_in_two_time_periods": "Calculate the number of records in two time periods",
80
+ "Use_a_field_to_calculate_the_sum_maximum_or_minimum_value_of_records_in_two_time_periods": "Use a field to calculate the sum maximum or minimum value of records in two time periods",
81
+ // 'Count_by_var': 'Count_by_var',
82
+ // 'Compute_sum_max_min_by_var': 'Compute_sum_max_min_by_var',
83
+ 'No_options': 'No options',
84
+ 'Text_horizontal_alignment': 'Text horizontal alignment',
85
+ 'Please_input_date': 'Please input date',
86
+ 'Filter': 'Filter',
87
+ '1 Filter': '1 filter',
88
+ 'Filters': 'filters',
89
+ 'Font_size': 'Font size',
90
+ 'Table': 'Table',
91
+ 'Chart_type': 'Chart type',
92
+ "Histogram": "Histogram",
93
+ "Basic_histogram": "Basic histogram",
94
+ "Grouped_histogram": "Grouped histogram",
95
+ "Stacked_histogram": "Stacked histogram",
96
+ "Time_comparison_histogram": "Time comparison histogram",
97
+ "Bar_chart": "Bar chart",
98
+ "Basic_bar_chart": "Basic bar chart",
99
+ "Grouped_bar_chart": "Grouped bar chart",
100
+ "Stacked_bar_chart": "Stacked bar chart",
101
+ "Completeness": "Completeness chart",
102
+ "Grouped_completeness": "Grouped completeness chart",
103
+ "Line_chart": "Line chart",
104
+ "Basic_line_chart": "Basic line chart",
105
+ "Grouped_line_chart": "Grouped line chart",
106
+ "Area": "Area",
107
+ "Grouped_area": "Grouped area",
108
+ "Pie_chart": "Pie chart",
109
+ "Basic_pie_chart": "Basic pie chart",
110
+ "Ring_chart": "Ring chart",
111
+ "Scatter": "Scatter chart",
112
+ "Combination": "Combination chart",
113
+ "Map": "Map",
114
+ "World_map": "World map",
115
+ "World_map_bubble": "World map(bubble)",
116
+ "Heat_map": "Heat map",
117
+ "Facet_chart": "Facet chart",
118
+ "Mirror_chart": "Mirror chart",
119
+ "Card": "Card",
120
+ "Basic_number_card": "Basic number card",
121
+ "Trend": "Trend chart",
122
+ "Gauge": "Gauge",
123
+ 'Tree_map': 'Tree map',
124
+ 'Pivot_table': 'Pivot table',
125
+ 'Title': 'Title',
126
+ 'Edit_type': 'Edit type',
127
+ 'Cancel': 'Cancel',
128
+ 'Submit': 'Submit',
129
+ 'There_are_no_statistic_results_yet': 'There are no statistic results yet',
130
+ 'Year': 'Year',
131
+ 'Month': 'Month',
132
+ 'Day': 'Day',
133
+ 'Hour': 'Hour',
134
+ 'Minute': 'Minute',
135
+ 'Done': 'Done',
136
+ 'Internal_server_error': 'Internal server error',
137
+ 'Network_error': 'Network error',
138
+ 'There_are_some_problems_with_the_filters': 'There are some problems with the filters.',
139
+ 'Please_complete_the_chart_configuration_first': 'Please complete the chart configuration first'
140
+ };
141
+ export default es;
@@ -0,0 +1,141 @@
1
+ /* eslint-disable */
2
+ const fr = {
3
+ 'Empty': 'Empty',
4
+ 'Amount': 'Amount',
5
+ 'Counting': 'Count',
6
+ 'Summarize_a_field': 'Summarize a field',
7
+ 'By_day': 'By day',
8
+ 'By_week': 'By week',
9
+ 'By_month': 'By month',
10
+ 'By_quarter': 'By quarter',
11
+ 'By_year': 'By year',
12
+ 'Sum': 'Sum',
13
+ "Avg": "Average",
14
+ "Mdn": "Median",
15
+ 'Max': 'Max',
16
+ 'Min': 'Min',
17
+ 'Mean': 'Mean',
18
+ 'Number_of_distinct_values': 'Number of distinct values',
19
+ 'By_province': 'By province',
20
+ 'By_city': 'By city',
21
+ 'By_district': 'By district',
22
+ 'Row_count': 'Row count',
23
+ 'Left': 'Left',
24
+ 'Right': 'Right',
25
+ 'Center': 'Center',
26
+ 'Top': 'Top',
27
+ 'Bottom': 'Bottom',
28
+ 'Others': 'Others',
29
+ 'Total': 'Total',
30
+ 'There_are_too_many_statistics_entries_to_display': 'here are too many statistics entries to display.',
31
+ 'Data_settings': 'Data settings',
32
+ 'Style_settings': 'Style settings',
33
+ 'Include_empty': 'Include empty',
34
+ 'X_axis': 'X axis',
35
+ 'Y_axis': 'Y axis',
36
+ 'Display_value': 'Display values on data points',
37
+ 'Auto_range': 'Auto range',
38
+ 'Select_a_column': 'Select a column',
39
+ "Summary_method": 'Summary method',
40
+ 'Label': '',
41
+ 'Y-axis(left side)': 'Y-axis (left side)',
42
+ 'Y-axis(right side)': 'Y-axis (right side)',
43
+ 'Display_title': 'Display title',
44
+ 'Current_value_field': 'Current value field',
45
+ 'Total_value_field': 'Total value field',
46
+ 'Group_by': 'Group by',
47
+ 'Display_legend': 'Display legend',
48
+ 'Display_label': 'Display label',
49
+ 'Label_position': 'Label position',
50
+ 'Label_format': 'Label format',
51
+ 'Label_font_size': 'Label font size',
52
+ "Count_the_number_of_records_in_each_group": "Count the number of records in each group",
53
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_a_field": "Compute the sum, maximum, minimum or mean value of records in each group by a field",
54
+ "Group_the_records_according_to_the_vertical_axis_and_count_the_records_in_each_group": "Group the records according to the vertical axis, and count the records in each group",
55
+ "Group_the_records_according_to_the_vertical_axis_and_compute_the_sum_maximum_or_minimum_of_records_in_each_group_by_a_field": "Group the records according to the vertical axis, and compute the sum, maximum, minimum or mean of records in each group by a field",
56
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_multiple_fields": "Compute the sum, maximum, minimum or mean value of records in each group by multiple fields",
57
+ "Count_the_records": "Group the records according to the X axis, and count the records in every group",
58
+ "Compute_sum_max_min": "Group the records according to the X axis, and compute the sum, maximum, minimum or mean by a field in the records",
59
+ 'Summarize_multiple_fields': 'Summarize multiple fields',
60
+ 'Add_new_field': 'Add new field',
61
+ 'Row_grouping_field': 'Row grouping field',
62
+ 'Column_grouping_field': 'Column grouping field',
63
+ 'Date_range': 'Date range',
64
+ 'Compare_to_date_range': 'Compare to date range',
65
+ 'Display_increase': 'Display increase',
66
+ 'Display_percentage_increase': 'Display percentage increase',
67
+ 'Color': 'Color',
68
+ 'Data_sort': 'Data sort',
69
+ 'Not_sorted': 'Not sorted',
70
+ 'Ascending': 'Ascending',
71
+ 'Descending': 'Descending',
72
+ 'Numeric_field': 'Numeric field',
73
+ 'Summary_field': 'Summary field',
74
+ 'No_column': 'No column',
75
+ 'Display_mode': 'Display mode',
76
+ 'Stack': 'Stack',
77
+ 'Location_field': 'Location field',
78
+ 'Time_field': 'Time field',
79
+ "Calculate_the_number_of_records_in_two_time_periods": "Calculate the number of records in two time periods",
80
+ "Use_a_field_to_calculate_the_sum_maximum_or_minimum_value_of_records_in_two_time_periods": "Use a field to calculate the sum maximum or minimum value of records in two time periods",
81
+ // 'Count_by_var': 'Count_by_var',
82
+ // 'Compute_sum_max_min_by_var': 'Compute_sum_max_min_by_var',
83
+ 'No_options': 'No options',
84
+ 'Text_horizontal_alignment': 'Text horizontal alignment',
85
+ 'Please_input_date': 'Please input date',
86
+ 'Filter': 'Filter',
87
+ '1 Filter': '1 filter',
88
+ 'Filters': 'filters',
89
+ 'Font_size': 'Font size',
90
+ 'Table': 'Table',
91
+ 'Chart_type': 'Chart type',
92
+ "Histogram": "Histogram",
93
+ "Basic_histogram": "Basic histogram",
94
+ "Grouped_histogram": "Grouped histogram",
95
+ "Stacked_histogram": "Stacked histogram",
96
+ "Time_comparison_histogram": "Time comparison histogram",
97
+ "Bar_chart": "Bar chart",
98
+ "Basic_bar_chart": "Basic bar chart",
99
+ "Grouped_bar_chart": "Grouped bar chart",
100
+ "Stacked_bar_chart": "Stacked bar chart",
101
+ "Completeness": "Completeness chart",
102
+ "Grouped_completeness": "Grouped completeness chart",
103
+ "Line_chart": "Line chart",
104
+ "Basic_line_chart": "Basic line chart",
105
+ "Grouped_line_chart": "Grouped line chart",
106
+ "Area": "Area",
107
+ "Grouped_area": "Grouped area",
108
+ "Pie_chart": "Pie chart",
109
+ "Basic_pie_chart": "Basic pie chart",
110
+ "Ring_chart": "Ring chart",
111
+ "Scatter": "Scatter chart",
112
+ "Combination": "Combination chart",
113
+ "Map": "Map",
114
+ "World_map": "World map",
115
+ "World_map_bubble": "World map(bubble)",
116
+ "Heat_map": "Heat map",
117
+ "Facet_chart": "Facet chart",
118
+ "Mirror_chart": "Mirror chart",
119
+ "Card": "Card",
120
+ "Basic_number_card": "Basic number card",
121
+ "Trend": "Trend chart",
122
+ "Gauge": "Gauge",
123
+ 'Tree_map': 'Tree map',
124
+ 'Pivot_table': 'Pivot table',
125
+ 'Title': 'Title',
126
+ 'Edit_type': 'Edit type',
127
+ 'Cancel': 'Cancel',
128
+ 'Submit': 'Submit',
129
+ 'There_are_no_statistic_results_yet': 'There are no statistic results yet',
130
+ 'Year': 'Year',
131
+ 'Month': 'Month',
132
+ 'Day': 'Day',
133
+ 'Hour': 'Hour',
134
+ 'Minute': 'Minute',
135
+ 'Done': 'Done',
136
+ 'Internal_server_error': 'Internal server error',
137
+ 'Network_error': 'Network error',
138
+ 'There_are_some_problems_with_the_filters': 'There are some problems with the filters.',
139
+ 'Please_complete_the_chart_configuration_first': 'Please complete the chart configuration first'
140
+ };
141
+ export default fr;
@@ -0,0 +1,141 @@
1
+ /* eslint-disable */
2
+ const pt = {
3
+ 'Empty': 'Empty',
4
+ 'Amount': 'Amount',
5
+ 'Counting': 'Count',
6
+ 'Summarize_a_field': 'Summarize a field',
7
+ 'By_day': 'By day',
8
+ 'By_week': 'By week',
9
+ 'By_month': 'By month',
10
+ 'By_quarter': 'By quarter',
11
+ 'By_year': 'By year',
12
+ 'Sum': 'Sum',
13
+ "Avg": "Average",
14
+ "Mdn": "Median",
15
+ 'Max': 'Max',
16
+ 'Min': 'Min',
17
+ 'Mean': 'Mean',
18
+ 'Number_of_distinct_values': 'Number of distinct values',
19
+ 'By_province': 'By province',
20
+ 'By_city': 'By city',
21
+ 'By_district': 'By district',
22
+ 'Row_count': 'Row count',
23
+ 'Left': 'Left',
24
+ 'Right': 'Right',
25
+ 'Center': 'Center',
26
+ 'Top': 'Top',
27
+ 'Bottom': 'Bottom',
28
+ 'Others': 'Others',
29
+ 'Total': 'Total',
30
+ 'There_are_too_many_statistics_entries_to_display': 'here are too many statistics entries to display.',
31
+ 'Data_settings': 'Data settings',
32
+ 'Style_settings': 'Style settings',
33
+ 'Include_empty': 'Include empty',
34
+ 'X_axis': 'X axis',
35
+ 'Y_axis': 'Y axis',
36
+ 'Display_value': 'Display values on data points',
37
+ 'Auto_range': 'Auto range',
38
+ 'Select_a_column': 'Select a column',
39
+ "Summary_method": 'Summary method',
40
+ 'Label': '',
41
+ 'Y-axis(left side)': 'Y-axis (left side)',
42
+ 'Y-axis(right side)': 'Y-axis (right side)',
43
+ 'Display_title': 'Display title',
44
+ 'Current_value_field': 'Current value field',
45
+ 'Total_value_field': 'Total value field',
46
+ 'Group_by': 'Group by',
47
+ 'Display_legend': 'Display legend',
48
+ 'Display_label': 'Display label',
49
+ 'Label_position': 'Label position',
50
+ 'Label_format': 'Label format',
51
+ 'Label_font_size': 'Label font size',
52
+ "Count_the_number_of_records_in_each_group": "Count the number of records in each group",
53
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_a_field": "Compute the sum, maximum, minimum or mean value of records in each group by a field",
54
+ "Group_the_records_according_to_the_vertical_axis_and_count_the_records_in_each_group": "Group the records according to the vertical axis, and count the records in each group",
55
+ "Group_the_records_according_to_the_vertical_axis_and_compute_the_sum_maximum_or_minimum_of_records_in_each_group_by_a_field": "Group the records according to the vertical axis, and compute the sum, maximum, minimum or mean of records in each group by a field",
56
+ "Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_multiple_fields": "Compute the sum, maximum, minimum or mean value of records in each group by multiple fields",
57
+ "Count_the_records": "Group the records according to the X axis, and count the records in every group",
58
+ "Compute_sum_max_min": "Group the records according to the X axis, and compute the sum, maximum, minimum or mean by a field in the records",
59
+ 'Summarize_multiple_fields': 'Summarize multiple fields',
60
+ 'Add_new_field': 'Add new field',
61
+ 'Row_grouping_field': 'Row grouping field',
62
+ 'Column_grouping_field': 'Column grouping field',
63
+ 'Date_range': 'Date range',
64
+ 'Compare_to_date_range': 'Compare to date range',
65
+ 'Display_increase': 'Display increase',
66
+ 'Display_percentage_increase': 'Display percentage increase',
67
+ 'Color': 'Color',
68
+ 'Data_sort': 'Data sort',
69
+ 'Not_sorted': 'Not sorted',
70
+ 'Ascending': 'Ascending',
71
+ 'Descending': 'Descending',
72
+ 'Numeric_field': 'Numeric field',
73
+ 'Summary_field': 'Summary field',
74
+ 'No_column': 'No column',
75
+ 'Display_mode': 'Display mode',
76
+ 'Stack': 'Stack',
77
+ 'Location_field': 'Location field',
78
+ 'Time_field': 'Time field',
79
+ "Calculate_the_number_of_records_in_two_time_periods": "Calculate the number of records in two time periods",
80
+ "Use_a_field_to_calculate_the_sum_maximum_or_minimum_value_of_records_in_two_time_periods": "Use a field to calculate the sum maximum or minimum value of records in two time periods",
81
+ // 'Count_by_var': 'Count_by_var',
82
+ // 'Compute_sum_max_min_by_var': 'Compute_sum_max_min_by_var',
83
+ 'No_options': 'No options',
84
+ 'Text_horizontal_alignment': 'Text horizontal alignment',
85
+ 'Please_input_date': 'Please input date',
86
+ 'Filter': 'Filter',
87
+ '1 Filter': '1 filter',
88
+ 'Filters': 'filters',
89
+ 'Font_size': 'Font size',
90
+ 'Table': 'Table',
91
+ 'Chart_type': 'Chart type',
92
+ "Histogram": "Histogram",
93
+ "Basic_histogram": "Basic histogram",
94
+ "Grouped_histogram": "Grouped histogram",
95
+ "Stacked_histogram": "Stacked histogram",
96
+ "Time_comparison_histogram": "Time comparison histogram",
97
+ "Bar_chart": "Bar chart",
98
+ "Basic_bar_chart": "Basic bar chart",
99
+ "Grouped_bar_chart": "Grouped bar chart",
100
+ "Stacked_bar_chart": "Stacked bar chart",
101
+ "Completeness": "Completeness chart",
102
+ "Grouped_completeness": "Grouped completeness chart",
103
+ "Line_chart": "Line chart",
104
+ "Basic_line_chart": "Basic line chart",
105
+ "Grouped_line_chart": "Grouped line chart",
106
+ "Area": "Area",
107
+ "Grouped_area": "Grouped area",
108
+ "Pie_chart": "Pie chart",
109
+ "Basic_pie_chart": "Basic pie chart",
110
+ "Ring_chart": "Ring chart",
111
+ "Scatter": "Scatter chart",
112
+ "Combination": "Combination chart",
113
+ "Map": "Map",
114
+ "World_map": "World map",
115
+ "World_map_bubble": "World map(bubble)",
116
+ "Heat_map": "Heat map",
117
+ "Facet_chart": "Facet chart",
118
+ "Mirror_chart": "Mirror chart",
119
+ "Card": "Card",
120
+ "Basic_number_card": "Basic number card",
121
+ "Trend": "Trend chart",
122
+ "Gauge": "Gauge",
123
+ 'Tree_map': 'Tree map',
124
+ 'Pivot_table': 'Pivot table',
125
+ 'Title': 'Title',
126
+ 'Edit_type': 'Edit type',
127
+ 'Cancel': 'Cancel',
128
+ 'Submit': 'Submit',
129
+ 'There_are_no_statistic_results_yet': 'There are no statistic results yet',
130
+ 'Year': 'Year',
131
+ 'Month': 'Month',
132
+ 'Day': 'Day',
133
+ 'Hour': 'Hour',
134
+ 'Minute': 'Minute',
135
+ 'Done': 'Done',
136
+ 'Internal_server_error': 'Internal server error',
137
+ 'Network_error': 'Network error',
138
+ 'There_are_some_problems_with_the_filters': 'There are some problems with the filters.',
139
+ 'Please_complete_the_chart_configuration_first': 'Please complete the chart configuration first'
140
+ };
141
+ export default pt;