@sapui5/sap.suite.ui.microchart 1.84.46 → 1.84.48

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 (31) hide show
  1. package/package.json +1 -1
  2. package/src/sap/suite/ui/microchart/.library +1 -1
  3. package/src/sap/suite/ui/microchart/AreaMicroChart.js +1 -1
  4. package/src/sap/suite/ui/microchart/AreaMicroChartItem.js +1 -1
  5. package/src/sap/suite/ui/microchart/AreaMicroChartLabel.js +1 -1
  6. package/src/sap/suite/ui/microchart/AreaMicroChartPoint.js +1 -1
  7. package/src/sap/suite/ui/microchart/BulletMicroChart.js +1 -1
  8. package/src/sap/suite/ui/microchart/BulletMicroChartData.js +1 -1
  9. package/src/sap/suite/ui/microchart/ColumnMicroChart.js +1 -1
  10. package/src/sap/suite/ui/microchart/ColumnMicroChartData.js +1 -1
  11. package/src/sap/suite/ui/microchart/ColumnMicroChartLabel.js +1 -1
  12. package/src/sap/suite/ui/microchart/ComparisonMicroChart.js +1 -1
  13. package/src/sap/suite/ui/microchart/ComparisonMicroChartData.js +1 -1
  14. package/src/sap/suite/ui/microchart/DeltaMicroChart.js +1 -1
  15. package/src/sap/suite/ui/microchart/HarveyBallMicroChart.js +1 -1
  16. package/src/sap/suite/ui/microchart/HarveyBallMicroChartItem.js +1 -1
  17. package/src/sap/suite/ui/microchart/InteractiveBarChart.js +1 -1
  18. package/src/sap/suite/ui/microchart/InteractiveBarChartBar.js +1 -1
  19. package/src/sap/suite/ui/microchart/InteractiveDonutChart.js +1 -1
  20. package/src/sap/suite/ui/microchart/InteractiveDonutChartSegment.js +1 -1
  21. package/src/sap/suite/ui/microchart/InteractiveLineChart.js +1 -1
  22. package/src/sap/suite/ui/microchart/InteractiveLineChartPoint.js +1 -1
  23. package/src/sap/suite/ui/microchart/LineMicroChart.js +1 -1
  24. package/src/sap/suite/ui/microchart/LineMicroChartEmphasizedPoint.js +1 -1
  25. package/src/sap/suite/ui/microchart/LineMicroChartLine.js +1 -1
  26. package/src/sap/suite/ui/microchart/LineMicroChartPoint.js +1 -1
  27. package/src/sap/suite/ui/microchart/RadialMicroChart.js +1 -1
  28. package/src/sap/suite/ui/microchart/StackedBarMicroChart.js +1 -1
  29. package/src/sap/suite/ui/microchart/StackedBarMicroChartBar.js +1 -1
  30. package/src/sap/suite/ui/microchart/library.js +2 -2
  31. package/src/sap/suite/ui/microchart/messagebundle_en_US_saptrc.properties +127 -75
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.suite.ui.microchart",
3
- "version": "1.84.46",
3
+ "version": "1.84.48",
4
4
  "description": "SAPUI5 Library sap.suite.ui.microchart",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -6,7 +6,7 @@
6
6
  <copyright>SAPUI5
7
7
 
8
8
  (c) Copyright 2009-2020 SAP SE. All rights reserved</copyright>
9
- <version>1.84.46</version>
9
+ <version>1.84.48</version>
10
10
 
11
11
  <documentation>UI5 library: sap.suite.ui.microchart</documentation>
12
12
 
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.core.Control
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.84.46
38
+ * @version 1.84.48
39
39
  * @since 1.34
40
40
  *
41
41
  * @public
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.84.46
23
+ * @version 1.84.48
24
24
  * @since 1.34
25
25
  *
26
26
  * @public
@@ -17,7 +17,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
17
17
  * Displays or hides the labels for start and end dates, start and end values, and minimum and maximum values.
18
18
  * @extends sap.ui.core.Element
19
19
  *
20
- * @version 1.84.46
20
+ * @version 1.84.48
21
21
  * @since 1.34
22
22
  *
23
23
  * @public
