@dhis2/analytics 26.9.6 → 26.10.1

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 (129) hide show
  1. package/build/cjs/__demo__/DataDimension.stories.js +53 -0
  2. package/build/cjs/api/dimensions.js +1 -1
  3. package/build/cjs/api/expression.js +20 -10
  4. package/build/cjs/components/DataDimension/Calculation/CalculationModal.js +1 -1
  5. package/build/cjs/components/DataDimension/DataDimension.js +4 -1
  6. package/build/cjs/components/DataDimension/Info/CalculationInfo.js +106 -0
  7. package/build/cjs/components/DataDimension/Info/DataElementInfo.js +135 -0
  8. package/build/cjs/components/DataDimension/Info/DataElementOperandInfo.js +188 -0
  9. package/build/cjs/components/DataDimension/Info/DataSetInfo.js +115 -0
  10. package/build/cjs/components/DataDimension/Info/EventDataItemInfo.js +111 -0
  11. package/build/cjs/components/DataDimension/Info/IndicatorInfo.js +179 -0
  12. package/build/cjs/components/DataDimension/Info/InfoPopover.js +58 -0
  13. package/build/cjs/components/DataDimension/Info/InfoTable.js +219 -0
  14. package/build/cjs/components/DataDimension/Info/ProgramIndicatorInfo.js +191 -0
  15. package/build/cjs/components/DataDimension/Info/styles/InfoPopover.style.js +10 -0
  16. package/build/cjs/components/DataDimension/ItemSelector.js +22 -5
  17. package/build/cjs/components/DataDimension/TransferOption.js +117 -0
  18. package/build/cjs/components/DataDimension/styles/TransferOption.style.js +10 -0
  19. package/build/cjs/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
  20. package/build/cjs/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
  21. package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
  22. package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
  23. package/build/cjs/components/styles/DimensionSelector.style.js +2 -2
  24. package/build/cjs/index.js +66 -10
  25. package/build/cjs/locales/ar/translations.json +96 -22
  26. package/build/cjs/locales/ar_IQ/translations.json +141 -44
  27. package/build/cjs/locales/bn/translations.json +458 -0
  28. package/build/cjs/locales/ckb/translations.json +137 -44
  29. package/build/cjs/locales/cs/translations.json +88 -20
  30. package/build/cjs/locales/da/translations.json +102 -23
  31. package/build/cjs/locales/en/translations.json +73 -9
  32. package/build/cjs/locales/es/translations.json +75 -9
  33. package/build/cjs/locales/es_419/translations.json +77 -9
  34. package/build/cjs/locales/fr/translations.json +77 -9
  35. package/build/cjs/locales/hi_IN/translations.json +458 -0
  36. package/build/cjs/locales/id/translations.json +95 -22
  37. package/build/cjs/locales/index.js +74 -70
  38. package/build/cjs/locales/km/translations.json +100 -23
  39. package/build/cjs/locales/lo/translations.json +73 -9
  40. package/build/cjs/locales/my/translations.json +101 -23
  41. package/build/cjs/locales/nb/translations.json +88 -20
  42. package/build/cjs/locales/ne/translations.json +77 -9
  43. package/build/cjs/locales/nl/translations.json +95 -22
  44. package/build/cjs/locales/or/translations.json +137 -44
  45. package/build/cjs/locales/prs/translations.json +102 -23
  46. package/build/cjs/locales/ps/translations.json +102 -23
  47. package/build/cjs/locales/pt/translations.json +73 -9
  48. package/build/cjs/locales/pt_BR/translations.json +95 -22
  49. package/build/cjs/locales/ro/translations.json +138 -44
  50. package/build/cjs/locales/ru/translations.json +77 -9
  51. package/build/cjs/locales/si/translations.json +102 -23
  52. package/build/cjs/locales/sv/translations.json +88 -20
  53. package/build/cjs/locales/tet/translations.json +101 -23
  54. package/build/cjs/locales/tg/translations.json +102 -23
  55. package/build/cjs/locales/uk/translations.json +96 -22
  56. package/build/cjs/locales/ur/translations.json +96 -22
  57. package/build/cjs/locales/uz_UZ_Cyrl/translations.json +95 -22
  58. package/build/cjs/locales/uz_UZ_Latn/translations.json +96 -22
  59. package/build/cjs/locales/vi/translations.json +73 -9
  60. package/build/cjs/locales/zh/translations.json +73 -9
  61. package/build/cjs/locales/zh_CN/translations.json +95 -22
  62. package/build/cjs/modules/dimensionListItem.js +3 -3
  63. package/build/cjs/modules/dimensionSelectorHelper.js +2 -2
  64. package/build/cjs/modules/valueTypes.js +50 -11
  65. package/build/es/__demo__/DataDimension.stories.js +42 -0
  66. package/build/es/api/dimensions.js +1 -1
  67. package/build/es/api/expression.js +19 -9
  68. package/build/es/components/DataDimension/Calculation/CalculationModal.js +2 -2
  69. package/build/es/components/DataDimension/DataDimension.js +4 -1
  70. package/build/es/components/DataDimension/Info/CalculationInfo.js +96 -0
  71. package/build/es/components/DataDimension/Info/DataElementInfo.js +127 -0
  72. package/build/es/components/DataDimension/Info/DataElementOperandInfo.js +178 -0
  73. package/build/es/components/DataDimension/Info/DataSetInfo.js +107 -0
  74. package/build/es/components/DataDimension/Info/EventDataItemInfo.js +103 -0
  75. package/build/es/components/DataDimension/Info/IndicatorInfo.js +169 -0
  76. package/build/es/components/DataDimension/Info/InfoPopover.js +54 -0
  77. package/build/es/components/DataDimension/Info/InfoTable.js +205 -0
  78. package/build/es/components/DataDimension/Info/ProgramIndicatorInfo.js +181 -0
  79. package/build/es/components/DataDimension/Info/styles/InfoPopover.style.js +4 -0
  80. package/build/es/components/DataDimension/ItemSelector.js +24 -7
  81. package/build/es/components/DataDimension/TransferOption.js +109 -0
  82. package/build/es/components/DataDimension/styles/TransferOption.style.js +4 -0
  83. package/build/es/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
  84. package/build/es/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
  85. package/build/es/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
  86. package/build/es/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
  87. package/build/es/components/styles/DimensionSelector.style.js +2 -2
  88. package/build/es/index.js +1 -1
  89. package/build/es/locales/ar/translations.json +96 -22
  90. package/build/es/locales/ar_IQ/translations.json +141 -44
  91. package/build/es/locales/bn/translations.json +458 -0
  92. package/build/es/locales/ckb/translations.json +137 -44
  93. package/build/es/locales/cs/translations.json +88 -20
  94. package/build/es/locales/da/translations.json +102 -23
  95. package/build/es/locales/en/translations.json +73 -9
  96. package/build/es/locales/es/translations.json +75 -9
  97. package/build/es/locales/es_419/translations.json +77 -9
  98. package/build/es/locales/fr/translations.json +77 -9
  99. package/build/es/locales/hi_IN/translations.json +458 -0
  100. package/build/es/locales/id/translations.json +95 -22
  101. package/build/es/locales/index.js +4 -0
  102. package/build/es/locales/km/translations.json +100 -23
  103. package/build/es/locales/lo/translations.json +73 -9
  104. package/build/es/locales/my/translations.json +101 -23
  105. package/build/es/locales/nb/translations.json +88 -20
  106. package/build/es/locales/ne/translations.json +77 -9
  107. package/build/es/locales/nl/translations.json +95 -22
  108. package/build/es/locales/or/translations.json +137 -44
  109. package/build/es/locales/prs/translations.json +102 -23
  110. package/build/es/locales/ps/translations.json +102 -23
  111. package/build/es/locales/pt/translations.json +73 -9
  112. package/build/es/locales/pt_BR/translations.json +95 -22
  113. package/build/es/locales/ro/translations.json +138 -44
  114. package/build/es/locales/ru/translations.json +77 -9
  115. package/build/es/locales/si/translations.json +102 -23
  116. package/build/es/locales/sv/translations.json +88 -20
  117. package/build/es/locales/tet/translations.json +101 -23
  118. package/build/es/locales/tg/translations.json +102 -23
  119. package/build/es/locales/uk/translations.json +96 -22
  120. package/build/es/locales/ur/translations.json +96 -22
  121. package/build/es/locales/uz_UZ_Cyrl/translations.json +95 -22
  122. package/build/es/locales/uz_UZ_Latn/translations.json +96 -22
  123. package/build/es/locales/vi/translations.json +73 -9
  124. package/build/es/locales/zh/translations.json +73 -9
  125. package/build/es/locales/zh_CN/translations.json +95 -22
  126. package/build/es/modules/dimensionListItem.js +1 -1
  127. package/build/es/modules/dimensionSelectorHelper.js +2 -2
  128. package/build/es/modules/valueTypes.js +48 -10
  129. package/package.json +5 -5
