dtable-statistic 4.0.2-test-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 (210) hide show
  1. package/README.md +3 -0
  2. package/es/api/dtable-db-api.js +43 -0
  3. package/es/assets/css/color-picker.css +53 -0
  4. package/es/assets/css/color-rules-popover.css +144 -0
  5. package/es/assets/css/color-theme-dialog.css +40 -0
  6. package/es/assets/css/dashboard.css +562 -0
  7. package/es/assets/css/dialog.css +415 -0
  8. package/es/assets/css/mobile-dashboard.module.css +91 -0
  9. package/es/assets/css/slider.css +77 -0
  10. package/es/assets/css/statistic-chart.module.css +11 -0
  11. package/es/assets/css/statistic-custom-title.module.css +3 -0
  12. package/es/assets/css/statistic-custom.module.css +4 -0
  13. package/es/assets/css/statistic-numeric-column-item.module.css +43 -0
  14. package/es/assets/css/statistic-time-picker.module.css +21 -0
  15. package/es/assets/css/theme.css +61 -0
  16. package/es/assets/images/icon.png +0 -0
  17. package/es/calculator/base-calculator.js +111 -0
  18. package/es/calculator/basic-chart-calculator.js +571 -0
  19. package/es/calculator/combination-calculator.js +296 -0
  20. package/es/calculator/compare-bar-calculator.js +291 -0
  21. package/es/calculator/completeness-calculator.js +307 -0
  22. package/es/calculator/copy-value.js +47 -0
  23. package/es/calculator/dashboard-calculator.js +146 -0
  24. package/es/calculator/heat-map-calculator.js +225 -0
  25. package/es/calculator/horizontal-bar-calculator.js +100 -0
  26. package/es/calculator/index.js +88 -0
  27. package/es/calculator/map-calculator.js +169 -0
  28. package/es/calculator/mirror-calculator.js +217 -0
  29. package/es/calculator/number-card-calculator.js +135 -0
  30. package/es/calculator/pivot-table-calculator.js +810 -0
  31. package/es/calculator/scatter-calculator.js +150 -0
  32. package/es/calculator/thread-manager.js +70 -0
  33. package/es/calculator/trend-calculator.js +204 -0
  34. package/es/calculator/workers/basic-chart-calculator-worker.js +410 -0
  35. package/es/calculator/workers/calculator.worker.js +22 -0
  36. package/es/calculator/workers/card-calculator-worker.js +28 -0
  37. package/es/calculator/workers/combination-calculator-worker.js +257 -0
  38. package/es/calculator/workers/compare-bar-chart-calculator-worker.js +149 -0
  39. package/es/calculator/workers/completeness-calculator-worker.js +153 -0
  40. package/es/calculator/workers/dashboard-calculator-worker.js +56 -0
  41. package/es/calculator/workers/mirror-calculator-worker.js +132 -0
  42. package/es/calculator/workers/pivot-table-calculator-worker.js +615 -0
  43. package/es/calculator/workers/scatter-calculator-worker.js +67 -0
  44. package/es/calculator/workers/trend-calculator-worker.js +93 -0
  45. package/es/calculator/world-map-calculator.js +193 -0
  46. package/es/components/common-add-tool.js +19 -0
  47. package/es/components/dialog/chart-addition-edit-dialog.js +89 -0
  48. package/es/components/dialog/chart-addition-widgets/chart-selector.js +261 -0
  49. package/es/components/dialog/chart-addition-widgets/statistic-chart-selector.module.css +74 -0
  50. package/es/components/dialog/color-theme-dialog.js +71 -0
  51. package/es/components/dialog/enlarged-chart-dialog.js +73 -0
  52. package/es/components/dialog/new-table-dialog.js +113 -0
  53. package/es/components/dialog/new-view-dialog.js +87 -0
  54. package/es/components/dialog/rename-view-dialog.js +87 -0
  55. package/es/components/dialog/statistic-record-dialog/index.css +114 -0
  56. package/es/components/dialog/statistic-record-dialog/index.js +174 -0
  57. package/es/components/dialog/table-select-dialog.js +93 -0
  58. package/es/components/dropdown-menu/statistic-dropdown-menu.js +94 -0
  59. package/es/components/dtable-popover.js +109 -0
  60. package/es/components/dtable-search-input.js +137 -0
  61. package/es/components/dtable-select.js +104 -0
  62. package/es/components/index.js +11 -0
  63. package/es/components/loading.js +8 -0
  64. package/es/components/modal-portal.js +36 -0
  65. package/es/components/popover/color-rules/color-rule.js +179 -0
  66. package/es/components/popover/color-rules/index.js +87 -0
  67. package/es/components/popover/color-rules/rule-filters/filter.js +214 -0
  68. package/es/components/popover/color-rules/rule-filters/index.css +214 -0
  69. package/es/components/popover/color-rules/rule-filters/index.js +97 -0
  70. package/es/components/popover/color-rules/rule-filters/number-input.js +85 -0
  71. package/es/components/popover/color-rules-popover.js +213 -0
  72. package/es/components/popover/color-selector-popover.js +85 -0
  73. package/es/components/seatable-radio/index.css +51 -0
  74. package/es/components/seatable-radio/index.js +28 -0
  75. package/es/components/select/index.js +2 -0
  76. package/es/components/select/option-group.css +104 -0
  77. package/es/components/select/option-group.js +225 -0
  78. package/es/components/select/option.js +51 -0
  79. package/es/components/select/select.css +211 -0
  80. package/es/components/select/select.js +157 -0
  81. package/es/components/toast/alert.js +130 -0
  82. package/es/components/toast/index.js +3 -0
  83. package/es/components/toast/toast.js +164 -0
  84. package/es/components/toast/toastManager.js +150 -0
  85. package/es/components/toast/toaster.js +64 -0
  86. package/es/constants/color-rules.js +8 -0
  87. package/es/constants/dtable-select-style.js +61 -0
  88. package/es/constants/event-types.js +1 -0
  89. package/es/constants/index.js +501 -0
  90. package/es/constants/key-codes.js +102 -0
  91. package/es/constants/zIndexes.js +1 -0
  92. package/es/custom-g2.js +614 -0
  93. package/es/dashboard.js +408 -0
  94. package/es/desktop-dashboard.js +299 -0
  95. package/es/index.js +33 -0
  96. package/es/locale/index.js +17 -0
  97. package/es/locale/lang/de.js +237 -0
  98. package/es/locale/lang/en.js +237 -0
  99. package/es/locale/lang/fr.js +237 -0
  100. package/es/locale/lang/zh_CN.js +237 -0
  101. package/es/mobile-dashboard.js +103 -0
  102. package/es/model/collaborators.js +11 -0
  103. package/es/model/stat-item.js +340 -0
  104. package/es/model/statistic-dashboard.js +8 -0
  105. package/es/service/chart-service.js +192 -0
  106. package/es/service/dashboard-service.js +415 -0
  107. package/es/stat-editor/chart-name-editor.js +75 -0
  108. package/es/stat-editor/index.js +74 -0
  109. package/es/stat-editor/stat-settings/advance-chart-settings/basic-number-card-settings.js +149 -0
  110. package/es/stat-editor/stat-settings/advance-chart-settings/combination-settings.js +415 -0
  111. package/es/stat-editor/stat-settings/advance-chart-settings/dashboard-chart-settings.js +193 -0
  112. package/es/stat-editor/stat-settings/advance-chart-settings/geo-granularity-settings.js +13 -0
  113. package/es/stat-editor/stat-settings/advance-chart-settings/heat-map-settings.js +107 -0
  114. package/es/stat-editor/stat-settings/advance-chart-settings/index.js +332 -0
  115. package/es/stat-editor/stat-settings/advance-chart-settings/map-settings.js +170 -0
  116. package/es/stat-editor/stat-settings/advance-chart-settings/mirror-settings.js +141 -0
  117. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/combination-style-setting.js +219 -0
  118. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/heat-map-settings.js +89 -0
  119. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/map-setting.js +132 -0
  120. package/es/stat-editor/stat-settings/advance-chart-settings/summary-settings.js +319 -0
  121. package/es/stat-editor/stat-settings/advance-chart-settings/trend-chart-settings.js +138 -0
  122. package/es/stat-editor/stat-settings/advance-chart-settings/world-map-settings.js +135 -0
  123. package/es/stat-editor/stat-settings/basic-chart-settings/advance-bar-chart-settings.js +156 -0
  124. package/es/stat-editor/stat-settings/basic-chart-settings/bar-settings.js +147 -0
  125. package/es/stat-editor/stat-settings/basic-chart-settings/completeness-chart-settings.js +195 -0
  126. package/es/stat-editor/stat-settings/basic-chart-settings/custom-bar-settings.js +126 -0
  127. package/es/stat-editor/stat-settings/basic-chart-settings/groupby-settings.js +169 -0
  128. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-axis-group-settings.js +352 -0
  129. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-bar-settings.js +145 -0
  130. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-group-chart-settings.js +153 -0
  131. package/es/stat-editor/stat-settings/basic-chart-settings/index.js +466 -0
  132. package/es/stat-editor/stat-settings/basic-chart-settings/pie-settings.js +183 -0
  133. package/es/stat-editor/stat-settings/basic-chart-settings/pivot-table-settings.js +542 -0
  134. package/es/stat-editor/stat-settings/basic-chart-settings/scatter-settings.js +111 -0
  135. package/es/stat-editor/stat-settings/basic-chart-settings/stack-item-settings.js +86 -0
  136. package/es/stat-editor/stat-settings/basic-chart-settings/stacks-settings.js +169 -0
  137. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/bar-chart-style-setting.js +273 -0
  138. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/completeness-style.js +105 -0
  139. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/horizontal-bar-chart-style.js +243 -0
  140. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/label-font-size-editor.js +65 -0
  141. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/pie-chart-style-settings.js +318 -0
  142. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/time-compare-style.js +49 -0
  143. package/es/stat-editor/stat-settings/basic-chart-settings/summary-method-setting.js +124 -0
  144. package/es/stat-editor/stat-settings/basic-chart-settings/summary-settings.js +150 -0
  145. package/es/stat-editor/stat-settings/basic-chart-settings/time-comparison-settings.js +267 -0
  146. package/es/stat-editor/stat-settings/basic-chart-settings/timer-picker.js +109 -0
  147. package/es/stat-editor/stat-settings/basic-chart-settings/y-axis-group-settings.js +351 -0
  148. package/es/stat-editor/stat-settings/color-setting/color-group-selector.js +60 -0
  149. package/es/stat-editor/stat-settings/color-setting/color-picker.js +129 -0
  150. package/es/stat-editor/stat-settings/color-setting/color-use-type-selector.js +348 -0
  151. package/es/stat-editor/stat-settings/public-setting/axis-label-position-setting.js +102 -0
  152. package/es/stat-editor/stat-settings/public-setting/base-settings.js +124 -0
  153. package/es/stat-editor/stat-settings/public-setting/calender.js +124 -0
  154. package/es/stat-editor/stat-settings/public-setting/column-settings.js +15 -0
  155. package/es/stat-editor/stat-settings/public-setting/custom-title-setting.js +60 -0
  156. package/es/stat-editor/stat-settings/public-setting/data-sort-setting.js +57 -0
  157. package/es/stat-editor/stat-settings/public-setting/ind-toggle-setting.js +41 -0
  158. package/es/stat-editor/stat-settings/public-setting/min-max-setting.js +64 -0
  159. package/es/stat-editor/stat-settings/public-setting/numeric-summary-item.js +118 -0
  160. package/es/stat-editor/stat-settings/public-setting/toggle-setting.js +39 -0
  161. package/es/stat-list/chart-preview.js +139 -0
  162. package/es/stat-list/index.js +275 -0
  163. package/es/stat-view/area-chart.js +521 -0
  164. package/es/stat-view/bar-chart.js +568 -0
  165. package/es/stat-view/base-chart.js +44 -0
  166. package/es/stat-view/basic-number-card.js +255 -0
  167. package/es/stat-view/combination-chart.js +558 -0
  168. package/es/stat-view/compare-chart.js +485 -0
  169. package/es/stat-view/completeness-chart.js +389 -0
  170. package/es/stat-view/custom-bar.js +433 -0
  171. package/es/stat-view/dashboard-chart.js +317 -0
  172. package/es/stat-view/heat-map.js +501 -0
  173. package/es/stat-view/horizontal-bar-chart.js +569 -0
  174. package/es/stat-view/index.js +183 -0
  175. package/es/stat-view/line-chart.js +505 -0
  176. package/es/stat-view/map.js +428 -0
  177. package/es/stat-view/mirror.js +285 -0
  178. package/es/stat-view/pie-chart.js +326 -0
  179. package/es/stat-view/pivot-table/index.js +206 -0
  180. package/es/stat-view/pivot-table/one-dimension-table-no-numeric-columns.js +133 -0
  181. package/es/stat-view/pivot-table/one-dimension-table-with-numeric-columns.js +164 -0
  182. package/es/stat-view/pivot-table/statistic-pivot-table.module.css +132 -0
  183. package/es/stat-view/pivot-table/two-dimension-table.js +344 -0
  184. package/es/stat-view/ring-chart.js +416 -0
  185. package/es/stat-view/scatter-chart.js +367 -0
  186. package/es/stat-view/treemap-chart.js +318 -0
  187. package/es/stat-view/trend-chart.js +299 -0
  188. package/es/stat-view/world-map.js +443 -0
  189. package/es/tabs/index.js +252 -0
  190. package/es/tabs/statistic-tabs.module.css +154 -0
  191. package/es/tabs/tab.js +167 -0
  192. package/es/utils/basic-chart-utils.js +24 -0
  193. package/es/utils/cell-format.js +110 -0
  194. package/es/utils/cell-value.js +27 -0
  195. package/es/utils/collaborator.js +31 -0
  196. package/es/utils/color-utils.js +112 -0
  197. package/es/utils/column-utils.js +18 -0
  198. package/es/utils/column.js +13 -0
  199. package/es/utils/common-utils.js +303 -0
  200. package/es/utils/date-format.js +65 -0
  201. package/es/utils/export-table-utils.js +632 -0
  202. package/es/utils/index.js +26 -0
  203. package/es/utils/object.js +26 -0
  204. package/es/utils/row-utils.js +115 -0
  205. package/es/utils/search.js +67 -0
  206. package/es/utils/sql-utils.js +293 -0
  207. package/es/utils/stat-utils.js +353 -0
  208. package/es/utils/trend-utils.js +136 -0
  209. package/index.js +1 -0
  210. package/package.json +188 -0
