@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": "Erro de rede",
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": "Desagregação",
49
52
  "No data": "Não ha dados",
53
+ "Expression description": "",
54
+ "Error loading value": "",
55
+ "None": "Nenhum",
56
+ "Data set(s)": "",
57
+ "Zero is significant": "",
58
+ "True": "",
59
+ "False": "",
60
+ "Value type": "Tipo de valor",
61
+ "Aggregation type": "Tipo de agregacão",
62
+ "Category combo": "",
63
+ "Option set": "Conjunto de opções",
64
+ "Group membership": "",
65
+ "Legend set(s)": "",
66
+ "Category option name": "",
67
+ "Category combo name": "",
68
+ "Categories name": "",
69
+ "Period type": "Tipo de período",
70
+ "Indicators": "Indicadores",
71
+ "Expiry days": "Dias de validade",
72
+ "Type": "Tipo",
73
+ "Data element": "Elemento de dado",
74
+ "Tracked entity attribute": "Atributo de entidade rastreada",
75
+ "Numerator description": "Descrição do numerador",
76
+ "Numerator expression": "",
77
+ "Denominator description": "Descrição do Denominador",
78
+ "Denominator expression": "",
79
+ "Annualized": "Anualizado",
80
+ "Yes": "Sim",
81
+ "No": "Não",
82
+ "Indicator type": "Tipo de Indicador",
83
+ "Decimals in output": "",
84
+ "There was a problem loading information for this data item.": "",
85
+ "Name": "Nome",
86
+ "Description": "Descrição",
87
+ "Code": "Código",
88
+ "ID": "Id",
89
+ "Last updated date": "",
90
+ "Created date": "",
91
+ "Created by": "Criado por",
92
+ "Custom": "",
93
+ "Program": "Programa",
94
+ "Analytics type": "",
95
+ "Enrollment": "Inscrição",
96
+ "Event": "Evento",
97
+ "Analytics period boundaries": "",
98
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
99
+ "Expression": "Expressão",
100
+ "Filter": "Filtro",
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": "Fechar",
97
150
  "Rename {{fileType}}": "",
98
- "Name": "Nome",
99
- "Description": "Descrição",
100
151
  "Rename": "Renomear",
101
152
  "{{- objectName}} (copy)": "",
102
153
  "Save {{fileType}} as": "",
@@ -125,24 +176,13 @@
125
176
  "View replies": "",
126
177
  "Unlike": "",
127
178
  "Like": "como",
128
- "Share": "Partilhar",
129
179
  "See interpretation": "",
180
+ "Open in app": "",
181
+ "Share": "Partilhar",
130
182
  "Manage sharing": "",
131
183
  "Could not update interpretation": "",
132
184
  "Enter interpretation text": "",
133
- "Bold text": "",
134
- "Italic text": "",
135
- "Link to a URL": "",
136
- "Mention a user": "",
137
- "Add emoji": "",
138
- "Preview": "Pré-visualização",
139
- "Back to write mode": "",
140
- "Too many results. Try refining the search.": "",
141
- "Search for a user": "",
142
- "Searching for \"{{- searchText}}\"": "",
143
- "No results found": "Nenhum resultado encontrado",
144
185
  "Not available offline": "",
145
- "Created by": "Criado por",
146
186
  "Anyone": "",
147
187
  "Only you": "",
148
188
  "Others": "Outros",
@@ -150,7 +190,6 @@
150
190
  "Filter by name": "Filtrar por nome",
151
191
  "Created": "Criado",
152
192
  "Last updated": "Última actualização",
153
- "Type": "Tipo",
154
193
  "Clear filters": "Limpar filtros",
155
194
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
156
195
  "Open": "Abrir",
@@ -196,13 +235,12 @@
196
235
  "Select a level": "",
197
236
  "Select a group": "",
198
237
  "Deselect all": "Desmarcar todos",
199
- "Period type": "Tipo de período",
200
238
  "Year": "Ano",
201
239
  "Select year": "",
202
240
  "Period": "Período",
241
+ "Selected Periods": "",
203
242
  "Relative periods": "Períodos relativos",
204
243
  "Fixed periods": "Periodos fixos",
