@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.
- package/build/cjs/__demo__/DataDimension.stories.js +53 -0
- package/build/cjs/api/dimensions.js +1 -1
- package/build/cjs/api/expression.js +20 -10
- package/build/cjs/components/DataDimension/Calculation/CalculationModal.js +1 -1
- package/build/cjs/components/DataDimension/DataDimension.js +4 -1
- package/build/cjs/components/DataDimension/Info/CalculationInfo.js +106 -0
- package/build/cjs/components/DataDimension/Info/DataElementInfo.js +135 -0
- package/build/cjs/components/DataDimension/Info/DataElementOperandInfo.js +188 -0
- package/build/cjs/components/DataDimension/Info/DataSetInfo.js +115 -0
- package/build/cjs/components/DataDimension/Info/EventDataItemInfo.js +111 -0
- package/build/cjs/components/DataDimension/Info/IndicatorInfo.js +179 -0
- package/build/cjs/components/DataDimension/Info/InfoPopover.js +58 -0
- package/build/cjs/components/DataDimension/Info/InfoTable.js +219 -0
- package/build/cjs/components/DataDimension/Info/ProgramIndicatorInfo.js +191 -0
- package/build/cjs/components/DataDimension/Info/styles/InfoPopover.style.js +10 -0
- package/build/cjs/components/DataDimension/ItemSelector.js +22 -5
- package/build/cjs/components/DataDimension/TransferOption.js +117 -0
- package/build/cjs/components/DataDimension/styles/TransferOption.style.js +10 -0
- package/build/cjs/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
- package/build/cjs/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
- package/build/cjs/components/styles/DimensionSelector.style.js +2 -2
- package/build/cjs/index.js +66 -10
- package/build/cjs/locales/ar/translations.json +96 -22
- package/build/cjs/locales/ar_IQ/translations.json +141 -44
- package/build/cjs/locales/bn/translations.json +458 -0
- package/build/cjs/locales/ckb/translations.json +137 -44
- package/build/cjs/locales/cs/translations.json +88 -20
- package/build/cjs/locales/da/translations.json +102 -23
- package/build/cjs/locales/en/translations.json +73 -9
- package/build/cjs/locales/es/translations.json +75 -9
- package/build/cjs/locales/es_419/translations.json +77 -9
- package/build/cjs/locales/fr/translations.json +77 -9
- package/build/cjs/locales/hi_IN/translations.json +458 -0
- package/build/cjs/locales/id/translations.json +95 -22
- package/build/cjs/locales/index.js +74 -70
- package/build/cjs/locales/km/translations.json +100 -23
- package/build/cjs/locales/lo/translations.json +73 -9
- package/build/cjs/locales/my/translations.json +101 -23
- package/build/cjs/locales/nb/translations.json +88 -20
- package/build/cjs/locales/ne/translations.json +77 -9
- package/build/cjs/locales/nl/translations.json +95 -22
- package/build/cjs/locales/or/translations.json +137 -44
- package/build/cjs/locales/prs/translations.json +102 -23
- package/build/cjs/locales/ps/translations.json +102 -23
- package/build/cjs/locales/pt/translations.json +73 -9
- package/build/cjs/locales/pt_BR/translations.json +95 -22
- package/build/cjs/locales/ro/translations.json +138 -44
- package/build/cjs/locales/ru/translations.json +77 -9
- package/build/cjs/locales/si/translations.json +102 -23
- package/build/cjs/locales/sv/translations.json +88 -20
- package/build/cjs/locales/tet/translations.json +101 -23
- package/build/cjs/locales/tg/translations.json +102 -23
- package/build/cjs/locales/uk/translations.json +96 -22
- package/build/cjs/locales/ur/translations.json +96 -22
- package/build/cjs/locales/uz_UZ_Cyrl/translations.json +95 -22
- package/build/cjs/locales/uz_UZ_Latn/translations.json +96 -22
- package/build/cjs/locales/vi/translations.json +73 -9
- package/build/cjs/locales/zh/translations.json +73 -9
- package/build/cjs/locales/zh_CN/translations.json +95 -22
- package/build/cjs/modules/dimensionListItem.js +3 -3
- package/build/cjs/modules/dimensionSelectorHelper.js +2 -2
- package/build/cjs/modules/valueTypes.js +50 -11
- package/build/es/__demo__/DataDimension.stories.js +42 -0
- package/build/es/api/dimensions.js +1 -1
- package/build/es/api/expression.js +19 -9
- package/build/es/components/DataDimension/Calculation/CalculationModal.js +2 -2
- package/build/es/components/DataDimension/DataDimension.js +4 -1
- package/build/es/components/DataDimension/Info/CalculationInfo.js +96 -0
- package/build/es/components/DataDimension/Info/DataElementInfo.js +127 -0
- package/build/es/components/DataDimension/Info/DataElementOperandInfo.js +178 -0
- package/build/es/components/DataDimension/Info/DataSetInfo.js +107 -0
- package/build/es/components/DataDimension/Info/EventDataItemInfo.js +103 -0
- package/build/es/components/DataDimension/Info/IndicatorInfo.js +169 -0
- package/build/es/components/DataDimension/Info/InfoPopover.js +54 -0
- package/build/es/components/DataDimension/Info/InfoTable.js +205 -0
- package/build/es/components/DataDimension/Info/ProgramIndicatorInfo.js +181 -0
- package/build/es/components/DataDimension/Info/styles/InfoPopover.style.js +4 -0
- package/build/es/components/DataDimension/ItemSelector.js +24 -7
- package/build/es/components/DataDimension/TransferOption.js +109 -0
- package/build/es/components/DataDimension/styles/TransferOption.style.js +4 -0
- package/build/es/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +0 -20
- package/build/es/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -5
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -12
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +3 -10
- package/build/es/components/styles/DimensionSelector.style.js +2 -2
- package/build/es/index.js +1 -1
- package/build/es/locales/ar/translations.json +96 -22
- package/build/es/locales/ar_IQ/translations.json +141 -44
- package/build/es/locales/bn/translations.json +458 -0
- package/build/es/locales/ckb/translations.json +137 -44
- package/build/es/locales/cs/translations.json +88 -20
- package/build/es/locales/da/translations.json +102 -23
- package/build/es/locales/en/translations.json +73 -9
- package/build/es/locales/es/translations.json +75 -9
- package/build/es/locales/es_419/translations.json +77 -9
- package/build/es/locales/fr/translations.json +77 -9
- package/build/es/locales/hi_IN/translations.json +458 -0
- package/build/es/locales/id/translations.json +95 -22
- package/build/es/locales/index.js +4 -0
- package/build/es/locales/km/translations.json +100 -23
- package/build/es/locales/lo/translations.json +73 -9
- package/build/es/locales/my/translations.json +101 -23
- package/build/es/locales/nb/translations.json +88 -20
- package/build/es/locales/ne/translations.json +77 -9
- package/build/es/locales/nl/translations.json +95 -22
- package/build/es/locales/or/translations.json +137 -44
- package/build/es/locales/prs/translations.json +102 -23
- package/build/es/locales/ps/translations.json +102 -23
- package/build/es/locales/pt/translations.json +73 -9
- package/build/es/locales/pt_BR/translations.json +95 -22
- package/build/es/locales/ro/translations.json +138 -44
- package/build/es/locales/ru/translations.json +77 -9
- package/build/es/locales/si/translations.json +102 -23
- package/build/es/locales/sv/translations.json +88 -20
- package/build/es/locales/tet/translations.json +101 -23
- package/build/es/locales/tg/translations.json +102 -23
- package/build/es/locales/uk/translations.json +96 -22
- package/build/es/locales/ur/translations.json +96 -22
- package/build/es/locales/uz_UZ_Cyrl/translations.json +95 -22
- package/build/es/locales/uz_UZ_Latn/translations.json +96 -22
- package/build/es/locales/vi/translations.json +73 -9
- package/build/es/locales/zh/translations.json +73 -9
- package/build/es/locales/zh_CN/translations.json +95 -22
- package/build/es/modules/dimensionListItem.js +1 -1
- package/build/es/modules/dimensionSelectorHelper.js +2 -2
- package/build/es/modules/valueTypes.js +48 -10
- 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": "None",
|
|
56
|
+
"Data set(s)": "",
|
|
57
|
+
"Zero is significant": "",
|
|
58
|
+
"True": "",
|
|
59
|
+
"False": "",
|
|
60
|
+
"Value type": "Value type",
|
|
61
|
+
"Aggregation type": "",
|
|
62
|
+
"Category combo": "",
|
|
63
|
+
"Option set": "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": "Indicators",
|
|
71
|
+
"Expiry days": "",
|
|
72
|
+
"Type": "",
|
|
73
|
+
"Data element": "Data element",
|
|
74
|
+
"Tracked entity attribute": "Tracked entity attribute",
|
|
75
|
+
"Numerator description": "Numerator description",
|
|
76
|
+
"Numerator expression": "",
|
|
77
|
+
"Denominator description": "Denominator description",
|
|
78
|
+
"Denominator expression": "",
|
|
79
|
+
"Annualized": "Annualized",
|
|
80
|
+
"Yes": "Yes",
|
|
81
|
+
"No": "No",
|
|
82
|
+
"Indicator type": "Indicator type",
|
|
83
|
+
"Decimals in output": "",
|
|
84
|
+
"There was a problem loading information for this data item.": "",
|
|
85
|
+
"Name": "Name",
|
|
86
|
+
"Description": "Description",
|
|
87
|
+
"Code": "Code",
|
|
88
|
+
"ID": "",
|
|
89
|
+
"Last updated date": "",
|
|
90
|
+
"Created date": "",
|
|
91
|
+
"Created by": "Created by",
|
|
92
|
+
"Custom": "Custom",
|
|
93
|
+
"Program": "",
|
|
94
|
+
"Analytics type": "",
|
|
95
|
+
"Enrollment": "",
|
|
96
|
+
"Event": "",
|
|
97
|
+
"Analytics period boundaries": "",
|
|
98
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
99
|
+
"Expression": "Expression",
|
|
100
|
+
"Filter": "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": "Close",
|
|
97
150
|
"Rename {{fileType}}": "",
|
|
98
|
-
"Name": "Name",
|
|
99
|
-
"Description": "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": "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": "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": "No results found",
|
|
139
185
|
"Not available offline": "",
|
|
140
|
-
"Created by": "Created by",
|
|
141
186
|
"Anyone": "",
|
|
142
187
|
"Only you": "",
|
|
143
188
|
"Others": "",
|
|
@@ -145,7 +190,6 @@
|
|
|
145
190
|
"Filter by name": "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": "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": "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": "Daily",
|
|
203
246
|
"Weekly": "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": "No results found",
|
|
279
335
|
"Series": "",
|
|
280
336
|
"Category": "Category",
|
|
281
|
-
"Filter": "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": "Indicators",
|
|
293
346
|
"Indicator group": "Indicator group",
|
|
294
347
|
"All groups": "",
|
|
295
348
|
"Indicator": "Indicator",
|
|
296
349
|
"No indicator groups found": "",
|
|
297
350
|
"Loading indicator groups": "",
|
|
298
351
|
"Data element group": "Data element group",
|
|
299
|
-
"Data element": "Data element",
|
|
300
352
|
"No data element groups found": "",
|
|
301
353
|
"Loading data element groups": "",
|
|
302
354
|
"Data sets": "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": "Organisation unit",
|
|
350
403
|
"Assigned Categories": "",
|
|
404
|
+
"Text": "",
|
|
405
|
+
"Long text": "",
|
|
406
|
+
"Multi text": "",
|
|
407
|
+
"Letter": "",
|
|
408
|
+
"Phone number": "",
|
|
409
|
+
"Email": "",
|
|
410
|
+
"Yes/No": "Yes/No",
|
|
411
|
+
"Yes Only": "Yes Only",
|
|
412
|
+
"Date": "Date",
|
|
413
|
+
"Date & Time": "Date & Time",
|
|
414
|
+
"Time": "",
|
|
415
|
+
"Unit interval": "",
|
|
416
|
+
"Percentage": "",
|
|
417
|
+
"Integer": "Integer",
|
|
418
|
+
"Positive Integer": "Positive Integer",
|
|
419
|
+
"Negative Integer": "Negative Integer",
|
|
420
|
+
"Positive or Zero Integer": "Positive or Zero Integer",
|
|
421
|
+
"Tracker Associate": "",
|
|
422
|
+
"Username": "Username",
|
|
423
|
+
"Coordinate": "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": "All types",
|
|
51
51
|
"Disaggregation": "Disaggregation",
|
|
52
52
|
"No data": "No data",
|
|
53
|
+
"Expression description": "Expression description",
|
|
54
|
+
"Error loading value": "Error loading value",
|
|
55
|
+
"None": "None",
|
|
56
|
+
"Data set(s)": "Data set(s)",
|
|
57
|
+
"Zero is significant": "Zero is significant",
|
|
58
|
+
"True": "True",
|
|
59
|
+
"False": "False",
|
|
60
|
+
"Value type": "Value type",
|
|
61
|
+
"Aggregation type": "Aggregation type",
|
|
62
|
+
"Category combo": "Category combo",
|
|
63
|
+
"Option set": "Option set",
|
|
64
|
+
"Group membership": "Group membership",
|
|
65
|
+
"Legend set(s)": "Legend set(s)",
|
|
66
|
+
"Category option name": "Category option name",
|
|
67
|
+
"Category combo name": "Category combo name",
|
|
68
|
+
"Categories name": "Categories name",
|
|
69
|
+
"Period type": "Period type",
|
|
70
|
+
"Indicators": "Indicators",
|
|
71
|
+
"Expiry days": "Expiry days",
|
|
72
|
+
"Type": "Type",
|
|
73
|
+
"Data element": "Data element",
|
|
74
|
+
"Tracked entity attribute": "Tracked entity attribute",
|
|
75
|
+
"Numerator description": "Numerator description",
|
|
76
|
+
"Numerator expression": "Numerator expression",
|
|
77
|
+
"Denominator description": "Denominator description",
|
|
78
|
+
"Denominator expression": "Denominator expression",
|
|
79
|
+
"Annualized": "Annualized",
|
|
80
|
+
"Yes": "Yes",
|
|
81
|
+
"No": "No",
|
|
82
|
+
"Indicator type": "Indicator type",
|
|
83
|
+
"Decimals in output": "Decimals in output",
|
|
84
|
+
"There was a problem loading information for this data item.": "There was a problem loading information for this data item.",
|
|
85
|
+
"Name": "Name",
|
|
86
|
+
"Description": "Description",
|
|
87
|
+
"Code": "Code",
|
|
88
|
+
"ID": "ID",
|
|
89
|
+
"Last updated date": "Last updated date",
|
|
90
|
+
"Created date": "Created date",
|
|
91
|
+
"Created by": "Created by",
|
|
92
|
+
"Custom": "Custom",
|
|
93
|
+
"Program": "Program",
|
|
94
|
+
"Analytics type": "Analytics type",
|
|
95
|
+
"Enrollment": "Enrollment",
|
|
96
|
+
"Event": "Event",
|
|
97
|
+
"Analytics period boundaries": "Analytics period boundaries",
|
|
98
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "{{ offsetPeriodType }} × {{ offsetPeriods }}",
|
|
99
|
+
"Expression": "Expression",
|
|
100
|
+
"Filter": "Filter",
|
|
53
101
|
"Search by data item name": "Search by data item name",
|
|
54
102
|
"No items selected": "No items selected",
|
|
55
103
|
"Selected Items": "Selected Items",
|
|
@@ -100,8 +148,6 @@
|
|
|
100
148
|
"Open in this app": "Open in this app",
|
|
101
149
|
"Close": "Close",
|
|
102
150
|
"Rename {{fileType}}": "Rename {{fileType}}",
|
|
103
|
-
"Name": "Name",
|
|
104
|
-
"Description": "Description",
|
|
105
151
|
"Rename": "Rename",
|
|
106
152
|
"{{- objectName}} (copy)": "{{- objectName}} (copy)",
|
|
107
153
|
"Save {{fileType}} as": "Save {{fileType}} as",
|
|
@@ -137,7 +183,6 @@
|
|
|
137
183
|
"Could not update interpretation": "Could not update interpretation",
|
|
138
184
|
"Enter interpretation text": "Enter interpretation text",
|
|
139
185
|
"Not available offline": "Not available offline",
|
|
140
|
-
"Created by": "Created by",
|
|
141
186
|
"Anyone": "Anyone",
|
|
142
187
|
"Only you": "Only you",
|
|
143
188
|
"Others": "Others",
|
|
@@ -145,7 +190,6 @@
|
|
|
145
190
|
"Filter by name": "Filter by name",
|
|
146
191
|
"Created": "Created",
|
|
147
192
|
"Last updated": "Last updated",
|
|
148
|
-
"Type": "Type",
|
|
149
193
|
"Clear filters": "Clear filters",
|
|
150
194
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}",
|
|
151
195
|
"Open": "Open",
|
|
@@ -191,7 +235,6 @@
|
|
|
191
235
|
"Select a level": "Select a level",
|
|
192
236
|
"Select a group": "Select a group",
|
|
193
237
|
"Deselect all": "Deselect all",
|
|
194
|
-
"Period type": "Period type",
|
|
195
238
|
"Year": "Year",
|
|
196
239
|
"Select year": "Select year",
|
|
197
240
|
"Period": "Period",
|
|
@@ -291,7 +334,6 @@
|
|
|
291
334
|
"No results found": "No results found",
|
|
292
335
|
"Series": "Series",
|
|
293
336
|
"Category": "Category",
|
|
294
|
-
"Filter": "Filter",
|
|
295
337
|
"Columns": "Columns",
|
|
296
338
|
"Rows": "Rows",
|
|
297
339
|
"Points": "Points",
|
|
@@ -300,16 +342,13 @@
|
|
|
300
342
|
"Actual reports": "Actual reports",
|
|
301
343
|
"Actual reports on time": "Actual reports on time",
|
|
302
344
|
"Expected reports": "Expected reports",
|
|
303
|
-
"Program": "Program",
|
|
304
345
|
"Select a program": "Select a program",
|
|
305
|
-
"Indicators": "Indicators",
|
|
306
346
|
"Indicator group": "Indicator group",
|
|
307
347
|
"All groups": "All groups",
|
|
308
348
|
"Indicator": "Indicator",
|
|
309
349
|
"No indicator groups found": "No indicator groups found",
|
|
310
350
|
"Loading indicator groups": "Loading indicator groups",
|
|
311
351
|
"Data element group": "Data element group",
|
|
312
|
-
"Data element": "Data element",
|
|
313
352
|
"No data element groups found": "No data element groups found",
|
|
314
353
|
"Loading data element groups": "Loading data element groups",
|
|
315
354
|
"Data sets": "Data sets",
|
|
@@ -362,6 +401,31 @@
|
|
|
362
401
|
"Data": "Data",
|
|
363
402
|
"Organisation unit": "Organisation unit",
|
|
364
403
|
"Assigned Categories": "Assigned Categories",
|
|
404
|
+
"Text": "Text",
|
|
405
|
+
"Long text": "Long text",
|
|
406
|
+
"Multi text": "Multi text",
|
|
407
|
+
"Letter": "Letter",
|
|
408
|
+
"Phone number": "Phone number",
|
|
409
|
+
"Email": "Email",
|
|
410
|
+
"Yes/No": "Yes/No",
|
|
411
|
+
"Yes Only": "Yes Only",
|
|
412
|
+
"Date": "Date",
|
|
413
|
+
"Date & Time": "Date & Time",
|
|
414
|
+
"Time": "Time",
|
|
415
|
+
"Unit interval": "Unit interval",
|
|
416
|
+
"Percentage": "Percentage",
|
|
417
|
+
"Integer": "Integer",
|
|
418
|
+
"Positive Integer": "Positive Integer",
|
|
419
|
+
"Negative Integer": "Negative Integer",
|
|
420
|
+
"Positive or Zero Integer": "Positive or Zero Integer",
|
|
421
|
+
"Tracker Associate": "Tracker Associate",
|
|
422
|
+
"Username": "Username",
|
|
423
|
+
"Coordinate": "Coordinate",
|
|
424
|
+
"Reference": "Reference",
|
|
425
|
+
"Age": "Age",
|
|
426
|
+
"URL": "URL",
|
|
427
|
+
"Image": "Image",
|
|
428
|
+
"GeoJSON": "GeoJSON",
|
|
365
429
|
"Pivot table": "Pivot table",
|
|
366
430
|
"Area": "Area",
|
|
367
431
|
"Stacked area": "Stacked area",
|
|
@@ -50,6 +50,54 @@
|
|
|
50
50
|
"All types": "Todos los tipos",
|
|
51
51
|
"Disaggregation": "Desagregación",
|
|
52
52
|
"No data": "No hay datos",
|
|
53
|
+
"Expression description": "",
|
|
54
|
+
"Error loading value": "",
|
|
55
|
+
"None": "Ninguno",
|
|
56
|
+
"Data set(s)": "",
|
|
57
|
+
"Zero is significant": "",
|
|
58
|
+
"True": "Verdadero",
|
|
59
|
+
"False": "Falso",
|
|
60
|
+
"Value type": "Tipo de Valor",
|
|
61
|
+
"Aggregation type": "Tipo de agregación",
|
|
62
|
+
"Category combo": "",
|
|
63
|
+
"Option set": "Set de opciones",
|
|
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": "Días para vencimiento",
|
|
72
|
+
"Type": "Tipo",
|
|
73
|
+
"Data element": "Elemento de datos",
|
|
74
|
+
"Tracked entity attribute": "Atributo de entidad",
|
|
75
|
+
"Numerator description": "Descripción del numerador",
|
|
76
|
+
"Numerator expression": "",
|
|
77
|
+
"Denominator description": "Descripción del denominador",
|
|
78
|
+
"Denominator expression": "",
|
|
79
|
+
"Annualized": "Anualizado",
|
|
80
|
+
"Yes": "Sí",
|
|
81
|
+
"No": "No",
|
|
82
|
+
"Indicator type": "Tipo de Indicador",
|
|
83
|
+
"Decimals in output": "",
|
|
84
|
+
"There was a problem loading information for this data item.": "",
|
|
85
|
+
"Name": "Nombre",
|
|
86
|
+
"Description": "Descripción",
|
|
87
|
+
"Code": "Código",
|
|
88
|
+
"ID": "Identificador",
|
|
89
|
+
"Last updated date": "",
|
|
90
|
+
"Created date": "Fecha de creación",
|
|
91
|
+
"Created by": "Creado por",
|
|
92
|
+
"Custom": "Personalizado",
|
|
93
|
+
"Program": "Programa",
|
|
94
|
+
"Analytics type": "",
|
|
95
|
+
"Enrollment": "Inscripción",
|
|
96
|
+
"Event": "Evento",
|
|
97
|
+
"Analytics period boundaries": "Límites del período de análisis",
|
|
98
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
99
|
+
"Expression": "Expresión",
|
|
100
|
+
"Filter": "filtro",
|
|
53
101
|
"Search by data item name": "Búsqueda por nombre de item de datos",
|
|
54
102
|
"No items selected": "No hay elementos seleccionados",
|
|
55
103
|
"Selected Items": "Elementos seleccionados",
|
|
@@ -100,8 +148,6 @@
|
|
|
100
148
|
"Open in this app": "Abierto en esta aplicación",
|
|
101
149
|
"Close": "Cerrar",
|
|
102
150
|
"Rename {{fileType}}": "Renombrar {{fileType}}",
|
|
103
|
-
"Name": "Nombre",
|
|
104
|
-
"Description": "Descripción",
|
|
105
151
|
"Rename": "Renombrar",
|
|
106
152
|
"{{- objectName}} (copy)": "{{- objectName}} (copia)",
|
|
107
153
|
"Save {{fileType}} as": "Guardar {{fileType}} como",
|
|
@@ -137,7 +183,6 @@
|
|
|
137
183
|
"Could not update interpretation": "No se pudo actualizar la interpretación",
|
|
138
184
|
"Enter interpretation text": "Introducir el texto de la interpretación",
|
|
139
185
|
"Not available offline": "No disponible sin conexión a internet",
|
|
140
|
-
"Created by": "Creado por",
|
|
141
186
|
"Anyone": "Todos",
|
|
142
187
|
"Only you": "Solo tú",
|
|
143
188
|
"Others": "Otros",
|
|
@@ -145,7 +190,6 @@
|
|
|
145
190
|
"Filter by name": "Filtrar por nombre",
|
|
146
191
|
"Created": "Creado",
|
|
147
192
|
"Last updated": "Última actualización",
|
|
148
|
-
"Type": "Tipo",
|
|
149
193
|
"Clear filters": "Limpiar filtros",
|
|
150
194
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} de {{totalNumberOfItems}}",
|
|
151
195
|
"Open": "Abierto",
|
|
@@ -191,7 +235,6 @@
|
|
|
191
235
|
"Select a level": "Selecciona un nivel",
|
|
192
236
|
"Select a group": "Selecciona un grupo",
|
|
193
237
|
"Deselect all": "Deseleccionar todo",
|
|
194
|
-
"Period type": "Tipo de periodo",
|
|
195
238
|
"Year": "Año",
|
|
196
239
|
"Select year": "Seleccionar año",
|
|
197
240
|
"Period": "Periodo",
|
|
@@ -267,6 +310,7 @@
|
|
|
267
310
|
"Six-months": "Semestres",
|
|
268
311
|
"Financial Years": "Años fiscales",
|
|
269
312
|
"Years": "Años",
|
|
313
|
+
"Value: {{value}}": "",
|
|
270
314
|
"Bold text": "Texto en negrita",
|
|
271
315
|
"Italic text": "Texto en cursiva",
|
|
272
316
|
"Link to a URL": "Enlace a una URL",
|
|
@@ -290,7 +334,6 @@
|
|
|
290
334
|
"No results found": "No results found",
|
|
291
335
|
"Series": "Series",
|
|
292
336
|
"Category": "Categoría",
|
|
293
|
-
"Filter": "filtro",
|
|
294
337
|
"Columns": "Columnas",
|
|
295
338
|
"Rows": "Filas",
|
|
296
339
|
"Points": "Puntos",
|
|
@@ -299,16 +342,13 @@
|
|
|
299
342
|
"Actual reports": "Informes reales",
|
|
300
343
|
"Actual reports on time": "Informes reales a tiempo",
|
|
301
344
|
"Expected reports": "Informes esperados",
|
|
302
|
-
"Program": "Programa",
|
|
303
345
|
"Select a program": "Seleccionar un programa",
|
|
304
|
-
"Indicators": "Indicadores",
|
|
305
346
|
"Indicator group": "Grupo de indicadores",
|
|
306
347
|
"All groups": "Todos los grupos",
|
|
307
348
|
"Indicator": "Indicadores",
|
|
308
349
|
"No indicator groups found": "No se han encontrado grupos de indicadores",
|
|
309
350
|
"Loading indicator groups": "Cargando grupos de indicadores",
|
|
310
351
|
"Data element group": "Grupo de elemento de datos",
|
|
311
|
-
"Data element": "Elemento de datos",
|
|
312
352
|
"No data element groups found": "No se han encontrado grupos de elementos de datos",
|
|
313
353
|
"Loading data element groups": "Cargando grupos de elementos de datos",
|
|
314
354
|
"Data sets": "Sets de datos",
|
|
@@ -357,9 +397,35 @@
|
|
|
357
397
|
"{{thresholdFactor}} × Modified Z-score high": "{{thresholdFactor}} × Z-score modificado alto",
|
|
358
398
|
"{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × Z-score bajo",
|
|
359
399
|
"{{thresholdFactor}} × Z-score high": "{{thresholdFactor}} × Z-score alto",
|
|
400
|
+
"Not applicable": "",
|
|
360
401
|
"Data": "Datos",
|
|
361
402
|
"Organisation unit": "Unidad organizativa",
|
|
362
403
|
"Assigned Categories": "Categorías asignadas",
|
|
404
|
+
"Text": "Texto",
|
|
405
|
+
"Long text": "Texto largo",
|
|
406
|
+
"Multi text": "",
|
|
407
|
+
"Letter": "",
|
|
408
|
+
"Phone number": "Número de teléfono",
|
|
409
|
+
"Email": "Correo-e",
|
|
410
|
+
"Yes/No": "Sí/No",
|
|
411
|
+
"Yes Only": "Sólo Sí",
|
|
412
|
+
"Date": "Fecha",
|
|
413
|
+
"Date & Time": "Fecha y Hora",
|
|
414
|
+
"Time": "Hora",
|
|
415
|
+
"Unit interval": "Intervalo de unidad",
|
|
416
|
+
"Percentage": "Porcentaje",
|
|
417
|
+
"Integer": "Entero",
|
|
418
|
+
"Positive Integer": "Entero positivo",
|
|
419
|
+
"Negative Integer": "Entero negativo",
|
|
420
|
+
"Positive or Zero Integer": "Entero positivo o cero",
|
|
421
|
+
"Tracker Associate": "",
|
|
422
|
+
"Username": "Nombre de usuario",
|
|
423
|
+
"Coordinate": "Coordenada",
|
|
424
|
+
"Reference": "Referencia",
|
|
425
|
+
"Age": "",
|
|
426
|
+
"URL": "URL",
|
|
427
|
+
"Image": "Imagen (PNG)",
|
|
428
|
+
"GeoJSON": "GeoJSON",
|
|
363
429
|
"Pivot table": "Tabla dinámica",
|
|
364
430
|
"Area": "Área",
|
|
365
431
|
"Stacked area": "Área apilada",
|