@@ -19,6 +19,8 @@
19
19
  "About this map": "",
20
20
  "About this line list": "",
21
21
  "About this visualization": "",
22
+ "About this event chart": "",
23
+ "About this event report": "",
22
24
  "This app could not retrieve required data.": "",
23
25
  "Network error": "",
24
26
  "Data / Edit calculation": "",
@@ -44,9 +46,58 @@
44
46
  "Drag items here, or double click in the list, to start building a calculation formula": "",
45
47
  "Math operators": "",
46
48
  "Data Type": "",
49
+ "Only {{dataType}} can be used in {{visType}}": "",
47
50
  "All types": "",
48
51
  "Disaggregation": "",
49
52
  "No data": "",
53
+ "Expression description": "",
54
+ "Error loading value": "",
55
+ "None": "",
56
+ "Data set(s)": "",
57
+ "Zero is significant": "",
58
+ "True": "",
59
+ "False": "",
60
+ "Value type": "",
61
+ "Aggregation type": "",
62
+ "Category combo": "",
63
+ "Option set": "",
64
+ "Group membership": "",
65
+ "Legend set(s)": "",
66
+ "Category option name": "",
67
+ "Category combo name": "",
68
+ "Categories name": "",
69
+ "Period type": "",
70
+ "Indicators": "",
71
+ "Expiry days": "",
72
+ "Type": "",
73
+ "Data element": "",
74
+ "Tracked entity attribute": "",
75
+ "Numerator description": "",
76
+ "Numerator expression": "",
77
+ "Denominator description": "",
78
+ "Denominator expression": "",
79
+ "Annualized": "",
80
+ "Yes": "ඔව්",
81
+ "No": "නැත",
82
+ "Indicator type": "",
83
+ "Decimals in output": "",
84
+ "There was a problem loading information for this data item.": "",
85
+ "Name": "නම",
86
+ "Description": "විස්තරය",
87
+ "Code": "කේත කරන්න",
88
+ "ID": "",
89
+ "Last updated date": "",
90
+ "Created date": "",
91
+ "Created by": "",
92
+ "Custom": "",
93
+ "Program": "",
94
+ "Analytics type": "",
95
+ "Enrollment": "",
96
+ "Event": "",
97
+ "Analytics period boundaries": "",
98
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
99
+ "Expression": "",
100
+ "Filter": "",
50
101
  "Search by data item name": "",