@@ -18,7 +18,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
18
18
  * @extends sap.ui.core.Element
19
19
  *
20
20
  * @author SAP SE
21
- * @version 1.84.46
21
+ * @version 1.84.48
22
22
  * @since 1.34
23
23
  *
24
24
  * @public
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  * <br>Note: You can assign a custom tooltip for this microchart. The custom tooltip can be set using expression binding. When no custom tooltip is defined, the tooltip is generated automatically based on the logic described in {@link sap.ui.core.Element#getTooltip_AsString}. For a combination of a generated and a custom tooltip, use <code>((AltText))</code> inside of the tooltip string. The aggregated data of the microchart can also be customized.
41
41
  * @extends sap.ui.core.Control
42
42
  *
43
- * @version 1.84.46
43
+ * @version 1.84.48
44
44
  * @since 1.34
45
45
  *
46
46
  * @public
@@ -17,7 +17,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
17
17
  * Contains the thresholds data.
18
18
  * @extends sap.ui.core.Element
19
19
  *
20
- * @version 1.84.46
20
+ * @version 1.84.48
21
21
  * @since 1.34
22
22
  *
23
23
  * @constructor
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * @extends sap.ui.core.Control
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.84.46
39
+ * @version 1.84.48
40
40
  * @since 1.34
41
41
  *
42
42
  * @public
@@ -17,7 +17,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
17
17
  * Defines the column chart data.
18
18
  * @extends sap.ui.core.Element
19
19
  *
20
- * @version 1.84.46
20
+ * @version 1.84.48
21
21
  * @since 1.34
22
22
  *
23
23
  * @public
@@ -18,7 +18,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
18
18
  * Displays or hides the labels of a column micro chart.
19
19
  * @extends sap.ui.core.Element
20
20
  *
21
- * @version 1.84.46
21
+ * @version 1.84.48
22
22
  * @since 1.34
23
23
  *
24
24
  * @public
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * <br>Note: You can assign a custom tooltip for this microchart. The custom tooltip can be set using expression binding. When no custom tooltip is defined, the tooltip is generated automatically based on the logic described in {@link sap.ui.core.Element#getTooltip_AsString}. For a combination of a generated and a custom tooltip, use <code>((AltText))</code> inside of the tooltip string. The aggregated data of the microchart can also be customized.
34
34
  * @extends sap.ui.core.Control
35
35
  *
36
- * @version 1.84.46
36
+ * @version 1.84.48
37
37
  * @since 1.34
38
38
  *
39
39
  * @public
@@ -17,7 +17,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element', 'sap/ui/core/Control'],
17
17
  * Contains the values of the comparison chart.
18
18
  * @extends sap.ui.core.Element
19
19
  *
20
- * @version 1.84.46
20
+ * @version 1.84.48
21
21
  * @since 1.34
22
22
  *
23
23
  * @constructor
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  * @extends sap.ui.core.Control
45
45
  *
46
46
  * @author SAP SE
47
- * @version 1.84.46
47
+ * @version 1.84.48
48
48
  * @since 1.34
49
49
  *
50
50
  * @public
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.core.Control
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.84.46
38
+ * @version 1.84.48
39
39
  * @since 1.34
40
40
  *
41
41
  * @public
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.84.46
23
+ * @version 1.84.48
24
24
  * @since 1.34
25
25
  *
26
26
  * @public
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Control
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.84.46
31
+ * @version 1.84.48
32
32
  *
33
33
  * @public
34
34
  * @since 1.42.0
@@ -16,7 +16,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
16
16
  * @extends sap.ui.core.Element
17
17
  *
18
18
  * @author SAP SE
19
- * @version 1.84.46
19
+ * @version 1.84.48
20
20
  *
21
21
  * @public
22
22
  * @since 1.42.0
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Control
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.84.46
31
+ * @version 1.84.48
32
32
  *
33
33
  * @public
34
34
  * @since 1.42.0
@@ -15,7 +15,7 @@ sap.ui.define(["./library", "sap/ui/core/Element"], function(library, Element) {
15
15
  * @extends sap.ui.core.Element
16
16
  *
17
17
  * @author SAP SE
18
- * @version 1.84.46
18
+ * @version 1.84.48
19
19
  *
20
20
  * @public
21
21
  * @since 1.42.0
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * The InteractiveLineChart control belongs to a chart control group in the MicroChart library having a number of interactive features.
38
38
  * @extends sap.ui.core.Control
39
39
  * @author SAP SE
40
- * @version 1.84.46
40
+ * @version 1.84.48
41
41
  *
42
42
  * @public
43
43
  * @since 1.42.0
@@ -16,7 +16,7 @@ sap.ui.define(['./library', 'sap/ui/core/Element'],
16
16
  * @extends sap.ui.core.Element
17
17
  *
18
18
  * @author SAP SE
19
- * @version 1.84.46
19
+ * @version 1.84.48
20
20
  *
21
21
  * @public
22
22
  * @since 1.42.0
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * <br>Note: You can assign a custom tooltip for this microchart. The custom tooltip can be set using expression binding. When no custom tooltip is defined, the tooltip is generated automatically based on the logic described in {@link sap.ui.core.Element#getTooltip_AsString}. For a combination of a generated and a custom tooltip, use <code>((AltText))</code> inside of the tooltip string.
31
31
  * @extends sap.ui.core.Control
32
32
  *
33
- * @version 1.84.46
33
+ * @version 1.84.48
34
34
  * @since 1.48.0
35
35
  *
36
36
  * @public
@@ -21,7 +21,7 @@ sap.ui.define(["sap/m/library", "sap/suite/ui/microchart/LineMicroChartPoint"],
21
21
  * Contains the emphasized point of the line micro chart.
22
22
  * @extends sap.suite.ui.microchart.LineMicroChartPoint
23
23
  *
24
- * @version 1.84.46
24
+ * @version 1.84.48
25
25
  * @since 1.48.0
26
26
  *
27
27
  * @constructor
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  * @extends sap.ui.core.Element
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.84.46
28
+ * @version 1.84.48
29
29
  * @since 1.60
30
30
  *
31
31
  * @public
@@ -18,7 +18,7 @@ sap.ui.define(['sap/ui/core/Element'],
18
18
  * Contains the point of the line micro chart.
19
19
  * @extends sap.ui.core.Element
20
20
  *
21
- * @version 1.84.46
21
+ * @version 1.84.48
22
22
  * @since 1.48.0
23
23
  *
24
24
  * @constructor
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * @extends sap.ui.core.Control
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.84.46
33
+ * @version 1.84.48
34
34
  * @since 1.36.0
35
35
  *
36
36
  * @constructor
@@ -30,7 +30,7 @@ sap.ui.define([
30
30
  * <br>Note: You can assign a custom tooltip for this microchart. The custom tooltip can be set using expression binding. When no custom tooltip is defined, the tooltip is generated automatically based on the logic described in {@link sap.ui.core.Element#getTooltip_AsString}. For a combination of a generated and a custom tooltip, use <code>((AltText))</code> inside of the tooltip string. The aggregated data of the microchart can also be customized.
31
31
  * @extends sap.ui.core.Control
32
32
  *
33
- * @version 1.84.46
33
+ * @version 1.84.48
34
34
  * @since 1.44.0
35
35
  *
36
36
  * @public
@@ -20,7 +20,7 @@ sap.ui.define(["sap/ui/thirdparty/jquery", './library', 'sap/ui/core/Element', "
20
20
  * Contains the values of the stacked bar chart.
21
21
  * @extends sap.ui.core.Element
22
22
  *
23
- * @version 1.84.46
23
+ * @version 1.84.48
24
24
  * @since 1.44.0
25
25
  *
26
26
  * @constructor
@@ -19,14 +19,14 @@ sap.ui.define([
19
19
  * @namespace sap.suite.ui.microchart
20
20
  * @name sap.suite.ui.microchart
21
21
  * @author SAP SE
22
- * @version 1.84.46
22
+ * @version 1.84.48
23
23
  * @public
24
24
  */
25
25
 
26
26
  // delegate further initialization of this library to the Core
27
27
  sap.ui.getCore().initLibrary({
28
28
  name: "sap.suite.ui.microchart",
29
- version: "1.84.46",
29
+ version: "1.84.48",
30
30
  // library dependencies
31
31
  dependencies: ["sap.ui.core", "sap.m"],
32
32
  types: [
@@ -1,75 +1,127 @@
1
-
2
- LINEMICROCHART=QSP0H4RimIOwr2FjJon7Bg_Line Micro Chart
3
- LINEMICROCHART_START=o8tQ0xebKSiDphOfJZGfAg_Start
4
- LINEMICROCHART_END=G6DPBfPHklHnyPw6snLfJg_End
5
-
6
- AREAMICROCHART=6qop6Fen5pxyitZW+/e08w_Area Micro Chart
7
- AREAMICROCHART_START=5WV4vazjriAiRR+T2ZclYw_Start
8
- AREAMICROCHART_END=5ca+e5wixcRF+I6iSjDLMw_End
9
- AREAMICROCHART_MINIMAL_VALUE=BAEcjbQD96FCrxA16zqpKA_Minimal value
10
- AREAMICROCHART_MAXIMAL_VALUE=ttuuwKlo8JfsFcHzDi+EpA_Maximal value
11
- AREAMICROCHART_ACTUAL_VALUES=SfStXkeUpSy9ee5nnW9lqg_Actual values
12
- AREAMICROCHART_TARGET_VALUES=7aBj9IDHv/LIJBhzqSeRig_Target values
13
- AREAMICROCHART_LINE=ReLF+c/Ffth4Z3iulkpA+g_Line {0}
14
-
15
- BULLETMICROCHART=rjVJgxIIfKpaeiW/SZMEPw_Bullet Micro Chart
16
- BULLETMICROCHART_DELTA_TOOLTIP=QCk4pcGnPAT46ujcrxXybw_Delta {0} {1}
17
- BULLETMICROCHART_ACTUAL_TOOLTIP=GrQVbIlMtC6nrVPM7OLoZA_Actual {0} {1}
18
- BULLETMICROCHART_FORECAST_TOOLTIP=N+SpM+WL50u3IBT6tbpNYg_Forecast {0} {1}
19
- BULLETMICROCHART_TARGET_TOOLTIP=pqo2F8+s2w/CLTJJBWIdPw_Target {0}
20
- BULLETMICROCHART_THRESHOLD_TOOLTIP=fawRNOZk4ycaOVdxtPIl0w_Threshold {0} {1}
21
-
22
- COLUMNMICROCHART=zP9rioz5SjDvKIPx2SMGzw_Column Micro Chart
23
- COLUMNMICROCHART_START=5LMVTtRI66d9eH+gVgmB1Q_Start
24
- COLUMNMICROCHART_END=UDdLH1b7yYq2XNWr+YJpkA_End
25
-
26
- COMPARISONMICROCHART=Iem4vn4L7XHQdldBsYH/lw_Comparison Micro Chart
27
-
28
- DELTAMICROCHART=s9dXKnrZiqar8zdr+llySw_Delta Micro Chart
29
- DELTAMICROCHART_DELTA_TOOLTIP=Z98zMW4hgDixUWOmt0GP6Q_Delta {0} {1}
30
-
31
- HARVEYBALLMICROCHART=MegiUWZLB5D4nezgFHPU1g_Harvey Ball Micro Chart
32
- HARVEYBALLMICROCHART_TOTAL_TOOLTIP=04aTp3BhQjP6A8PuV0j5fg_Total
33
-
34
- INFOTILE_CANNOT_LOAD_TILE=vBj+q0zUB+x/pWND/LzFzw_Cannot load tile
35
- INFOTILE_LOADING=G0jMygaxxrdaUbFtv+9N6g_Loading
36
-
37
- SEMANTIC_COLOR_CRITICAL=mJzrkgl0Nz/DwLlYpGqYFg_Warning
38
- SEMANTIC_COLOR_GOOD=bvcuzzTN5uDTdhSBvbcdjA_Good
39
- SEMANTIC_COLOR_NEUTRAL=9ll6iU+M8SpxlYOBwPEl1Q_Neutral
40
- SEMANTIC_COLOR_ERROR=nO6KtNaNuFUnxK0BWOfitw_Critical
41
-
42
- NO_DATA=xe3VSWOzWcAVqe2q9vH4hQ_No data
43
- IS_ACTIVE=X4vJp5K3Ft0opV3Dkm6UVQ_is active
44
-
45
- INTERACTIVECHART_NA=Q1KxAMLrTo2wui25pOIAiA_N/A
46
-
47
- RADIALMICROCHART=i1kHswKRMQqJfDgkrUaU+A_Radial Micro Chart
48
- RADIALMICROCHART_ARIA_LABEL=rw0wYzgWDnKtemPyMLf9Eg_{0}%, status {1}
49
- RADIALMICROCHART_PERCENTAGE_TEXT=XpYs3GThwNm13rt4975kjw_{0}%
50
-
51
- STACKEDBARMICROCHART=RVnSzwKPPdj5kj6VQUIP/A_Stacked Bar Micro Chart
52
-
53
- ACC_CTR_TYPE_AREAMICROCHART=u38pfjRN2gDR3ojpIOS2jw_Area Chart Visualization
54
-
55
- ACC_CTR_TYPE_BULLETMICROCHART=rAZ6wzvWSFf2QOpuSMJ4eg_Bullet Chart Visualization
56
-
57
- ACC_CTR_TYPE_COLUMNMICROCHART=vdHrxe1zUUaMKU/ONwjwaQ_Column Chart Visualization
58
-
59
- ACC_CTR_TYPE_COMPARISONMICROCHART=UriwsL257xBux4uOCsRSHg_Comparison Chart Visualization
60
-
61
- ACC_CTR_TYPE_DELTAMICROCHART=FbjfYUUPE7UpF0nVZYzHxQ_Delta Chart Visualization
62
-
63
- ACC_CTR_TYPE_HARVEYBALLMICROCHART=X1bai7iKU5jsqI7XQ89uYQ_Harvey Ball Chart Visualization
64
-
65
- ACC_CTR_TYPE_LINEMICROCHART=C4bnq0I+lXpnVUCDE617eg_Line Chart Visualization
66
-
67
- ACC_CTR_TYPE_RADIALMICROCHART=jsljQG6CgBsxd37TJjgSVg_Chart Visualization
68
-
69
- ACC_CTR_TYPE_STACKEDBARMICROCHART=HZwDSphgFLgmDOOorAzr3g_Stacked Bar Chart Visualization
70
-
71
- INTERACTIVEBARCHART=cOpshkXjMTgXdDOgledv8w_Interactive Bar Chart
72
-
73
- INTERACTIVEDONUTCHART=dyCn8XP8At/CTBmcefs0Jw_Interactive Donut Chart
74
-
75
- INTERACTIVELINECHART=HNYlkX8Esktw0baN5rtjpQ_Interactive Line Chart
1
+ #This is the resource bundle for the sap.suite.ui.microchart library
2
+ #
3
+
4
+ #XTOL: name of line micro chart used in aria label
5
+ LINEMICROCHART=wcFbY+7uLTfTQDIp25mLvQ_Line Micro Chart
6
+ #XTOL: tooltip for start
7
+ LINEMICROCHART_START=0Qod9qLS7R32QmOKvH3Jhg_Start
8
+ #XTOL: tooltip for end
9
+ LINEMICROCHART_END=nx+0dEO6WWHTvTIkP49fxg_End
10
+
11
+ #XTOL: name of area micro chart used in aria label
12
+ AREAMICROCHART=ZKFWuKsEuZxT3l7UEk/xiw_Area Micro Chart
13
+ #XTOL: tooltip for start
14
+ AREAMICROCHART_START=7HWCxa0IS832mZAmgFrDwg_Start
15
+ #XTOL: tooltip for end
16
+ AREAMICROCHART_END=Gg98r+DYaxP+OMM7ntiRZw_End
17
+ #XTOL: tooltip for minimal value
18
+ AREAMICROCHART_MINIMAL_VALUE=upVbrkLPENrP/mkvt07w2A_Minimal value
19
+ #XTOL: tooltip for maximal value
20
+ AREAMICROCHART_MAXIMAL_VALUE=/xNLtiZiLiMWJhrQICl3pg_Maximal value
21
+ #XTOL: tooltip for actual value
22
+ AREAMICROCHART_ACTUAL_VALUES=UH2L5zz3RfA3vkociBbaTQ_Actual values
23
+ #XTOL: tooltip for target values
24
+ AREAMICROCHART_TARGET_VALUES=G+y6LrXCfgF7trc1qpfHRA_Target values
25
+ #XTOL: tooltip for line and its number
26
+ AREAMICROCHART_LINE=A5gtp7NSIOsvZS/sok72tg_Line {0}
27
+
28
+ #XTOL: name of bullet micro chart used in aria label
29
+ BULLETMICROCHART=k9yZk7XID2J+l9sfeiPQnA_Bullet Micro Chart
30
+ #XTOL: tooltip for delta. 0 - value, 1 - semantic color
31
+ BULLETMICROCHART_DELTA_TOOLTIP=m22dlNj/vTx8wC2h6kRyGQ_Delta {0} {1}
32
+ #XTOL: tooltip for actual value. 0 - value, 1 - semantic color
33
+ BULLETMICROCHART_ACTUAL_TOOLTIP=uCNle7z2k4RFVHHf2a7gEA_Actual {0} {1}
34
+ #XTOL: tooltip for forecast value. 0 - value, 1 - semantic color
35
+ BULLETMICROCHART_FORECAST_TOOLTIP=UUGbuhUS7EUQiyEeBV0DOg_Forecast {0} {1}
36
+ #XTOL: tooltip for target value. 0 - value
37
+ BULLETMICROCHART_TARGET_TOOLTIP=iBC7SByfCBFKyaywmuv3BA_Target {0}
38
+ #XTOL: tooltip for threshold value. 0 - value, 1 - semantic color
39
+ BULLETMICROCHART_THRESHOLD_TOOLTIP=R5Igg3NsnO+YFn/ahV5qMw_Threshold {0} {1}
40
+
41
+ #XTOL: name of column micro chart used in aria label
42
+ COLUMNMICROCHART=n8CjgsZHDUY8S0gs6/W2Og_Column Micro Chart
43
+ #XTOL: tooltip for start
44
+ COLUMNMICROCHART_START=bovhhYrcXbNtC83E3bFJrQ_Start
45
+ #XTOL: tooltip for end
46
+ COLUMNMICROCHART_END=TNUAP9mKQfO+2WjcBrsCtw_End
47
+
48
+ #XTOL: name of comparison micro chart used in aria label
49
+ COMPARISONMICROCHART=fmS2YHHenfsmkgoPCn6rCg_Comparison Micro Chart
50
+
51
+ #XTOL: name of delta micro chart used in aria label
52
+ DELTAMICROCHART=8pcnhekSJIBRzH7J1dzOmA_Delta Micro Chart
53
+ #XTOL: tooltip for delta. 0 - value, 1 - semantic color
54
+ DELTAMICROCHART_DELTA_TOOLTIP=Vxcxr7p7ebFjZQ3fAyK6yw_Delta {0} {1}
55
+
56
+ #XTOL: name of harvey ball micro chart used in aria label
57
+ HARVEYBALLMICROCHART=7JLiu+YBXeEt5YSf5fvEzA_Harvey Ball Micro Chart
58
+ #XTOL: tooltip for Total value
59
+ HARVEYBALLMICROCHART_TOTAL_TOOLTIP=yR/icshlj/FCk1cBDG3i2Q_Total
60
+
61
+ #XFLD: text that will be read when tile cannot be loaded
62
+ INFOTILE_CANNOT_LOAD_TILE=kO/b8+0HVUalDyT2p5wz1Q_Cannot load tile
63
+ #XFLD: text that will be read while tile is loading
64
+ INFOTILE_LOADING=2wV/QiJskfrasdBqYZdUzg_Loading
65
+
66
+ #XTXT: text for critical color
67
+ SEMANTIC_COLOR_CRITICAL=0jvJYm8Ku3Wz443dXoPWsg_Warning
68
+ #XTXT: text for good color
69
+ SEMANTIC_COLOR_GOOD=rN4jTBlE6AeBvvmATSt+rw_Good
70
+ #XTXT: text for neutral color
71
+ SEMANTIC_COLOR_NEUTRAL=+JsLm7bLtRVJyGdJ8dOprw_Neutral
72
+ #XTXT: text for error color
73
+ SEMANTIC_COLOR_ERROR=E09JNbvWVsKQOQLmBd2+ow_Critical
74
+
75
+ #XTXT: text rendered instead of control when there are no data
76
+ NO_DATA=wEGcvwTHWoWJLYQo3T1hdg_No data
77
+ #XTXT: text used in aria-label to describe active (with tabindex 0) chart
78
+ IS_ACTIVE=t02rFbarF+67wSdg+HCQSg_is active
79
+
80
+ #XFLD: Label text for not available values in InteractiveChart - if possible, use an abbreviation or short text in target languages
81
+ INTERACTIVECHART_NA=57tmK1Xt+nL2ARG9WiSNZA_N/A
82
+
83
+ #XTOL: name of radial micro chart used in aria label
84
+ RADIALMICROCHART=fD71iObCHYEj3LYn5IFf/A_Radial Micro Chart
85
+ #XFLD: aria label text for RadialMicroChart
86
+ RADIALMICROCHART_ARIA_LABEL=Go1/vSMHdL3+bJgVyES+Fw_{0}%, status {1}
87
+ #XFLD: text with percentage value for RadialMicroChart
88
+ RADIALMICROCHART_PERCENTAGE_TEXT=fyauRdFjUtKOVoDKxDAXSg_{0}%
89
+
90
+ #XTOL: name of stacked bar micro chart used in aria label
91
+ STACKEDBARMICROCHART=oNRaYQ8Jmmm8Q6OV5L77yg_Stacked Bar Chart
92
+
93
+ #XACT: type of a UI control is an AreaMicroChart
94
+ ACC_CTR_TYPE_AREAMICROCHART=ahvVuZ6Kkc6ONVq6bvwNiw_Area Chart Visualization
95
+
96
+ #XACT: type of a UI control is a BulletMicroChart
97
+ ACC_CTR_TYPE_BULLETMICROCHART=aUnnNd4gw7ZBJ7rcBYE1Dg_Bullet Chart Visualization
98
+
99
+ #XACT: type of a UI control is a ColumnMicroChart
100
+ ACC_CTR_TYPE_COLUMNMICROCHART=7crB2TNtQrmabC8+Vpo33w_Column Chart Visualization
101
+
102
+ #XACT: type of a UI control is a ComparisonMicroChart
103
+ ACC_CTR_TYPE_COMPARISONMICROCHART=eibJfNrdsfFxMiMsYxJmOA_Comparison Chart Visualization
104
+
105
+ #XACT: type of a UI control is a DeltaMicroChart
106
+ ACC_CTR_TYPE_DELTAMICROCHART=efoW0c74X6mEoRShIS3QHg_Delta Chart Visualization
107
+
108
+ #XACT: type of a UI control is a HarveyBallMicroChart
109
+ ACC_CTR_TYPE_HARVEYBALLMICROCHART=8uvoQq9yQvFvTqhgsgy+nQ_Harvey Ball Chart Visualization
110
+
111
+ #XACT: type of a UI control is a LineMicroChart
112
+ ACC_CTR_TYPE_LINEMICROCHART=G76pKfiv+uWWkRUWr6XuHQ_Line Chart Visualization
113
+
114
+ #XACT: type of a UI control is a RadialMicroChart
115
+ ACC_CTR_TYPE_RADIALMICROCHART=iQpXEhMqDG3Hwno8Bo6r2A_Chart Visualization
116
+
117
+ #XACT: type of a UI control is a StackedBarMicroChart
118
+ ACC_CTR_TYPE_STACKEDBARMICROCHART=3MrLmiaEPEu2A5d5OdRHEw_Stacked Bar Chart Visualization
119
+
120
+ #XACT: type of a UI control is a InteractiveBarChart
121
+ INTERACTIVEBARCHART=OUsIF+f9dqDdsgjVJEyg7A_Interactive Bar Chart
122
+
123
+ #XACT: type of a UI control is a InteractiveDonutChart
124
+ INTERACTIVEDONUTCHART=XLhzP7gJd+UZOebRd9+Pjg_Interactive Donut Chart
125
+
126
+ #XACT: type of a UI control is a InteractiveLineChart
127
+ INTERACTIVELINECHART=jFuTJ1UHMKdH6n9o6d82LA_Interactive Line Chart