@qrvey/utils 1.2.9-4 → 1.2.9-5

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.
@@ -1,19 +1,20 @@
1
1
  export interface II18nChartBuilderDimensions {
2
- dimension: string;
2
+ categories: string;
3
3
  category: string;
4
- value: string;
5
- values: string;
6
- series: string;
7
- other_values: string;
8
- pivot: string;
4
+ column: string;
5
+ columns: string;
6
+ dimension: string;
9
7
  distribution: string;
8
+ geolocation: string;
10
9
  group: string;
11
10
  groups: string;
12
- section: string;
13
- sections: string;
14
- column: string;
15
- columns: string;
11
+ other_values: string;
12
+ pivot: string;
16
13
  row: string;
17
14
  rows: string;
18
- geolocation: string;
15
+ section: string;
16
+ sections: string;
17
+ series: string;
18
+ value: string;
19
+ values: string;
19
20
  }
@@ -1,21 +1,25 @@
1
1
  export interface II18nChartBuilderGeneralOptions {
2
- max_data_points: string;
3
- max_series: string;
2
+ allow_pagination: string;
3
+ data_points: string;
4
4
  display_average: string;
5
+ does_not_apply_to_dates: string;
5
6
  fixed_scale: string;
6
- min_scale: string;
7
- max_scale: string;
8
7
  fixed_scale_placeholder: string;
9
- max_groups: string;
10
8
  freeze_first_column: string;
11
- view_labels: string;
12
- view_sorting: string;
13
- view_total: string;
14
- view_subtotals: string;
15
- max_rows: string;
9
+ max: string;
10
+ max_categories: string;
16
11
  max_columns: string;
12
+ max_data_points: string;
13
+ max_groups: string;
14
+ max_rows: string;
15
+ max_scale: string;
16
+ max_series: string;
17
17
  max_slices: string;
18
- max_categories: string;
19
- allow_pagination: string;
18
+ min_scale: string;
20
19
  records_per_page: string;
20
+ slices: string;
21
+ view_labels: string;
22
+ view_sorting: string;
23
+ view_subtotals: string;
24
+ view_total: string;
21
25
  }
@@ -45,47 +45,49 @@ exports.I18N_CHART_BUILDER_GENERAL = {
45
45
  timestamp: 'Timestamp'
46
46
  },
47
47
  data_panel: {
48
- loading: 'Loading ...',
49
- loading_data: 'loading Data',
50
- error_state: 'error state',
51
- title: 'Data',
52
- links: 'Links',
53
- linked_tooltip: 'Linked',
54
48
  column_tooltip: 'Column',
55
- go_dataset_tooltip: 'Go to Dataset',
56
- search_links_placeholder: 'Search Links',
57
- search_columns_placeholder: 'Search Columns',
58
49
  categories: 'Categories',
59
- no_categories_available: 'No categories available',
60
- values: 'Values',
61
- no_values_available: 'No values available',
50
+ error_state: 'error state',
62
51
  geolocations: 'Geolocations',
63
- no_geolocations_available: 'No geolocations available',
64
- no_geolocations_available_tooltips: 'Geolocation groups are required to <br> create maps. These groups can be<br> set up from the Data Page.',
52
+ go_dataset_tooltip: 'Go to Dataset',
53
+ linked_tooltip: 'Linked',
54
+ links: 'Links',
55
+ loading: 'Loading ...',
56
+ loading_data: 'loading Data',
57
+ no_categories_available: 'No categories available',
65
58
  no_data_available: 'There is no data available. Once data is added, it will be displayed here and you can begin creating charts.',
66
- no_data_moment_start: 'There is no data available at the moment,',
67
59
  no_data_moment_action: 'click here',
68
60
  no_data_moment_end: 'to create a dataset and begin working on your chart.',
69
- no_datasets_available: 'No datasets available'
61
+ no_data_moment_start: 'There is no data available at the moment,',
62
+ no_datasets_available: 'No datasets available',
63
+ no_geolocations_available: 'No geolocations available',
64
+ no_geolocations_available_tooltips: 'Geolocation groups are required to <br> create maps. These groups can be<br> set up from the Data Page.',
65
+ no_values_available: 'No values available',
66
+ search_columns_placeholder: 'Search Columns',
67
+ search_dataset_placeholder: 'Search Dataset',
68
+ search_links_placeholder: 'Search Links',
69
+ title: 'Data',
70
+ values: 'Values',
70
71
  },