51
102
  "No items selected": "",
52
103
  "Selected Items": "",
@@ -54,10 +105,12 @@
54
105
  "No data sets found": "",
55
106
  "No event data items found": "",
56
107
  "No program indicators found": "",
108
+ "No calculations found": "",
57
109
  "No indicators found for \"{{- searchTerm}}\"": "",
58
110
  "No data sets found for \"{{- searchTerm}}\"": "",
59
111
  "No event data items found for \"{{- searchTerm}}\"": "",
60
112
  "No program indicators found for \"{{- searchTerm}}\"": "",
113
+ "No calculations found for \"{{- searchTerm}}\"": "",
61
114
  "Nothing found for \"{{- searchTerm}}\"": "",
62
115
  "Calculation": "",
63
116
  "Metric type": "",
@@ -95,8 +148,6 @@
95
148
  "Open in this app": "",
96
149
  "Close": "වසන්න",
97
150
  "Rename {{fileType}}": "",
98
- "Name": "නම",
99
- "Description": "විස්තරය",
100
151
  "Rename": "",
101
152
  "{{- objectName}} (copy)": "",
102
153
  "Save {{fileType}} as": "",
@@ -107,6 +158,7 @@
107
158
  "Edit": "වෙනස් කරන්න",
108
159
  "Write a reply": "",
109
160
  "Post reply": "",
161
+ "Delete failed": "",
110
162
  "Could not update comment": "",
111
163
  "Enter comment text": "",
112
164
  "Update": "",
@@ -115,29 +167,22 @@
115
167
  "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
116
168
  "Hide interpretation": "",
117
169
  "Write an interpretation": "",
170
+ "Other people viewing this interpretation in the future may see more data.": "",
118
171
  "Post interpretation": "",
119
172
  "Interpretations": "",
173
+ "Reply": "",
174
+ "{{count}} replies": "",
175
+ "{{count}} replies_plural": "",
176
+ "View replies": "",
120
177
  "Unlike": "",
121
178
  "Like": "",
122
- "Reply": "",
123
- "Share": "",
124
179
  "See interpretation": "",
180
+ "Open in app": "",
181
+ "Share": "",
125
182
  "Manage sharing": "",