205
- "Selected Periods": "",
206
244
  "No periods selected": "Não há períodos relativos seleccionados",
207
245
  "Daily": "Diário",
208
246
  "Weekly": "Semanal",
@@ -272,6 +310,14 @@
272
310
  "Six-months": "",
273
311
  "Financial Years": "",
274
312
  "Years": "Anos",
313
+ "Value: {{value}}": "",
314
+ "Bold text": "",
315
+ "Italic text": "",
316
+ "Link to a URL": "",
317
+ "Mention a user": "",
318
+ "Add emoji": "",
319
+ "Preview": "Pré-visualização",
320
+ "Back to write mode": "",
275
321
  "Interpretations and details": "",
276
322
  "Translating to": "",
277
323
  "Choose a locale": "",
@@ -282,9 +328,12 @@
282
328
  "Cannot save while offline": "",
283
329
  "Could not load translations": "",
284
330
  "Retry": "",
331
+ "Too many results. Try refining the search.": "",
332
+ "Search for a user": "",
333
+ "Searching for \"{{- searchText}}\"": "",
334
+ "No results found": "Nenhum resultado encontrado",
285
335
  "Series": "Série",
286
336
  "Category": "Categoria",
287
- "Filter": "Filtro",
288
337
  "Columns": "",
289
338
  "Rows": "",
290
339
  "Points": "",
@@ -293,16 +342,13 @@
293
342
  "Actual reports": "",
294
343
  "Actual reports on time": "",
295
344
  "Expected reports": "",
296
- "Program": "Programa",
297
345
  "Select a program": "",
298
- "Indicators": "Indicadores",
299
346
  "Indicator group": "Grupo do indicador",
300
347
  "All groups": "",
301
348
  "Indicator": "Indicador",
302
349
  "No indicator groups found": "",
303
350
  "Loading indicator groups": "",
304
351
  "Data element group": "Grupo de elemento de dado",
305
- "Data element": "Elemento de dado",
306
352
  "No data element groups found": "",
307
353
  "Loading data element groups": "",
308
354
  "Data sets": "Agregação de Dados",
@@ -351,9 +397,35 @@
351
397
  "{{thresholdFactor}} × Modified Z-score high": "",
352
398
  "{{thresholdFactor}} × Z-score low": "",
353
399
  "{{thresholdFactor}} × Z-score high": "",
400
+ "Not applicable": "",
354
401
  "Data": "Dados",
355
402
  "Organisation unit": "Unidade organizacional",
356
403
  "Assigned Categories": "",
404
+ "Text": "Texto",
405
+ "Long text": "",
406
+ "Multi text": "",
407
+ "Letter": "Carta",
408
+ "Phone number": "Número de telefone",
409
+ "Email": "E-mail",
410
+ "Yes/No": "Sim/Não",
411
+ "Yes Only": "Sim apenas",
412
+ "Date": "Data",
413
+ "Date & Time": "Data & Hora ",
414
+ "Time": "Tempo",
415
+ "Unit interval": "",
416
+ "Percentage": "",
417
+ "Integer": "Número",
418
+ "Positive Integer": "Inteiro posetivo",
419
+ "Negative Integer": "Inteiro negativo",
420
+ "Positive or Zero Integer": "Número inteiro positivo ou zero",
421
+ "Tracker Associate": "Rastreio associado ",
422
+ "Username": "Nome do usuário",
423
+ "Coordinate": "Coordenada",
424
+ "Reference": "Referência",
425
+ "Age": "Idade",
426
+ "URL": "URL",
427
+ "Image": "Imagem (PNG)",
428
+ "GeoJSON": "",
357
429
  "Pivot table": "",
358
430
  "Area": "",
359
431
  "Stacked area": "",
@@ -370,6 +442,7 @@
370
442
  "Radar": "",
371
443
  "Scatter": "",
372
444
  "Single value": "",
445
+ "Outlier table": "",
373
446
  "All charts": "",
374
447
  "{{seriesName}} (trend)": "",
375
448
  "Trend": "Tendência",
@@ -20,29 +20,100 @@
20
20
  "About this map": "",