71
72
  dimensions: {
72
- dimension: 'Dimension',
73
+ categories: 'Categories',
73
74
  category: 'Category',
74
- value: 'Value',
75
- values: 'Values',
76
- series: 'Series',
77
- other_values: 'Other Values',
78
- pivot: 'Pivot',
75
+ column: 'Column',
76
+ columns: 'Columns',
77
+ dimension: 'Dimension',
79
78
  distribution: 'Distribution',
79
+ geolocation: 'Geolocation',
80
80
  group: 'Group',
81
81
  groups: 'Groups',
82
- section: 'Section',
83
- sections: 'Sections',
84
- column: 'Column',
85
- columns: 'Columns',
82
+ other_values: 'Other Values',
83
+ pivot: 'Pivot',
86
84
  row: 'Row',
87
85
  rows: 'Rows',
88
- geolocation: 'Geolocation'
86
+ section: 'Section',
87
+ sections: 'Sections',
88
+ series: 'Series',
89
+ value: 'Value',
90
+ values: 'Values',
89
91
  },
90
92
  shelf_menu: {
91
93
  bucket: 'Cubo',
@@ -3,25 +3,29 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.I18N_CHART_BUILDER_GENERAL_OPTIONS = void 0;
4
4
  exports.I18N_CHART_BUILDER_GENERAL_OPTIONS = {
5
5
  general_options: {
6
- max_data_points: 'Max Data Points',
7
- max_series: 'Max Series',
6
+ allow_pagination: 'Allow Pagination',
7
+ data_points: 'Data Points',
8
8
  display_average: 'Display Average',
9
+ does_not_apply_to_dates: 'does not apply to Dates',
9
10
  fixed_scale: 'Fixed Scale',
10
- max_scale: 'Max Scale',
11
- min_scale: 'Min Scale',
12
11
  fixed_scale_placeholder: 'Auto',
13
- max_groups: 'maximo de grupos',
14
12
  freeze_first_column: 'Freeze First Column',
15
- view_labels: 'Label',
16
- view_sorting: 'Sorting',
17
- view_total: 'Totals',
18
- view_subtotals: 'Subtotals',
19
- max_rows: 'Max Rows',
13
+ max: 'Max {{attr}}',
14
+ max_categories: 'Max Categories',
20
15
  max_columns: 'Max Columns',
16
+ max_data_points: 'Max Data Points',
17
+ max_groups: 'Max Groups',
18
+ max_rows: 'Max Rows',
19
+ max_scale: 'Max Scale',
20
+ max_series: 'Max Series',
21
21
  max_slices: 'Max Slices',
22
- max_categories: 'Max Categories',
23
- allow_pagination: 'Allow Pagination',
22
+ min_scale: 'Min Scale',
24
23
  records_per_page: 'Records per page',
24
+ slices: 'Slices',
25
+ view_labels: 'Label',
26
+ view_sorting: 'Sorting',
27
+ view_subtotals: 'Subtotals',
28
+ view_total: 'Totals',
25
29
  },
26
30
  tooltip_settings: {
27
31
  name: 'Tooltips',
@@ -1,24 +1,25 @@
1
1
  export interface II18nChartBuilderDataPanel {
2
- loading: string;
3
- loading_data: string;
4
- error_state: string;
5
- title: string;
6
- links: string;
7
- linked_tooltip: string;
8
2
  column_tooltip: string;
9
- go_dataset_tooltip: string;
10
- search_links_placeholder: string;
11
- search_columns_placeholder: string;
12
3
  categories: string;
13
- no_categories_available: string;
14
- values: string;
15
- no_values_available: string;
4
+ error_state: string;
16
5
  geolocations: string;
17
- no_geolocations_available: string;
18
- no_geolocations_available_tooltips: string;
6
+ go_dataset_tooltip: string;
7
+ linked_tooltip: string;
8
+ links: string;
9
+ loading: string;
10
+ loading_data: string;
11
+ no_categories_available: string;
19
12
  no_data_available: string;
20
- no_data_moment_start: string;
21
13
  no_data_moment_action: string;
22
14
  no_data_moment_end: string;
15
+ no_data_moment_start: string;
23
16
  no_datasets_available: string;
17
+ no_geolocations_available: string;
18
+ no_geolocations_available_tooltips: string;
19
+ no_values_available: string;
20
+ search_columns_placeholder: string;
21
+ search_dataset_placeholder: string;
22
+ search_links_placeholder: string;
23
+ title: string;
24
+ values: string;
24
25
  }
@@ -1,19 +1,20 @@
1
1
  export interface II18nChartBuilderDimensions {
2
- dimension: string;
2
+ categories: string;
3
3
  category: string;
4
- value: string;
5
- values: string;
6
- series: string;
7
- other_values: string;
8
- pivot: string;
4
+ column: string;
5
+ columns: string;
6
+ dimension: string;
9
7
  distribution: string;
8
+ geolocation: string;
10
9
  group: string;
11
10
  groups: string;
12
- section: string;
13
- sections: string;
14
- column: string;
15
- columns: string;
11
+ other_values: string;
12
+ pivot: string;
16
13
  row: string;
17
14
  rows: string;
18
- geolocation: string;
15
+ section: string;
16
+ sections: string;
17
+ series: string;
18
+ value: string;
19
+ values: string;
19
20
  }
@@ -1,21 +1,25 @@
1
1
  export interface II18nChartBuilderGeneralOptions {
2
- max_data_points: string;
3
- max_series: string;
2
+ allow_pagination: string;
3
+ data_points: string;
4
4
  display_average: string;
5
+ does_not_apply_to_dates: string;
5
6
  fixed_scale: string;
6
- min_scale: string;
7
- max_scale: string;
8
7
  fixed_scale_placeholder: string;
9
- max_groups: string;
10
8
  freeze_first_column: string;
11
- view_labels: string;
12
- view_sorting: string;
13
- view_total: string;
14
- view_subtotals: string;
15
- max_rows: string;
9
+ max: string;
10
+ max_categories: string;
16
11
  max_columns: string;
12
+ max_data_points: string;
13
+ max_groups: string;
14
+ max_rows: string;
15
+ max_scale: string;
16
+ max_series: string;
17
17
  max_slices: string;
18
- max_categories: string;
19
- allow_pagination: string;
18
+ min_scale: string;
20
19
  records_per_page: string;
20
+ slices: string;
21
+ view_labels: string;
22
+ view_sorting: string;
23
+ view_subtotals: string;
24
+ view_total: string;
21
25
  }
@@ -42,47 +42,49 @@ export const I18N_CHART_BUILDER_GENERAL = {
42
42
  timestamp: 'Timestamp'
43
43
  },
44
44
  data_panel: {
45
- loading: 'Loading ...',
46
- loading_data: 'loading Data',
47
- error_state: 'error state',
48
- title: 'Data',
49
- links: 'Links',
50
- linked_tooltip: 'Linked',
51
45
  column_tooltip: 'Column',
52
- go_dataset_tooltip: 'Go to Dataset',
53
- search_links_placeholder: 'Search Links',
54
- search_columns_placeholder: 'Search Columns',
55
46
  categories: 'Categories',
56
- no_categories_available: 'No categories available',
57
- values: 'Values',
58
- no_values_available: 'No values available',
47
+ error_state: 'error state',
59
48
  geolocations: 'Geolocations',
60
- no_geolocations_available: 'No geolocations available',
61
- no_geolocations_available_tooltips: 'Geolocation groups are required to <br> create maps. These groups can be<br> set up from the Data Page.',
49
+ go_dataset_tooltip: 'Go to Dataset',
50
+ linked_tooltip: 'Linked',
51
+ links: 'Links',
52
+ loading: 'Loading ...',
53
+ loading_data: 'loading Data',
54
+ no_categories_available: 'No categories available',
62
55
  no_data_available: 'There is no data available. Once data is added, it will be displayed here and you can begin creating charts.',
63
- no_data_moment_start: 'There is no data available at the moment,',
64
56
  no_data_moment_action: 'click here',
65
57
  no_data_moment_end: 'to create a dataset and begin working on your chart.',
66
- no_datasets_available: 'No datasets available'
58
+ no_data_moment_start: 'There is no data available at the moment,',
59
+ no_datasets_available: 'No datasets available',
60
+ no_geolocations_available: 'No geolocations available',
61
+ no_geolocations_available_tooltips: 'Geolocation groups are required to <br> create maps. These groups can be<br> set up from the Data Page.',
62
+ no_values_available: 'No values available',
63
+ search_columns_placeholder: 'Search Columns',
64
+ search_dataset_placeholder: 'Search Dataset',
65
+ search_links_placeholder: 'Search Links',
66
+ title: 'Data',
67
+ values: 'Values',
67
68
  },
68
69
  dimensions: {
69
- dimension: 'Dimension',
70
+ categories: 'Categories',
70
71
  category: 'Category',
71
- value: 'Value',
72
- values: 'Values',
73
- series: 'Series',
74
- other_values: 'Other Values',
75
- pivot: 'Pivot',
72
+ column: 'Column',
73
+ columns: 'Columns',
74
+ dimension: 'Dimension',
76
75
  distribution: 'Distribution',
76
+ geolocation: 'Geolocation',
77
77
  group: 'Group',
78
78
  groups: 'Groups',
79
- section: 'Section',
80
- sections: 'Sections',
81
- column: 'Column',
82
- columns: 'Columns',
79
+ other_values: 'Other Values',
80
+ pivot: 'Pivot',
83
81
  row: 'Row',
84
82
  rows: 'Rows',
85
- geolocation: 'Geolocation'
83
+ section: 'Section',
84
+ sections: 'Sections',
85
+ series: 'Series',
86
+ value: 'Value',
87
+ values: 'Values',
86
88
  },
87
89
  shelf_menu: {
88
90
  bucket: 'Cubo',
@@ -1,24 +1,28 @@
1
1
  export const I18N_CHART_BUILDER_GENERAL_OPTIONS = {
2
2
  general_options: {
3
- max_data_points: 'Max Data Points',
4
- max_series: 'Max Series',
3
+ allow_pagination: 'Allow Pagination',
4
+ data_points: 'Data Points',
5
5
  display_average: 'Display Average',
6
+ does_not_apply_to_dates: 'does not apply to Dates',
6
7
  fixed_scale: 'Fixed Scale',
7
- max_scale: 'Max Scale',
8
- min_scale: 'Min Scale',
9
8
  fixed_scale_placeholder: 'Auto',
10
- max_groups: 'maximo de grupos',
11
9
  freeze_first_column: 'Freeze First Column',
12
- view_labels: 'Label',
13
- view_sorting: 'Sorting',
14
- view_total: 'Totals',
15
- view_subtotals: 'Subtotals',
16
- max_rows: 'Max Rows',
10
+ max: 'Max {{attr}}',
11
+ max_categories: 'Max Categories',
17
12
  max_columns: 'Max Columns',
13
+ max_data_points: 'Max Data Points',
14
+ max_groups: 'Max Groups',
15
+ max_rows: 'Max Rows',
16
+ max_scale: 'Max Scale',
17
+ max_series: 'Max Series',
18
18
  max_slices: 'Max Slices',
19
- max_categories: 'Max Categories',
20
- allow_pagination: 'Allow Pagination',
19
+ min_scale: 'Min Scale',
21
20
  records_per_page: 'Records per page',
21
+ slices: 'Slices',
22
+ view_labels: 'Label',
23
+ view_sorting: 'Sorting',
24
+ view_subtotals: 'Subtotals',
25
+ view_total: 'Totals',
22
26
  },
23
27
  tooltip_settings: {
24
28
  name: 'Tooltips',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrvey/utils",
3
- "version": "1.2.9-4",
3
+ "version": "1.2.9-5",
4
4
  "description": "Helper, Utils for all Qrvey Projects",
5
5
  "homepage": "https://bitbucket.org/qrvey/qrvey_utils/wiki/Home",
6
6
  "main": "dist/index.js",
@@ -1,24 +1,25 @@
1
1
  export interface II18nChartBuilderDataPanel {
2
- loading: string;
3
- loading_data: string;
4
- error_state: string;
5
- title: string;
6
- links: string;
7
- linked_tooltip: string;
8
2
  column_tooltip: string;
9
- go_dataset_tooltip: string;
10
- search_links_placeholder: string;
11
- search_columns_placeholder: string;
12
3
  categories: string;
13
- no_categories_available: string;
14
- values: string;
15
- no_values_available: string;
4
+ error_state: string;
16
5
  geolocations: string;
17
- no_geolocations_available: string;
18
- no_geolocations_available_tooltips: string;
6
+ go_dataset_tooltip: string;
7
+ linked_tooltip: string;
8
+ links: string;
9
+ loading: string;
10
+ loading_data: string;
11
+ no_categories_available: string;
19
12
  no_data_available: string;
20
- no_data_moment_start: string;
21
13
  no_data_moment_action: string;
22
14
  no_data_moment_end: string;
15
+ no_data_moment_start: string;
23
16
  no_datasets_available: string;
17
+ no_geolocations_available: string;
18
+ no_geolocations_available_tooltips: string;
19
+ no_values_available: string;
20
+ search_columns_placeholder: string;
21
+ search_dataset_placeholder: string;
22
+ search_links_placeholder: string;
23
+ title: string;
24
+ values: string;
24
25
  }
@@ -1,19 +1,20 @@
1
1
  export interface II18nChartBuilderDimensions {
2
- dimension: string;
2
+ categories: string;
3
3
  category: string;
4
- value: string;
5
- values: string;
6
- series: string;
7
- other_values: string;
8
- pivot: string;
4
+ column: string;
5
+ columns: string;
6
+ dimension: string;
9
7
  distribution: string;
8
+ geolocation: string;
10
9
  group: string;
11
10
  groups: string;
12
- section: string;
13
- sections: string;
14
- column: string;
15
- columns: string;
11
+ other_values: string;
12
+ pivot: string;
16
13
  row: string;
17
14
  rows: string;
18
- geolocation: string;
15
+ section: string;
16
+ sections: string;
17
+ series: string;
18
+ value: string;
19
+ values: string;
19
20
  }
@@ -1,21 +1,25 @@
1
1
  export interface II18nChartBuilderGeneralOptions {
2
- max_data_points: string;
3
- max_series: string;
2
+ allow_pagination: string;
3
+ data_points: string;
4
4
  display_average: string;
5
+ does_not_apply_to_dates: string;
5
6
  fixed_scale: string;
6
- min_scale: string;
7
- max_scale: string;
8
7
  fixed_scale_placeholder: string;
9
- max_groups: string;
10
8
  freeze_first_column: string;
11
- view_labels: string;
12
- view_sorting: string;
13
- view_total: string;
14
- view_subtotals: string;
15
- max_rows: string;
9
+ max: string;
10
+ max_categories: string;
16
11
  max_columns: string;
12
+ max_data_points: string;
13
+ max_groups: string;
14
+ max_rows: string;
15
+ max_scale: string;
16
+ max_series: string;
17
17
  max_slices: string;
18
- max_categories: string;
19
- allow_pagination: string;
18
+ min_scale: string;
20
19
  records_per_page: string;
20
+ slices: string;
21
+ view_labels: string;
22
+ view_sorting: string;
23
+ view_subtotals: string;
24
+ view_total: string;
21
25
  }
@@ -51,47 +51,49 @@ export const I18N_CHART_BUILDER_GENERAL: Pick<II18nChartBuilder, General> = {
51
51
  timestamp: 'Timestamp'
52
52
  },
53
53
  data_panel: {
54
- loading: 'Loading ...',
55
- loading_data: 'loading Data',
56
- error_state: 'error state',
57
- title: 'Data',
58
- links: 'Links',
59
- linked_tooltip: 'Linked',
60
54
  column_tooltip: 'Column',
61
- go_dataset_tooltip: 'Go to Dataset',
62
- search_links_placeholder: 'Search Links',
63
- search_columns_placeholder: 'Search Columns',
64
55
  categories: 'Categories',
65
- no_categories_available: 'No categories available',
66
- values: 'Values',
67
- no_values_available: 'No values available',
56
+ error_state: 'error state',
68
57
  geolocations: 'Geolocations',
69
- no_geolocations_available: 'No geolocations available',
70
- no_geolocations_available_tooltips: 'Geolocation groups are required to <br> create maps. These groups can be<br> set up from the Data Page.',
58
+ go_dataset_tooltip: 'Go to Dataset',
59
+ linked_tooltip: 'Linked',
60
+ links: 'Links',
61
+ loading: 'Loading ...',
62
+ loading_data: 'loading Data',
63
+ no_categories_available: 'No categories available',
71
64
  no_data_available: 'There is no data available. Once data is added, it will be displayed here and you can begin creating charts.',
72
- no_data_moment_start: 'There is no data available at the moment,',
73
65
  no_data_moment_action: 'click here',
74
66
  no_data_moment_end: 'to create a dataset and begin working on your chart.',
75
- no_datasets_available: 'No datasets available'
67
+ no_data_moment_start: 'There is no data available at the moment,',
68
+ no_datasets_available: 'No datasets available',
69
+ no_geolocations_available: 'No geolocations available',
70
+ no_geolocations_available_tooltips: 'Geolocation groups are required to <br> create maps. These groups can be<br> set up from the Data Page.',
71
+ no_values_available: 'No values available',
72
+ search_columns_placeholder: 'Search Columns',
73
+ search_dataset_placeholder: 'Search Dataset',
74
+ search_links_placeholder: 'Search Links',
75
+ title: 'Data',
76
+ values: 'Values',
76
77
  },
77
78
  dimensions: {
78
- dimension: 'Dimension',
79
+ categories: 'Categories',
79
80
  category: 'Category',
80
- value: 'Value',
81
- values: 'Values',
82
- series: 'Series',
83
- other_values: 'Other Values',
84
- pivot: 'Pivot',
81
+ column: 'Column',
82
+ columns: 'Columns',
83
+ dimension: 'Dimension',
85
84
  distribution: 'Distribution',
85
+ geolocation: 'Geolocation',
86
86
  group: 'Group',
87
87
  groups: 'Groups',
88
- section: 'Section',
89
- sections: 'Sections',
90
- column: 'Column',
91
- columns: 'Columns',
88
+ other_values: 'Other Values',
89
+ pivot: 'Pivot',
92
90
  row: 'Row',
93
91
  rows: 'Rows',
94
- geolocation: 'Geolocation'
92
+ section: 'Section',
93
+ sections: 'Sections',
94
+ series: 'Series',
95
+ value: 'Value',
96
+ values: 'Values',
95
97
  },
96
98
  shelf_menu: {
97
99
  bucket: 'Cubo',
@@ -3,25 +3,29 @@ type GeneralOptions = 'aggregated_formula' | 'general_options' | 'totals' | 'leg
3
3
 
4
4
  export const I18N_CHART_BUILDER_GENERAL_OPTIONS: Pick<II18nChartBuilder, GeneralOptions> = {
5
5
  general_options: {
6
- max_data_points: 'Max Data Points',
7
- max_series: 'Max Series',
6
+ allow_pagination: 'Allow Pagination',
7
+ data_points: 'Data Points',
8
8
  display_average: 'Display Average',
9
+ does_not_apply_to_dates: 'does not apply to Dates',
9
10
  fixed_scale: 'Fixed Scale',
10
- max_scale: 'Max Scale',
11
- min_scale: 'Min Scale',
12
11
  fixed_scale_placeholder: 'Auto',
13
- max_groups: 'maximo de grupos',
14
12
  freeze_first_column: 'Freeze First Column',
15
- view_labels: 'Label',
16
- view_sorting: 'Sorting',
17
- view_total: 'Totals',
18
- view_subtotals: 'Subtotals',
19
- max_rows: 'Max Rows',
13
+ max: 'Max {{attr}}',
14
+ max_categories: 'Max Categories',
20
15
  max_columns: 'Max Columns',
16
+ max_data_points: 'Max Data Points',
17
+ max_groups: 'Max Groups',
18
+ max_rows: 'Max Rows',
19
+ max_scale: 'Max Scale',
20
+ max_series: 'Max Series',
21
21
  max_slices: 'Max Slices',
22
- max_categories: 'Max Categories',
23
- allow_pagination: 'Allow Pagination',
22
+ min_scale: 'Min Scale',
24
23
  records_per_page: 'Records per page',
24
+ slices: 'Slices',
25
+ view_labels: 'Label',
26
+ view_sorting: 'Sorting',
27
+ view_subtotals: 'Subtotals',
28
+ view_total: 'Totals',
25
29
  },
26
30
  tooltip_settings: {
27
31
  name: 'Tooltips',