126
183
  "Could not update interpretation": "",
127
184
  "Enter interpretation text": "",
128
- "Bold text": "",
129
- "Italic text": "",
130
- "Link to a URL": "",
131
- "Mention a user": "",
132
- "Add emoji": "",
133
- "Preview": "",
134
- "Back to write mode": "",
135
- "Too many results. Try refining the search.": "",
136
- "Search for a user": "",
137
- "Searching for \"{{- searchText}}\"": "",
138
- "No results found": "",
139
185
  "Not available offline": "මාර්ග අපගතව නොතිබේ",
140
- "Created by": "",
141
186
  "Anyone": "ඕනෑම කෙනෙක්",
142
187
  "Only you": "",
143
188
  "Others": "",
@@ -145,7 +190,6 @@
145
190
  "Filter by name": "",
146
191
  "Created": "",
147
192
  "Last updated": "",
148
- "Type": "",
149
193
  "Clear filters": "",
150
194
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
151
195
  "Open": "විවෘත කරන්න",
@@ -191,13 +235,12 @@
191
235
  "Select a level": "",
192
236
  "Select a group": "",
193
237
  "Deselect all": "",
194
- "Period type": "",
195
238
  "Year": "වසර",
196
239
  "Select year": "වසර තෝරන්න",
197
240
  "Period": "",
241
+ "Selected Periods": "",
198
242
  "Relative periods": "",
199
243
  "Fixed periods": "",
200
- "Selected Periods": "",
201
244
  "No periods selected": "",
202
245
  "Daily": "දිනපතා",
203
246
  "Weekly": "සතිපතා",
@@ -267,6 +310,15 @@
267
310
  "Six-months": "",
268
311
  "Financial Years": "",
269
312
  "Years": "අවුරුදු",
313
+ "Value: {{value}}": "",
314
+ "Bold text": "",
315
+ "Italic text": "",
316
+ "Link to a URL": "",
317
+ "Mention a user": "",
318
+ "Add emoji": "",
319
+ "Preview": "",
320
+ "Back to write mode": "",
321
+ "Interpretations and details": "",
270
322
  "Translating to": "",
271
323
  "Choose a locale": "",
272
324
  "Base locale reference": "",
@@ -276,9 +328,12 @@
276
328
  "Cannot save while offline": "",
277
329
  "Could not load translations": "",
278
330
  "Retry": "නැවත උත්සාහ කරන්න",
331
+ "Too many results. Try refining the search.": "",
332
+ "Search for a user": "",
333
+ "Searching for \"{{- searchText}}\"": "",
334
+ "No results found": "",
279
335
  "Series": "",
280
336
  "Category": "කාණ්ඩය",
281
- "Filter": "",
282
337
  "Columns": "",
283
338
  "Rows": "",
284
339
  "Points": "",
@@ -287,16 +342,13 @@
287
342
  "Actual reports": "",
288
343
  "Actual reports on time": "",
289
344
  "Expected reports": "",
290
- "Program": "",
291
345
  "Select a program": "",
292
- "Indicators": "",
293
346
  "Indicator group": "",
294
347
  "All groups": "",
295
348
  "Indicator": "",
296
349
  "No indicator groups found": "",
297
350
  "Loading indicator groups": "",
298
351
  "Data element group": "",
299
- "Data element": "",
300
352
  "No data element groups found": "",
301
353
  "Loading data element groups": "",
302
354
  "Data sets": "",
@@ -345,9 +397,35 @@
345
397
  "{{thresholdFactor}} × Modified Z-score high": "",
346
398
  "{{thresholdFactor}} × Z-score low": "",
347
399
  "{{thresholdFactor}} × Z-score high": "",
400
+ "Not applicable": "",
348
401
  "Data": "දත්ත",
349
402
  "Organisation unit": "",
350
403
  "Assigned Categories": "",
404
+ "Text": "",
405
+ "Long text": "",
406
+ "Multi text": "",
407
+ "Letter": "",
408
+ "Phone number": "",
409
+ "Email": "",
410
+ "Yes/No": "",
411
+ "Yes Only": "",
412
+ "Date": "දිනය",
413
+ "Date & Time": "",
414
+ "Time": "",
415
+ "Unit interval": "",
416
+ "Percentage": "",
417
+ "Integer": "",
418
+ "Positive Integer": "",
419
+ "Negative Integer": "",
420
+ "Positive or Zero Integer": "",
421
+ "Tracker Associate": "",
422
+ "Username": "",
423
+ "Coordinate": "",
424
+ "Reference": "",
425
+ "Age": "",
426
+ "URL": "",
427
+ "Image": "",
428
+ "GeoJSON": "",
351
429
  "Pivot table": "",