@@ -0,0 +1,237 @@
1
+ var en = {
2
+ 'Statistics': 'Statistics',
3
+ 'New_chart': 'New chart',
4
+ 'Close': 'Close',
5
+ 'Dark_mode': 'Dark mode',
6
+ 'Light_mode': 'Light mode',
7
+ 'Full_screen': 'Full screen',
8
+ 'Cancel_full_screen': 'Cancel full screen',
9
+ 'Default_dashboard': 'Default dashboard',
10
+ 'New_dashboard': 'New dashboard',
11
+ 'Name': 'Name',
12
+ 'Submit': 'Submit',
13
+ 'Cancel': 'Cancel',
14
+ 'Name_is_required': 'Name is required',
15
+ 'Rename_dashboard': 'Rename dashboard',
16
+ 'Rename': 'Rename',
17
+ 'Delete': 'Delete',
18
+ 'Edit': 'Edit',
19
+ 'Copy': 'Copy',
20
+ 'Export_as_picture': 'Export as picture',
21
+ 'Edit_the_chart': 'Edit the chart',
22
+ 'Choose_a_chart': 'Choose a type of chart',
23
+ 'Histogram': 'Histogram',
24
+ 'Basic_histogram': 'Basic histogram',
25
+ 'Grouped_histogram': 'Grouped histogram',
26
+ 'Stacked_histogram': 'Stacked histogram',
27
+ 'Time_comparison_histogram': 'Time comparison histogram',
28
+ 'Custom_histogram': 'Custom histogram',
29
+ 'Bar_chart': 'Bar chart',
30
+ 'Basic_bar_chart': 'Basic bar chart',
31
+ 'Grouped_bar_chart': 'Grouped bar chart',
32
+ 'Stacked_bar_chart': 'Stacked bar chart',
33
+ 'Line_chart': 'Line chart',
34
+ 'Basic_line_chart': 'Basic line chart',
35
+ 'Grouped_line_chart': 'Grouped line chart',
36
+ 'Pie_chart': 'Pie chart',
37
+ 'Basic_pie_chart': 'Basic pie chart',
38
+ 'Ring_chart': 'Ring chart',
39
+ 'Scatter_chart': 'Scatter chart',
40
+ 'Combination_chart': 'Combination chart',
41
+ 'Map': 'Map',
42
+ 'World_map': 'World map',
43
+ 'Heat_map': 'Heat map',
44
+ 'Facet_chart': 'Facet chart',
45
+ 'Mirror_chart': 'Mirror chart',
46
+ 'Card': 'Card',
47
+ 'Basic_number_card': 'Basic number card',
48
+ 'Trend_chart': 'Trend chart',
49
+ 'Data_settings': 'Data settings',
50
+ 'Style_settings': 'Style settings',
51
+ 'Untitled': 'Untitled',
52
+ 'Settings': 'Settings',
53
+ 'Table': 'Table',
54
+ 'View': 'View',
55
+ 'Display_title': 'Display title',
56
+ 'X-axis': 'X-axis',
57
+ 'Y-axis': 'Y-axis',
58
+ 'Y-axis(left side)': 'Y-axis (left side)',
59
+ 'Y-axis(right side)': 'Y-axis (right side)',
60
+ 'Including_empty_cell': 'Including empty cell',
61
+ 'Color': 'Color',
62
+ 'Count_the_records': 'Group the records according to the X axis, and count the records in every group',
63
+ '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',
64
+ 'Numeric_column': 'Numeric column',
65
+ 'Select_a_column': 'Select a column',
66
+ 'No_options': 'No options',
67
+ 'Counting': 'Counting',
68
+ 'Count_by_column': 'Group the records according to a column and count them',
69
+ 'Display_legend': 'Display legend',
70
+ 'Display_percent': 'Display percent',
71
+ 'Group_by': 'Group by',
72
+ 'Summary_method': 'Summary method',
73
+ 'Summarize_a_field': 'Summarize a field',
74
+ 'Summarize_multiple_fields': 'Summarize multiple fields',
75
+ 'Add_new_numeric_column': 'Add new numeric column',
76
+ 'Horizontal_axis': 'Horizontal axis',
77
+ 'Vertical_axis': 'Vertical axis',
78
+ 'Location_field': 'Location field',
79
+ 'Time_field': 'Time field',
80
+ 'Count_by_var': 'Group the records according to {var}, and count the records in every group',
81
+ 'Compute_sum_max_min_by_var': 'Group the records according to {var}, and compute the sum, maximum, minimum or mean by a field in the records',
82
+ 'Count_the_number_of_records_in_each_group': 'Count the number of records in each group',
83
+ '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',
84
+ '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',
85
+ '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',
86
+ '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',
87
+ 'Statistic_field': 'Statistic field',
88
+ 'Reversing': 'Reversing',
89
+ 'Column_grouping_field': 'Column grouping field',
90
+ 'Label': 'Label',
91
+ 'Row_count': 'Row count',
92
+ 'Sum': 'Sum',
93
+ 'Max': 'Maximum',
94
+ 'Mean': 'Mean',
95
+ 'Min': 'Minimum',
96
+ 'By_day': 'By day',
97
+ 'By_week': 'By week',
98
+ 'By_month': 'By month',
99
+ 'By_quarter': 'By quarter',
100
+ 'By_year': 'By year',
101
+ 'By_city': 'By city',
102
+ 'By_district_county': 'By district/county',
103
+ 'By_province': 'By province',
104
+ 'Comparison_mode': 'Comparison mode',
105
+ 'Yesterday_vs_the_day_before_yesterday': 'Yesterday vs. the day before yesterday',
106
+ 'Last_week_vs_the_week_before_last': 'Last week vs. the week before last',
107
+ 'Last_month_vs_the_month_before_last': 'Last month vs. the month before last',
108
+ 'Last_quarter_vs_the_quarter_before_last': 'Last quarter vs. the quarter before last',
109
+ 'Last_year_vs_the_year_before_last': 'Last year vs. the year before last',
110
+ 'Last_7_days_vs_previous_7_days': 'Last 7 days vs. previous 7 days',
111
+ 'Last_30_days_vs_previous_30_days': 'Last 30 days vs. previous 30 days',
112
+ 'The_year_before_last': 'The year before last',
113
+ 'The_quarter_before_last': 'The quarter before last',
114
+ 'The_month_before_last': 'The month before last',
115
+ 'The_week_before_last': 'The week before last',
116
+ 'Previous_7_days': 'Previous 7 days',
117
+ 'Previous_30_days': 'Previous 30 days',
118
+ 'The_day_before_yesterday': 'The day before yesterday',
119
+ 'Can_not_compare_with_var': 'Can not compare with {var}',
120
+ 'Calculate_the_number_of_records_in_two_time_periods': 'Calculate the number of records in two time periods',
121
+ '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, minimum or mean value of records in two time periods',
122
+ 'Sun': 'Sun',
123
+ 'Mon': 'Mon',
124
+ 'Tue': 'Tue',
125
+ 'Wed': 'Wed',
126
+ 'Thu': 'Thu',
127
+ 'Fri': 'Fri',
128
+ 'Sat': 'Sat',
129
+ 'Jan': 'Jan',
130
+ 'Feb': 'Feb',
131
+ 'Mar': 'Mar',
132
+ 'Apr': 'Apr',
133
+ 'May': 'May',
134
+ 'Jun': 'Jun',
135
+ 'Jul': 'Jul',
136
+ 'Aug': 'Aug',
137
+ 'Sep': 'Sep',
138
+ 'Oct': 'Oct',
139
+ 'Nov': 'Nov',
140
+ 'Dec': 'Dec',
141
+ 'Total': 'Total',
142
+ 'Amount': 'Amount',
143
+ 'Empty': 'Empty',
144
+ 'Left': 'Left',
145
+ 'Center': 'Center',
146
+ 'Right': 'Right',
147
+ 'Top': 'Top',
148
+ 'Bottom': 'Bottom',
149
+ 'Display_data': 'Display values on data points',
150
+ 'Auto_range': 'Auto range',
151
+ 'Data_sorting': 'Data sorting',
152
+ 'Not_sorted': 'Not sorted',
153
+ 'Ascending': 'Ascending',
154
+ 'Descending': 'Descending',
155
+ 'Others': 'Others',
156
+ 'Minimum_slice_percent': 'Minimum slice percent',
157
+ 'Label_font_size': 'Label font size',
158
+ 'Bubble': 'Bubble',
159
+ 'Bubble_color': 'Bubble color',
160
+ 'Area_chart': 'Area chart',
161
+ 'Grouped_area_chart': 'Grouped area chart',
162
+ 'Date_range': 'Date range',
163
+ 'Compare_to_date_range': 'Compare to date range',
164
+ 'Vertical': 'Vertical',
165
+ 'Horizontal': 'Horizontal',
166
+ 'Legend_direction': 'Legend direction',
167
+ 'Legend_size': 'Legend size',
168
+ 'Completeness_chart': 'Completeness chart',
169
+ 'Grouped_completeness_chart': 'Grouped completeness chart',
170
+ 'Name_field': 'Name field',
171
+ 'Completion_value_field': 'Completion value field',
172
+ 'Total_value_field': 'Total value field',
173
+ 'Uncompleted': 'Uncompleted',
174
+ 'Completed': 'Completed',
175
+ 'Display_percentage': 'Display percentage',
176
+ 'Display_increase': 'Display increase',
177
+ 'Display_percentage_increase': 'Display percentage increase',
178
+ 'Gauge': 'Gauge',
179
+ 'Current_value_field': 'Current value field',
180
+ 'There_are_no_statistic_results_yet': 'There are no statistic results yet',
181
+ 'Treemap': 'Treemap',
182
+ 'Display_stack_total_value': 'Display total values of each stack',
183
+ 'Pivot_table': 'Pivot table',
184
+ 'Row_grouping_field': 'Row grouping field',
185
+ 'Not_used': 'Not used',
186
+ 'Summary_column': 'Summary column',
187
+ 'Add_new_summary_column': 'Add new summary column',
188
+ 'Summary_type': 'Summary type',
189
+ 'Less': 'Less',
190
+ 'More': 'More',
191
+ 'Checked': 'Checked',
192
+ 'Unchecked': 'Unchecked',
193
+ 'Use_the_colors_from_column_{name}': 'Use the colors from column \"{name}\"',
194
+ 'Use_default_colors': 'Use the default colors',
195
+ 'Use_column_colors': 'Use option colors from column',
196
+ 'Use_specific_colors': 'Use specific colors',
197
+ 'Use_rules': 'Use rules',
198
+ 'No_rules': 'No rules',
199
+ 'Add_rule': 'Add rule',
200
+ 'Added_1_rule': 'Added 1 rule',
201
+ 'Added_xxx_rules': 'Added {rules_count} rules',
202
+ 'Define_rule': 'Define rule',
203
+ 'Or': 'Or',
204
+ 'And': 'And',
205
+ 'Add_condition': 'Add condition',
206
+ 'equal': "=",
207
+ 'not_equal': "\u2260",
208
+ 'less': "<",
209
+ 'greater': ">",
210
+ 'less_or_equal': "\u2264",
211
+ 'greater_or_equal': "\u2265",
212
+ 'Increase': 'Increase',
213
+ 'Display_label': 'Display label',
214
+ 'Label_position': 'Label position',
215
+ 'Inside_the_chart': 'Inside the chart',
216
+ 'Outside_the_chart': 'Outside the chart',
217
+ 'Label_format': 'Label format',
218
+ 'Numeric_value': 'Numeric value',
219
+ 'Percent': 'Percent',
220
+ 'Numeric_value_and_percent': 'Numeric value (percent)',
221
+ 'Display_annotation': 'Display total in the middle',
222
+ 'Font_size': 'Font size',
223
+ 'Grid_size': 'Grid size',
224
+ 'Grid_distance': 'Space between grids',
225
+ 'Number_of_distinct_values': 'Number of distinct values',
226
+ 'There_are_too_many_statistics_entries_to_display': 'There are too many statistics entries to display. Please set the correct statistics options',
227
+ 'Clear_search_text': 'Clear search text',
228
+ 'Search_records': 'Search records',
229
+ 'Display_value_of_each_block': 'Display value of each block',
230
+ 'Chart_color_scheme': 'Chart color scheme',
231
+ 'Custom_title': 'Custom title',
232
+ 'Display_total': 'Display total',
233
+ 'Line_color': 'Line color',
234
+ 'Stack': 'Stack',
235
+ 'Add_new_stack': 'Add new stack'
236
+ };
237
+ export default en;
@@ -0,0 +1,237 @@
1
+ var fr = {
2
+ 'Statistics': 'Statistics',
3
+ 'New_chart': 'Nouveau graphique',
4
+ 'Close': 'Fermer',
5
+ 'Dark_mode': 'Mode sombre',
6
+ 'Light_mode': 'Mode clair',
7
+ 'Full_screen': 'Mode plein écran',
8
+ 'Cancel_full_screen': 'Quitter mode plein écran',
9
+ 'Default_dashboard': 'Tableau de bord standard',
10
+ 'New_dashboard': 'Nouveau tableau de bord',
11
+ 'Name': 'Nom',
12
+ 'Submit': 'Soumettre',
13
+ 'Cancel': 'Annuler',
14
+ 'Name_is_required': 'Le nom est nécessaire.',
15
+ 'Rename_dashboard': 'Renommer le tableau de bord',
16
+ 'Rename': 'Renommer',
17
+ 'Delete': 'Supprimer',
18
+ 'Edit': 'Modifier',
19
+ 'Copy': 'Copier',
20
+ 'Export_as_picture': 'Exporter comme une image',
21
+ 'Edit_the_chart': 'Modifier le graphique',
22
+ 'Choose_a_chart': 'Tous les graphiques',
23
+ 'Histogram': 'Histogramme',
24
+ 'Basic_histogram': 'Histogramme simple',
25
+ 'Grouped_histogram': 'Histogramme groupé',
26
+ 'Stacked_histogram': 'Histogramme empilé',
27
+ 'Time_comparison_histogram': 'Histogramme comparaison de temps',
28
+ 'Custom_histogram': 'Historgramme personnalisé',
29
+ 'Bar_chart': 'Graphique à barres',
30
+ 'Basic_bar_chart': 'Graphique à barres simple',
31
+ 'Grouped_bar_chart': 'Graphique à barres groupé',
32
+ 'Stacked_bar_chart': 'Graphique à barres empilé',
33
+ 'Line_chart': 'Graphique à courbes',
34
+ 'Basic_line_chart': 'Graphique à courbes simple',
35
+ 'Grouped_line_chart': 'Graphique à courbes groupé',
36
+ 'Pie_chart': 'Graphique circulaire',
37
+ 'Basic_pie_chart': 'Graphique circulaire simple',
38
+ 'Ring_chart': 'Graphique en anneau',
39
+ 'Scatter_chart': 'Graphique en nuage de points',
40
+ 'Combination_chart': 'Graphique combiné',
41
+ 'Map': 'Carte',
42
+ 'World_map': 'Planisphère',
43
+ 'Heat_map': 'Carte de chaleur',
44
+ 'Facet_chart': 'Graphique Facet',
45
+ 'Mirror_chart': 'Pyramide des âges ',
46
+ 'Card': 'Carte',
47
+ 'Basic_number_card': 'Carte d\'indicateur clé',
48
+ 'Trend_chart': 'Carte de tendance',
49
+ 'Data_settings': 'Paramètres de données',
50
+ 'Style_settings': 'Paramètres de style',
51
+ 'Untitled': 'Sans titre',
52
+ 'Settings': 'Paramètres',
53
+ 'Table': 'Tableau',
54
+ 'View': 'Vue',
55
+ 'Display_title': 'Titre à afficher',
56
+ 'X-axis': 'Axe des x',
57
+ 'Y-axis': 'Axe des y',
58
+ 'Y-axis(left side)': 'Axe des y (primaire)',
59
+ 'Y-axis(right side)': 'Axe des y (secondaire)',
60
+ 'Including_empty_cell': 'Inclure les cellules vides',
61
+ 'Color': 'Couleur',
62
+ 'Count_the_records': 'Regrouper les enregistrements selon l\'axe des x et compter les enregistrements dans chaque groupe',
63
+ 'Compute_sum_max_min': 'Regrouper les enregistrements selon l\'axe des x et calculer la somme, le maximum, le minimum ou la moyenne pour une colonne des enregistrements',
64
+ 'Numeric_column': 'Colonne numérique',
65
+ 'Select_a_column': 'Sélectionnner une colonne',
66
+ 'No_options': 'Il n\'y a pas d\'options.',
67
+ 'Counting': 'Counting',
68
+ 'Count_by_column': 'Regrouper les enregistrements en fonction d\'une colonne et les compter',
69
+ 'Display_legend': 'Afficher la légende',
70
+ 'Display_percent': 'Afficher le pourcentage',
71
+ 'Group_by': 'Groupé par',
72
+ 'Summary_method': 'Méthode de résumé',
73
+ 'Summarize_a_field': 'Résumer un champ',
74
+ 'Summarize_multiple_fields': 'Résumer plusieures champs',
75
+ 'Add_new_numeric_column': 'Ajouter une nouvelle colonne numérique',
76
+ 'Horizontal_axis': 'Axe horizontal',
77
+ 'Vertical_axis': 'Axe vertical',
78
+ 'Location_field': 'Colonne géolocalisation',
79
+ 'Time_field': 'Colonne temps',
80
+ 'Count_by_var': 'Regrouper les enregistrements selon {var} et compter les enregistrements dans chaque groupe',
81
+ 'Compute_sum_max_min_by_var': 'Regrouper les enregistrements selon {var} et calculer la somme, le maximum, le minimum ou la moyenne pour une colonne des enregistrements',
82
+ 'Count_the_number_of_records_in_each_group': 'Compter les enregistrements dans chaque group',
83
+ 'Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_a_field': 'Calculer la somme, le maximum, le minimum ou la moyenne dans chaque groupe pour une colonne',
84
+ 'Group_the_records_according_to_the_vertical_axis_and_count_the_records_in_each_group': 'Regrouper les enregistrement selon l\'axe vertical et compter les enregistrements dans chaque groupe',
85
+ 'Group_the_records_according_to_the_vertical_axis_and_compute_the_sum_maximum_or_minimum_of_records_in_each_group_by_a_field': 'Regrouper les enregistrements selon l\'axe vertical et calculer la somme, le maximum, le minimum ou la moyenne dans chaque groupe pour une colonne',
86
+ 'Compute_the_sum_maximum_or_minimum_value_of_records_in_each_group_by_multiple_fields': 'Calculer la somme, le maximum, le minimum ou la moyenne dans chaque groupe pour une colonne',
87
+ 'Statistic_field': 'Champ statistique',
88
+ 'Reversing': 'En ordre inverse',
89
+ 'Column_grouping_field': 'Champ pour le groupement de colonnes',
90
+ 'Label': 'Étiquette',
91
+ 'Row_count': 'Nombre de lignes',
92
+ 'Sum': 'Total',
93
+ 'Max': 'Maximum',
94
+ 'Mean': 'Moyenne',
95
+ 'Min': 'Minimum',
96
+ 'By_day': 'Par jour',
97
+ 'By_week': 'Par semaine',
98
+ 'By_month': 'Par mois',
99
+ 'By_quarter': 'Par trimestre',
100
+ 'By_year': 'Par an',
101
+ 'By_city': 'Par ville',
102
+ 'By_district_county': 'Par département/comté',
103
+ 'By_province': 'Par province',
104
+ 'Comparison_mode': 'Mode de comparaison',
105
+ 'Yesterday_vs_the_day_before_yesterday': 'Hier vs. avant-hier',
106
+ 'Last_week_vs_the_week_before_last': 'La semaine dernière vs. la semaine précédente',
107
+ 'Last_month_vs_the_month_before_last': 'Le mois dernier vs. le mois précédent',
108
+ 'Last_quarter_vs_the_quarter_before_last': 'Dernier trimestre vs. le trimestre précédent',
109
+ 'Last_year_vs_the_year_before_last': 'Dernière année vs. l\'année précédente',
110
+ 'Last_7_days_vs_previous_7_days': '7 derniers jours vs. 7 jours précédents',
111
+ 'Last_30_days_vs_previous_30_days': '30 derniers jours vs. 30 jours précédents',
112
+ 'The_year_before_last': 'L\'année précédente',
113
+ 'The_quarter_before_last': 'Le trimestre précédent',
114
+ 'The_month_before_last': 'Le mois précédent',
115
+ 'The_week_before_last': 'La semaine précédente',
116
+ 'Previous_7_days': '7 jours précédents',
117
+ 'Previous_30_days': '30 jours précédents',
118
+ 'The_day_before_yesterday': 'Avant-hier',
119
+ 'Can_not_compare_with_var': 'Impossible to comparer avec {var}',
120
+ 'Calculate_the_number_of_records_in_two_time_periods': 'Calculer le nombre d\'enregistrements pour deux périodes de temps',
121
+ 'Use_a_field_to_calculate_the_sum_maximum_or_minimum_value_of_records_in_two_time_periods': 'Utiliser une colonne pour calculer la somme, le maximum, le minimum ou la moyenne des enregistrements pour deux périodes de temps',
122
+ 'Sun': 'dim.',
123
+ 'Mon': 'lun.',
124
+ 'Tue': 'mar.',
125
+ 'Wed': 'mer.',
126
+ 'Thu': 'jeu.',
127
+ 'Fri': 'ven.',
128
+ 'Sat': 'sam.',
129
+ 'Jan': 'janvier',
130
+ 'Feb': 'février',
131
+ 'Mar': 'mars',
132
+ 'Apr': 'avril',
133
+ 'May': 'mai',
134
+ 'Jun': 'juin',
135
+ 'Jul': 'juillet',
136
+ 'Aug': 'août',
137
+ 'Sep': 'septembre',
138
+ 'Oct': 'octobre',
139
+ 'Nov': 'novembre',
140
+ 'Dec': 'décembre',
141
+ 'Total': 'Total',
142
+ 'Amount': 'Nombre',
143
+ 'Empty': 'Vide',
144
+ 'Left': 'A gauche',
145
+ 'Center': 'Centre',
146
+ 'Right': 'A droite',
147
+ 'Top': 'En haut',
148
+ 'Bottom': 'En bas',
149
+ 'Display_data': 'Afficher des étiquettes',
150
+ 'Auto_range': 'Limites automatiques',
151
+ 'Data_sorting': 'Tri',
152
+ 'Not_sorted': 'Non-trié',
153
+ 'Ascending': 'Croissant',
154
+ 'Descending': 'Décroissant',
155
+ 'Others': 'Autres',
156
+ 'Minimum_slice_percent': 'Pourcentage minimal de la tranche',
157
+ 'Label_font_size': 'Taille de police des étiquettes',
158
+ 'Bubble': 'Grahique à bulles',
159
+ 'Bubble_color': 'Couleur des bulles',
160
+ 'Area_chart': 'Graphiques en aires',
161
+ 'Grouped_area_chart': 'Graphique en aires groupé',
162
+ 'Date_range': 'Période',
163
+ 'Compare_to_date_range': 'Comparer à une période de temps',
164
+ 'Vertical': 'vertical',
165
+ 'Horizontal': 'horizontal',
166
+ 'Legend_direction': 'Direction de légende',
167
+ 'Legend_size': 'Taille de légende',
168
+ 'Completeness_chart': 'Graphique de progression',
169
+ 'Grouped_completeness_chart': 'Graphique de progression groupé',
170
+ 'Name_field': 'Nom',
171
+ 'Completion_value_field': 'Champ de valeur complété',
172
+ 'Total_value_field': 'Champ de valeur total',
173
+ 'Uncompleted': 'Non-complété',
174
+ 'Completed': 'Complété',
175
+ 'Display_percentage': 'Afficher le pourcentage',
176
+ 'Display_increase': 'Afficher le changement total',
177
+ 'Display_percentage_increase': 'Afficher le changement en pourcentage',
178
+ 'Gauge': 'Jauge',
179
+ 'Current_value_field': 'Champ de valeur actuel',
180
+ 'There_are_no_statistic_results_yet': 'Il n\'y a pas encore de résultat statistiques.',
181
+ 'Treemap': 'Carte proportionelle',
182
+ 'Display_stack_total_value': 'Afficher le total pour chaque barre',
183
+ 'Pivot_table': 'Tableau croisé dynamique',
184
+ 'Row_grouping_field': 'Champ pour le groupement des lignes',
185
+ 'Not_used': 'Ne pas utilisé',
186
+ 'Summary_column': 'Colonne de résumé',
187
+ 'Add_new_summary_column': 'Ajouter une nouvelle colonne de résumé',
188
+ 'Summary_type': 'Type de résumé',
189
+ 'Less': 'Moins',
190
+ 'More': 'Plus',
191
+ 'Checked': 'Cochée',
192
+ 'Unchecked': 'Décochée',
193
+ 'Use_the_colors_from_column_{name}': 'Utiliser les couleurs dans la colonne \"{name}\"',
194
+ 'Use_default_colors': 'Utiliser les couleurs par défaut',
195
+ 'Use_column_colors': 'Utiliser les couleurs des options',
196
+ 'Use_specific_colors': 'Utiliser les couleurs spécifiées',
197
+ 'Use_rules': 'Utiliser les règles',
198
+ 'No_rules': 'Aucune règle',
199
+ 'Add_rule': 'Ajouter une règle',
200
+ 'Added_1_rule': '1 règle a été ajoutée.',
201
+ 'Added_xxx_rules': '{rules_count} règles ont été ajoutées.',
202
+ 'Define_rule': 'Définir une règle',
203
+ 'Or': 'Ou',
204
+ 'And': 'Et',
205
+ 'Add_condition': 'Ajouter une condition',
206
+ 'equal': '=',
207
+ 'not_equal': '≠',
208
+ 'less': '<',
209
+ 'greater': '>',
210
+ 'less_or_equal': '≤',
211
+ 'greater_or_equal': '≥',
212
+ 'Increase': 'Augmenter',
213
+ 'Display_label': 'Ajouter des étiquettes',
214
+ 'Label_position': 'Position de l\'étiquette',
215
+ 'Inside_the_chart': 'Intérieur',
216
+ 'Outside_the_chart': 'Extérieur',
217
+ 'Label_format': 'Mise en forme des étiquettes',
218
+ 'Numeric_value': 'Valeur numérique',
219
+ 'Percent': 'Pourcent',
220
+ 'Numeric_value_and_percent': 'Valeur numérique (pourcent)',
221
+ 'Display_annotation': 'Afficher le total au milieu',
222
+ 'Font_size': 'Taille de police',
223
+ 'Grid_size': 'Taille de la grille\n',
224
+ 'Grid_distance': 'Ecart entre les grilles',
225
+ 'Number_of_distinct_values': 'Nombre de valeurs distinctes',
226
+ 'There_are_too_many_statistics_entries_to_display': 'Trop d\'enregistrements ont été sélectionnés pour l\'affichage. Veuillez modifier les paramètres d\'affichage.',
227
+ 'Clear_search_text': 'Vider le texte de recherche',
228
+ 'Search_records': 'Recherche d\'enregistrements',
229
+ 'Display_value_of_each_block': 'Afficher des étiquettes pour chaque bloc',
230
+ 'Chart_color_scheme': 'Thème de couleur du graphique',
231
+ 'Custom_title': 'Titre personnalisé',
232
+ 'Display_total': 'Afficher le total',
233
+ 'Line_color': 'Couleur de courbe',
234
+ 'Stack': 'Pile',
235
+ 'Add_new_stack': 'Ajouter une nouvelle pile'
236
+ };
237
+ export default fr;