21
21
  "About this line list": "",
22
22
  "About this visualization": "",
23
+ "About this event chart": "",
24
+ "About this event report": "",
23
25
  "This app could not retrieve required data.": "",
24
26
  "Network error": "",
25
- "Data Type": "",
26
- "All types": "",
27
+ "Data / Edit calculation": "",
28
+ "Data / New calculation": "",
29
+ "Remove item": "",
30
+ "Check formula": "",
31
+ "Calculation name": "",
32
+ "Shown in table headers and chart axes/legends": "",
33
+ "Delete calculation": "",
34
+ "Cancel": "Anulare",
35
+ "The calculation can only be saved with a valid formula": "",
36
+ "Add a name to save this calculation": "",
37
+ "Save calculation": "",
38
+ "Are you sure you want to delete this calculation? It may be used by other visualizations.": "",
39
+ "Yes, delete": "",
27
40
  "Totals only": "",
28
41
  "Details only": "",
42
+ "Loading": "",
43
+ "Data elements": "Elemente de date",
44
+ "Search by data element name": "",
45
+ "No data elements found for \"{{- searchTerm}}\"": "",
46
+ "No data elements found": "",
47
+ "Drag items here, or double click in the list, to start building a calculation formula": "",
48
+ "Math operators": "",
49
+ "Data Type": "",
50
+ "Only {{dataType}} can be used in {{visType}}": "",
51
+ "All types": "",
29
52
  "Disaggregation": "",
30
53
  "No data": "",
31
- "Loading": "",
54
+ "Expression description": "",
55
+ "Error loading value": "",
56
+ "None": "",
57
+ "Data set(s)": "",
58
+ "Zero is significant": "",
59
+ "True": "",
60
+ "False": "",
61
+ "Value type": "",
62
+ "Aggregation type": "",
63
+ "Category combo": "",
64
+ "Option set": "",
65
+ "Group membership": "",
66
+ "Legend set(s)": "",
67
+ "Category option name": "",
68
+ "Category combo name": "",
69
+ "Categories name": "",
70
+ "Period type": "Tipul perioadei",
71
+ "Indicators": "Indicatori",
72
+ "Expiry days": "",
73
+ "Type": "",
74
+ "Data element": "",
75
+ "Tracked entity attribute": "",
76
+ "Numerator description": "",
77
+ "Numerator expression": "",
78
+ "Denominator description": "",
79
+ "Denominator expression": "",
80
+ "Annualized": "",
81
+ "Yes": "Da",
82
+ "No": "Nu",
83
+ "Indicator type": "",
84
+ "Decimals in output": "",
85
+ "There was a problem loading information for this data item.": "",
86
+ "Name": "",
87
+ "Description": "Descriere",
88
+ "Code": "",
89
+ "ID": "",
90
+ "Last updated date": "",
91
+ "Created date": "",
92
+ "Created by": "",
93
+ "Custom": "",
94
+ "Program": "Program",
95
+ "Analytics type": "",
96
+ "Enrollment": "Înrolare",
97
+ "Event": "",
98
+ "Analytics period boundaries": "",
99
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
100
+ "Expression": "",
101
+ "Filter": "",
32
102
  "Search by data item name": "",
33
103
  "No items selected": "",
34
104
  "Selected Items": "",
35
105
  "No indicators found": "",
36
- "No data elements found": "",
37
106
  "No data sets found": "",
38
107
  "No event data items found": "",
39
108
  "No program indicators found": "",
109
+ "No calculations found": "",
40
110
  "No indicators found for \"{{- searchTerm}}\"": "",
41
- "No data elements found for \"{{- searchTerm}}\"": "",
42
111
  "No data sets found for \"{{- searchTerm}}\"": "",
43
112
  "No event data items found for \"{{- searchTerm}}\"": "",
44
113
  "No program indicators found for \"{{- searchTerm}}\"": "",
114
+ "No calculations found for \"{{- searchTerm}}\"": "",
45
115
  "Nothing found for \"{{- searchTerm}}\"": "",
116
+ "Calculation": "",
46
117
  "Metric type": "",
47
118
  "All metrics": "",