352
430
  "Area": "",
353
431
  "Stacked area": "",
@@ -364,6 +442,7 @@
364
442
  "Radar": "",
365
443
  "Scatter": "",
366
444
  "Single value": "",
445
+ "Outlier table": "",
367
446
  "All charts": "",
368
447
  "{{seriesName}} (trend)": "",
369
448
  "Trend": "",
@@ -19,6 +19,8 @@
19
19
  "About this map": "",
20
20
  "About this line list": "",
21
21
  "About this visualization": "",
22
+ "About this event chart": "",
23
+ "About this event report": "",
22
24
  "This app could not retrieve required data.": "",
23
25
  "Network error": "",
24
26
  "Data / Edit calculation": "",
@@ -48,6 +50,54 @@
48
50
  "All types": "",
49
51
  "Disaggregation": "",
50
52
  "No data": "",
53
+ "Expression description": "",
54
+ "Error loading value": "",
55
+ "None": "Ingen",
56
+ "Data set(s)": "",
57
+ "Zero is significant": "",
58
+ "True": "",
59
+ "False": "",
60
+ "Value type": "Värde typ",
61
+ "Aggregation type": "Aggregationtyp",
62
+ "Category combo": "",
63
+ "Option set": "",
64
+ "Group membership": "",
65
+ "Legend set(s)": "",
66
+ "Category option name": "",
67
+ "Category combo name": "",
68
+ "Categories name": "",
69
+ "Period type": "Periodtyp",
70
+ "Indicators": "indikatorer",
71
+ "Expiry days": "",
72
+ "Type": "Typ",
73
+ "Data element": "Uppgift",
74
+ "Tracked entity attribute": "",
75
+ "Numerator description": "täljare Beskrivning",
76
+ "Numerator expression": "",
77
+ "Denominator description": "nämnare Beskrivning",
78
+ "Denominator expression": "",
79
+ "Annualized": "årsbasis",
80
+ "Yes": "Ja",
81
+ "No": "Nej",
82
+ "Indicator type": "indikator Typ",
83
+ "Decimals in output": "",
84
+ "There was a problem loading information for this data item.": "",
85
+ "Name": "Namn",
86
+ "Description": "Beskrivning",
87
+ "Code": "Koda",
88
+ "ID": "id",
89
+ "Last updated date": "",
90
+ "Created date": "",
91
+ "Created by": "Skapad av",
92
+ "Custom": "Beställnings",
93
+ "Program": "Program",
94
+ "Analytics type": "",
95
+ "Enrollment": "",
96
+ "Event": "",
97
+ "Analytics period boundaries": "",
98
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
99
+ "Expression": "Uttryck",
100
+ "Filter": "Filtrera",
51
101
  "Search by data item name": "",
52
102
  "No items selected": "",
53
103
  "Selected Items": "",
@@ -98,8 +148,6 @@
98
148
  "Open in this app": "",
99
149
  "Close": "Stänga",
100
150
  "Rename {{fileType}}": "",
101
- "Name": "Namn",
102
- "Description": "Beskrivning",
103
151
  "Rename": "Döpa om",
104
152
  "{{- objectName}} (copy)": "",
105
153
  "Save {{fileType}} as": "",
@@ -134,19 +182,7 @@
134
182
  "Manage sharing": "",
135
183
  "Could not update interpretation": "",
136
184
  "Enter interpretation text": "",
137
- "Bold text": "",
138
- "Italic text": "",
139
- "Link to a URL": "",
140
- "Mention a user": "",
141
- "Add emoji": "",
142
- "Preview": "",
143
- "Back to write mode": "",
144
- "Too many results. Try refining the search.": "",
145
- "Search for a user": "",
146
- "Searching for \"{{- searchText}}\"": "",
147
- "No results found": "Inga resultat hittades",
148
185
  "Not available offline": "",
149
- "Created by": "Skapad av",
150
186
  "Anyone": "",
151
187
  "Only you": "",
152
188
  "Others": "",
@@ -154,7 +190,6 @@
154
190
  "Filter by name": "Filtrera efter namn",
155
191
  "Created": "Skapad",
156
192
  "Last updated": "",
157
- "Type": "Typ",
158
193
  "Clear filters": "Rensa filter",
159
194
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
160
195
  "Open": "Öppen",
@@ -200,7 +235,6 @@
200
235
  "Select a level": "",
201
236
  "Select a group": "",
