@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
|
@@ -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",
|
|
@@ -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": "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": "Майлон",
|