@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": "محاسبه",
@@ -50,6 +50,54 @@
50
50
  "All types": "Todos os tipos",
51
51
  "Disaggregation": "Desagregação",
52
52
  "No data": "Não há dados",
53
+ "Expression description": "Descrição da expressão",
54
+ "Error loading value": "",
55
+ "None": "Nenhum",
56
+ "Data set(s)": "",
57
+ "Zero is significant": "",
58
+ "True": "Verdade",
59
+ "False": "Falso",
60
+ "Value type": "Tipo de valor",
61
+ "Aggregation type": "Tipo de agregação",
62
+ "Category combo": "Combinação de categorias",
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 periodo",
70
+ "Indicators": "Indicadores",
71
+ "Expiry days": "Dias de validade",
72
+ "Type": "Tipo",
73
+ "Data element": "Elemento de dado",
74
+ "Tracked entity attribute": "Atributo da 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": "Data de criação",
91
+ "Created by": "Criado por",
92
+ "Custom": "Customizar ",
93
+ "Program": "Programa",
94
+ "Analytics type": "Tipo de analises ",
95
+ "Enrollment": "Inscrição",
96
+ "Event": "Evento",
97
+ "Analytics period boundaries": "Limites do período de análise",
98
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
99
+ "Expression": "Expressão",
100
+ "Filter": "Filtro",
53
101
  "Search by data item name": " Pesquisa por nome de item de dados",
54
102
  "No items selected": " Nenhum item seleccionado",
55
103
  "Selected Items": " Itens seleccionados",
@@ -100,8 +148,6 @@
100
148
  "Open in this app": "Abrir neste aplicativo",
101
149
  "Close": "Fechar",
102
150
  "Rename {{fileType}}": "Renomear {{fileType}}",
103
- "Name": "Nome",
104
- "Description": "Descrição",
105
151
  "Rename": "Renomear",
106
152
  "{{- objectName}} (copy)": "{{- objectName}}(cópia)",
107
153
  "Save {{fileType}} as": "Gravar {{fileType}} como",
@@ -137,7 +183,6 @@
137
183
  "Could not update interpretation": "Não foi possível actualizar a interpretação",
138
184
  "Enter interpretation text": "Introduzir texto de interpretação",
139
185
  "Not available offline": "Não disponível offline",
140
- "Created by": "Criado por",
141
186
  "Anyone": "Qualquer um",
142
187
  "Only you": "Apenas tu",
143
188
  "Others": "Outros",
@@ -145,7 +190,6 @@
145
190
  "Filter by name": "Filtrar por nome",
146
191
  "Created": "Criado",
147
192
  "Last updated": "Última actualização",
148
- "Type": "Tipo",
149
193
  "Clear filters": "Limpar filtros",
150
194
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} de {{totalNumberOfItems}}",
151
195
  "Open": "Aberto",
@@ -191,7 +235,6 @@
191
235
  "Select a level": "Seleccione um nível",
192
236
  "Select a group": "Seleccione um grupo",
193
237
  "Deselect all": "Desmarcar todos",
194
- "Period type": "Tipo de periodo",
195
238
  "Year": "Ano",
196
239
  "Select year": "Seleccionar ano",
197
240
  "Period": "Período",
@@ -291,7 +334,6 @@
291
334
  "No results found": "Nenhum resultado encontrado",
292
335
  "Series": "Séries",
293
336
  "Category": "Categoria",
294
- "Filter": "Filtro",
295
337
  "Columns": "Colunas",
296
338
  "Rows": "Linhas",
297
339
  "Points": "Pontos",
@@ -300,16 +342,13 @@
300
342
  "Actual reports": "Relatórios actuais",
301
343
  "Actual reports on time": "Relatórios actuais dentro do prazo",
302
344
  "Expected reports": "Relatórios esperados",
303
- "Program": "Programa",
304
345
  "Select a program": "Seleccione um programa",
305
- "Indicators": "Indicadores",
306
346
  "Indicator group": "Grupo de Indicador",
307
347
  "All groups": "Todos os grupos",
308
348
  "Indicator": "Indicador",
309
349
  "No indicator groups found": "Não foram encontrados grupos de indicadores",
310
350
  "Loading indicator groups": "Carregando grupos de indicadores",
311
351
  "Data element group": "Grupo de Elemento de Dados",
312
- "Data element": "Elemento de dado",
313
352
  "No data element groups found": "Não foram encontrados grupos de elementos de dados",
314
353
  "Loading data element groups": "Carregando de grupos de elementos de dados",
315
354
  "Data sets": "Agregação de Dados",
@@ -362,6 +401,31 @@
362
401
  "Data": "Dados",
363
402
  "Organisation unit": "Unidade organizacional",
364
403
  "Assigned Categories": "Categorias atribuídas",
404
+ "Text": "Texto",
405
+ "Long text": "Texto longo ",
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": "Apenas Sim",
412
+ "Date": "Encontro",
413
+ "Date & Time": "Data & Hora ",
414
+ "Time": "Tempo",
415
+ "Unit interval": "Intervalo de unidade",
416
+ "Percentage": "Percentagem ",
417
+ "Integer": "Inteiro",
418
+ "Positive Integer": "Inteiro positivo",
419
+ "Negative Integer": "Inteiro negativo",
420
+ "Positive or Zero Integer": "Inteiro positivo ou zero",
421
+ "Tracker Associate": "Associado ao rastreio",
422
+ "Username": "Nome de utilizador",
423
+ "Coordinate": "Coordenada",
424
+ "Reference": "Referência",
425
+ "Age": "Idade",
426
+ "URL": "URL",
427
+ "Image": "Imagem",
428
+ "GeoJSON": "",
365
429
  "Pivot table": "Tabela dinâmica",
366
430
  "Area": "Área",
367
431
  "Stacked area": "Área empilhada",
@@ -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",