202
237
  "Deselect all": "Avmarkera alla",
203
- "Period type": "Periodtyp",
204
238
  "Year": "År",
205
239
  "Select year": "Välj år",
206
240
  "Period": "Period",
@@ -276,6 +310,14 @@
276
310
  "Six-months": "",
277
311
  "Financial Years": "",
278
312
  "Years": "År",
313
+ "Value: {{value}}": "",
314
+ "Bold text": "",
315
+ "Italic text": "",
316
+ "Link to a URL": "",
317
+ "Mention a user": "",
318
+ "Add emoji": "",
319
+ "Preview": "",
320
+ "Back to write mode": "",
279
321
  "Interpretations and details": "",
280
322
  "Translating to": "",
281
323
  "Choose a locale": "",
@@ -286,9 +328,12 @@
286
328
  "Cannot save while offline": "",
287
329
  "Could not load translations": "",
288
330
  "Retry": "",
331
+ "Too many results. Try refining the search.": "",
332
+ "Search for a user": "",
333
+ "Searching for \"{{- searchText}}\"": "",
334
+ "No results found": "Inga resultat hittades",
289
335
  "Series": "",
290
336
  "Category": "",
291
- "Filter": "Filtrera",
292
337
  "Columns": "",
293
338
  "Rows": "",
294
339
  "Points": "",
@@ -297,16 +342,13 @@
297
342
  "Actual reports": "",
298
343
  "Actual reports on time": "",
299
344
  "Expected reports": "",
300
- "Program": "Program",
301
345
  "Select a program": "",
302
- "Indicators": "indikatorer",
303
346
  "Indicator group": "Indikatorgrupp",
304
347
  "All groups": "",
305
348
  "Indicator": "Indikator",
306
349
  "No indicator groups found": "",
307
350
  "Loading indicator groups": "",
308
351
  "Data element group": "Dataelementgrupp",
309
- "Data element": "Uppgift",
310
352
  "No data element groups found": "",
311
353
  "Loading data element groups": "",
312
354
  "Data sets": "dataset",
@@ -355,9 +397,35 @@
355
397
  "{{thresholdFactor}} × Modified Z-score high": "",
356
398
  "{{thresholdFactor}} × Z-score low": "",
357
399
  "{{thresholdFactor}} × Z-score high": "",
400
+ "Not applicable": "",
358
401
  "Data": "Data",
359
402
  "Organisation unit": "Organisationsenhet",
360
403
  "Assigned Categories": "",
404
+ "Text": "",
405
+ "Long text": "lång text",
406
+ "Multi text": "",
407
+ "Letter": "",
408
+ "Phone number": "Telefonnummer",
409
+ "Email": "E-post",
410
+ "Yes/No": "Ja Nej",
411
+ "Yes Only": "Ja Endast",
412
+ "Date": "Datum",
413
+ "Date & Time": "Datum Tid",
414
+ "Time": "",
415
+ "Unit interval": "enhet intervall",
416
+ "Percentage": "Procentsats",
417
+ "Integer": "Integer",
418
+ "Positive Integer": "positiv Integer",
419
+ "Negative Integer": "negativt heltal",
420
+ "Positive or Zero Integer": "Positivt eller Zero Integer",
421
+ "Tracker Associate": "",
422
+ "Username": "Användarnamn",
423
+ "Coordinate": "Coordinate",
424
+ "Reference": "Referens",
425
+ "Age": "",
426
+ "URL": "",
427
+ "Image": "",
428
+ "GeoJSON": "",
361
429
  "Pivot table": "",
362
430
  "Area": "",
363
431
  "Stacked area": "",
@@ -18,6 +18,8 @@
18
18
  "About this map": "",
19
19
  "About this line list": "",
20
20
  "About this visualization": "",
21
+ "About this event chart": "",
22
+ "About this event report": "",
21
23
  "This app could not retrieve required data.": "",
22
24
  "Network error": "",
23
25
  "Data / Edit calculation": "",
@@ -43,9 +45,58 @@
43
45
  "Drag items here, or double click in the list, to start building a calculation formula": "",
44
46
  "Math operators": "",
45
47
  "Data Type": "",
48
+ "Only {{dataType}} can be used in {{visType}}": "",
46
49
  "All types": "",
47
50
  "Disaggregation": "",
48
51
  "No data": "Laiha dadus",