48
119
  "Move to {{axisName}}": "",
@@ -64,7 +135,6 @@
64
135
  "Nothing found for {{- searchTerm}}": "",
65
136
  "Delete {{fileType}}": "",
66
137
  "This {{fileType}} and related interpretations will be deleted. Continue?": "",
67
- "Cancel": "Anulare",
68
138
  "Delete": "Lichidare",
69
139
  "File": "Fişier",
70
140
  "New": "Nou",
@@ -79,9 +149,8 @@
79
149
  "Open in this app": "",
80
150
  "Close": "Închidere",
81
151
  "Rename {{fileType}}": "",
82
- "Name": "",
83
- "Description": "Descriere",
84
152
  "Rename": "",
153
+ "{{- objectName}} (copy)": "",
85
154
  "Save {{fileType}} as": "",
86
155
  "event report": "",
87
156
  "line list": "",
@@ -90,6 +159,7 @@
90
159
  "Edit": "Editare",
91
160
  "Write a reply": "",
92
161
  "Post reply": "",
162
+ "Delete failed": "",
93
163
  "Could not update comment": "",
94
164
  "Enter comment text": "",
95
165
  "Update": "Actualizare",
@@ -98,28 +168,23 @@
98
168
  "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
99
169
  "Hide interpretation": "",
100
170
  "Write an interpretation": "",
171
+ "Other people viewing this interpretation in the future may see more data.": "",
101
172
  "Post interpretation": "",
102
173
  "Interpretations": "",
174
+ "Reply": "",
175
+ "{{count}} replies_0": "",
176
+ "{{count}} replies_1": "",
177
+ "{{count}} replies_2": "",
178
+ "View replies": "",
103
179
  "Unlike": "",
104
180
  "Like": "",
105
- "Reply": "",
106
- "Share": "Partajare",
107
181
  "See interpretation": "",
182
+ "Open in app": "",
183
+ "Share": "Partajare",
108
184
  "Manage sharing": "",
109
185
  "Could not update interpretation": "",
110
186
  "Enter interpretation text": "",
111
- "Bold text": "",
112
- "Italic text": "",
113
- "Link to a URL": "",
114
- "Mention a user": "",
115
- "Add emoji": "",
116
- "Preview": "",
117
- "Back to write mode": "",
118
- "Too many results. Try refining the search.": "",
119
- "Search for a user": "",
120
- "Searching for \"{{- searchText}}\"": "",
121
- "No results found": "Nu au fost găsite rezultate",
122
- "Created by": "",
187
+ "Not available offline": "",
123
188
  "Anyone": "Oricine",
124
189
  "Only you": "",
125
190
  "Others": "",
@@ -127,7 +192,6 @@
127
192
  "Filter by name": "",
128
193
  "Created": "",
129
194
  "Last updated": "Ultima actualizare",
130
- "Type": "",
131
195
  "Clear filters": "",
132
196
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
133
197
  "Open": "",
@@ -176,28 +240,13 @@
176
240
  "Select a level": "",
177
241
  "Select a group": "",
178
242
  "Deselect all": "",
179
- "Period type": "Tipul perioadei",
180
243
  "Year": "An",
181
244
  "Select year": "",
182
245
  "Period": "",
246
+ "Selected Periods": "",
183
247
  "Relative periods": "Perioade relative",
184
248
  "Fixed periods": "",
185
- "Selected Periods": "",
186
249
  "No periods selected": "",
187
- "January": "",
188
- "February": "",
189
- "March": "",
190
- "April": "",
191
- "May": "",
192
- "June": "",
193
- "July": "",
194
- "August": "",
195
- "September": "",
196
- "October": "",
197
- "November": "",
198
- "December": "",
199
- "Week {{weekNumber}}": "",
200
- "Bi-Week {{biWeekNumber}}": "",
201
250
  "Daily": "",
202
251
  "Weekly": "",
203
252
  "Weekly (Start Wednesday)": "",
@@ -266,17 +315,30 @@
266
315
  "Six-months": "Șase luni",
267
316
  "Financial Years": "Ani financiari",
268
317
  "Years": "Ani",