52
+ "Expression description": "",
53
+ "Error loading value": "",
54
+ "None": "Nein ida",
55
+ "Data set(s)": "",
56
+ "Zero is significant": "",
57
+ "True": "",
58
+ "False": "",
59
+ "Value type": "Tipu Valor",
60
+ "Aggregation type": "Tipu agregasaun",
61
+ "Category combo": "",
62
+ "Option set": "",
63
+ "Group membership": "",
64
+ "Legend set(s)": "",
65
+ "Category option name": "",
66
+ "Category combo name": "",
67
+ "Categories name": "",
68
+ "Period type": "",
69
+ "Indicators": "Indikadores",
70
+ "Expiry days": "",
71
+ "Type": "Tipu",
72
+ "Data element": "Elementu dadus",
73
+ "Tracked entity attribute": "",
74
+ "Numerator description": "Deskrisaun numerador",
75
+ "Numerator expression": "",
76
+ "Denominator description": "Deskrisaun denominador",
77
+ "Denominator expression": "",
78
+ "Annualized": "Anualizadu",
79
+ "Yes": "Sim",
80
+ "No": "Lae",
81
+ "Indicator type": "Tipu Indikador",
82
+ "Decimals in output": "",
83
+ "There was a problem loading information for this data item.": "",
84
+ "Name": "Naran",
85
+ "Description": "Deskrisaun",
86
+ "Code": "Kódigu",
87
+ "ID": "Id",
88
+ "Last updated date": "",
89
+ "Created date": "",
90
+ "Created by": "Kria husi",
91
+ "Custom": "",
92
+ "Program": "",
93
+ "Analytics type": "",
94
+ "Enrollment": "",
95
+ "Event": "",
96
+ "Analytics period boundaries": "",
97
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
98
+ "Expression": "Expresaun",
99
+ "Filter": "Filtru",
49
100
  "Search by data item name": "",
50
101
  "No items selected": "",
51
102
  "Selected Items": "",
@@ -53,10 +104,12 @@
53
104
  "No data sets found": "",
54
105
  "No event data items found": "",
55
106
  "No program indicators found": "",
107
+ "No calculations found": "",
56
108
  "No indicators found for \"{{- searchTerm}}\"": "",
57
109
  "No data sets found for \"{{- searchTerm}}\"": "",
58
110
  "No event data items found for \"{{- searchTerm}}\"": "",
59
111
  "No program indicators found for \"{{- searchTerm}}\"": "",
112
+ "No calculations found for \"{{- searchTerm}}\"": "",
60
113
  "Nothing found for \"{{- searchTerm}}\"": "",
61
114
  "Calculation": "",
62
115
  "Metric type": "",
@@ -94,8 +147,6 @@
94
147
  "Open in this app": "",
95
148
  "Close": "Taka",
96
149
  "Rename {{fileType}}": "",
97
- "Name": "Naran",
98
- "Description": "Deskrisaun",
99
150
  "Rename": "Tau naran foun",
100
151
  "{{- objectName}} (copy)": "",
101
152
  "Save {{fileType}} as": "",
@@ -106,6 +157,7 @@
106
157
  "Edit": "Edita",
107
158
  "Write a reply": "",
108
159
  "Post reply": "",
160
+ "Delete failed": "",
109
161
  "Could not update comment": "",
110
162
  "Enter comment text": "",
111
163
  "Update": "Atualiza",
@@ -114,29 +166,21 @@
114
166
  "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
115
167
  "Hide interpretation": "",
116
168
  "Write an interpretation": "",
169
+ "Other people viewing this interpretation in the future may see more data.": "",
117
170
  "Post interpretation": "",
118
171
  "Interpretations": "Interpretasoens",
172
+ "Reply": "Hatán",
173
+ "{{count}} replies": "",
174
+ "View replies": "",
119
175
  "Unlike": "",
120
176
  "Like": "",
121
- "Reply": "Hatán",
122
- "Share": "Partilla",
123
177
  "See interpretation": "",
178
+ "Open in app": "",
179
+ "Share": "Partilla",
124
180
  "Manage sharing": "",
125
181
  "Could not update interpretation": "",
126
182
  "Enter interpretation text": "",
127
- "Bold text": "",
128
- "Italic text": "",
129
- "Link to a URL": "",
130
- "Mention a user": "",
131
- "Add emoji": "",
132
- "Preview": "",
133
- "Back to write mode": "",
134
- "Too many results. Try refining the search.": "",
135
- "Search for a user": "",
136
- "Searching for \"{{- searchText}}\"": "",
137
- "No results found": "",
138
183
  "Not available offline": "",
139
- "Created by": "Kria husi",
140
184
  "Anyone": "",
141
185
  "Only you": "",
142
186
  "Others": "",