318
+ "Value: {{value}}": "",
319
+ "Bold text": "",
320
+ "Italic text": "",
321
+ "Link to a URL": "",
322
+ "Mention a user": "",
323
+ "Add emoji": "",
324
+ "Preview": "",
325
+ "Back to write mode": "",
326
+ "Interpretations and details": "",
269
327
  "Translating to": "",
270
328
  "Choose a locale": "",
271
329
  "Base locale reference": "",
272
330
  "Choose a locale to translate from the menu above": "",
273
331
  "Translate: {{objectName}}": "",
274
332
  "Save translations": "",
333
+ "Cannot save while offline": "",
275
334
  "Could not load translations": "",
276
335
  "Retry": "",
336
+ "Too many results. Try refining the search.": "",
337
+ "Search for a user": "",
338
+ "Searching for \"{{- searchText}}\"": "",
339
+ "No results found": "Nu au fost găsite rezultate",
277
340
  "Series": "",
278
341
  "Category": "",
279
- "Filter": "",
280
342
  "Columns": "",
281
343
  "Rows": "",
282
344
  "Points": "",
@@ -285,17 +347,13 @@
285
347
  "Actual reports": "",
286
348
  "Actual reports on time": "",
287
349
  "Expected reports": "",
288
- "Program": "Program",
289
350
  "Select a program": "",
290
- "Indicators": "Indicatori",
291
351
  "Indicator group": "Grup de indicatori",
292
352
  "All groups": "",
293
353
  "Indicator": "Indicator",
294
354
  "No indicator groups found": "",
295
355
  "Loading indicator groups": "",
296
- "Data elements": "Elemente de date",
297
356
  "Data element group": "",
298
- "Data element": "",
299
357
  "No data element groups found": "",
300
358
  "Loading data element groups": "",
301
359
  "Data sets": "",
@@ -309,6 +367,15 @@
309
367
  "Loading programs": "",
310
368
  "Program indicators": "",
311
369
  "Program indicator": "",
370
+ "Calculations": "",
371
+ "Number": "",
372
+ "Formula is empty. Add items to the formula from the lists on the left.": "",
373
+ "Consecutive math operators": "",
374
+ "Consecutive data elements": "",
375
+ "Starts or ends with a math operator": "",
376
+ "Empty parentheses": "",
377
+ "Missing right parenthesis )": "",
378
+ "Missing left parenthesis (": "",
312
379
  "Extra Small": "",
313
380
  "Small": "",
314
381
  "Regular": "",
@@ -335,9 +402,35 @@
335
402
  "{{thresholdFactor}} × Modified Z-score high": "",
336
403
  "{{thresholdFactor}} × Z-score low": "",
337
404
  "{{thresholdFactor}} × Z-score high": "",
405
+ "Not applicable": "",
338
406
  "Data": "",
339
407
  "Organisation unit": "Unitate organizațională",
340
408
  "Assigned Categories": "",
409
+ "Text": "",
410
+ "Long text": "",
411
+ "Multi text": "",
412
+ "Letter": "",
413
+ "Phone number": "",
414
+ "Email": "",
415
+ "Yes/No": "",
416
+ "Yes Only": "",
417
+ "Date": "Data",
418
+ "Date & Time": "",
419
+ "Time": "",
420
+ "Unit interval": "",
421
+ "Percentage": "",
422
+ "Integer": "",
423
+ "Positive Integer": "",
424
+ "Negative Integer": "",
425
+ "Positive or Zero Integer": "",
426
+ "Tracker Associate": "",
427
+ "Username": "",
428
+ "Coordinate": "Coordonate",
429
+ "Reference": "",
430
+ "Age": "",
431
+ "URL": "URL",
432
+ "Image": "",
433
+ "GeoJSON": "",
341
434
  "Pivot table": "",
342
435
  "Area": "",
343
436
  "Stacked area": "",
@@ -354,6 +447,7 @@
354
447
  "Radar": "",
355
448
  "Scatter": "",
356
449
  "Single value": "",
450
+ "Outlier table": "",
357
451
  "All charts": "",
358
452
  "{{seriesName}} (trend)": "",
359
453
  "Trend": "",