@@ -144,7 +188,6 @@
144
188
  "Filter by name": "Filtru tuir naran",
145
189
  "Created": "",
146
190
  "Last updated": "Atualizasaun ikus",
147
- "Type": "Tipu",
148
191
  "Clear filters": "",
149
192
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
150
193
  "Open": "",
@@ -187,13 +230,12 @@
187
230
  "Select a level": "",
188
231
  "Select a group": "",
189
232
  "Deselect all": "",
190
- "Period type": "",
191
233
  "Year": "Tinan",
192
234
  "Select year": "",
193
235
  "Period": "Períodu",
236
+ "Selected Periods": "",
194
237
  "Relative periods": "Peeríodus relativus",
195
238
  "Fixed periods": "Períodus fixus",
196
- "Selected Periods": "",
197
239
  "No periods selected": "Laiha períodu selesionadu",
198
240
  "Daily": "Diáriu",
199
241
  "Weekly": "Semanal",
@@ -263,6 +305,15 @@
263
305
  "Six-months": "Fulan-nén",
264
306
  "Financial Years": "",
265
307
  "Years": "Tinan",
308
+ "Value: {{value}}": "",
309
+ "Bold text": "",
310
+ "Italic text": "",
311
+ "Link to a URL": "",
312
+ "Mention a user": "",
313
+ "Add emoji": "",
314
+ "Preview": "",
315
+ "Back to write mode": "",
316
+ "Interpretations and details": "",
266
317
  "Translating to": "",
267
318
  "Choose a locale": "",
268
319
  "Base locale reference": "",
@@ -272,9 +323,12 @@
272
323
  "Cannot save while offline": "",
273
324
  "Could not load translations": "",
274
325
  "Retry": "",
326
+ "Too many results. Try refining the search.": "",
327
+ "Search for a user": "",
328
+ "Searching for \"{{- searchText}}\"": "",
329
+ "No results found": "",
275
330
  "Series": "Séries",
276
331
  "Category": "Kategoria",
277
- "Filter": "Filtru",
278
332
  "Columns": "",
279
333
  "Rows": "",
280
334
  "Points": "",
@@ -283,16 +337,13 @@
283
337
  "Actual reports": "",
284
338
  "Actual reports on time": "",
285
339
  "Expected reports": "",
286
- "Program": "",
287
340
  "Select a program": "",
288
- "Indicators": "Indikadores",
289
341
  "Indicator group": "",
290
342
  "All groups": "",
291
343
  "Indicator": "Indikador",
292
344
  "No indicator groups found": "",
293
345
  "Loading indicator groups": "",
294
346
  "Data element group": "",
295
- "Data element": "Elementu dadus",
296
347
  "No data element groups found": "",
297
348
  "Loading data element groups": "",
298
349
  "Data sets": "Pakote dadus",
@@ -341,9 +392,35 @@
341
392
  "{{thresholdFactor}} × Modified Z-score high": "",
342
393
  "{{thresholdFactor}} × Z-score low": "",
343
394
  "{{thresholdFactor}} × Z-score high": "",
395
+ "Not applicable": "",
344
396
  "Data": "Dadus",
345
397
  "Organisation unit": "Unidade organizasional",
346
398
  "Assigned Categories": "",
399
+ "Text": "Textu",
400
+ "Long text": "",
401
+ "Multi text": "",
402
+ "Letter": "",
403
+ "Phone number": "",
404
+ "Email": "",
405
+ "Yes/No": "Sim/Lae",
406
+ "Yes Only": "Sim Deit",
407
+ "Date": "Data",
408
+ "Date & Time": "",
409
+ "Time": "",
410
+ "Unit interval": "",
411
+ "Percentage": "",
412
+ "Integer": "",
413
+ "Positive Integer": "",
414
+ "Negative Integer": "",
415
+ "Positive or Zero Integer": "",
416
+ "Tracker Associate": "",
417
+ "Username": "Utilizador nia Naran",
418
+ "Coordinate": "",
419
+ "Reference": "Referensia",
420
+ "Age": "",
421
+ "URL": "",
422
+ "Image": "Imajen",
423
+ "GeoJSON": "",
347
424
  "Pivot table": "",
348
425
  "Area": "",
349
426
  "Stacked area": "",
@@ -360,6 +437,7 @@
360
437
  "Radar": "",
361
438
  "Scatter": "",
362
439
  "Single value": "",
440
+ "Outlier table": "",
363
441
  "All charts": "",
364
442
  "{{seriesName}} (trend)": "",
365
443
  "Trend": "Tendensia",