@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
|
@@ -49,6 +49,54 @@
|
|
|
49
49
|
"All types": "ທຸກຊະນິດ",
|
|
50
50
|
"Disaggregation": "Disaggregation",
|
|
51
51
|
"No data": "ບໍ່ມີຂໍ້ມູນ",
|
|
52
|
+
"Expression description": "",
|
|
53
|
+
"Error loading value": "",
|
|
54
|
+
"None": "ບໍ່ແມນ",
|
|
55
|
+
"Data set(s)": "",
|
|
56
|
+
"Zero is significant": "",
|
|
57
|
+
"True": "",
|
|
58
|
+
"False": "",
|
|
59
|
+
"Value type": "Value Type",
|
|
60
|
+
"Aggregation type": "ປະເພດຕົວເລກລວມ",
|
|
61
|
+
"Category combo": "",
|
|
62
|
+
"Option set": "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": "ຕົວຊີ້ວັດ",
|
|
70
|
+
"Expiry days": "Expiry Days",
|
|
71
|
+
"Type": "ຊະນິດ",
|
|
72
|
+
"Data element": "ອົງປະກອບຂໍ້ມູນ",
|
|
73
|
+
"Tracked entity attribute": "Attribute",
|
|
74
|
+
"Numerator description": "ພັນລະນາກ່ຽວກັບຕົວຕັ້ງ",
|
|
75
|
+
"Numerator expression": "",
|
|
76
|
+
"Denominator description": "ການພັນລະນາເຖິງຕົວຫານ",
|
|
77
|
+
"Denominator expression": "",
|
|
78
|
+
"Annualized": "Annualized",
|
|
79
|
+
"Yes": "ແມ່ນ",
|
|
80
|
+
"No": "ບໍ່ແມນ",
|
|
81
|
+
"Indicator type": "Indicator Type",
|
|
82
|
+
"Decimals in output": "",
|
|
83
|
+
"There was a problem loading information for this data item.": "",
|
|
84
|
+
"Name": "ຊື່",
|
|
85
|
+
"Description": "ລາຍລະອຽດ",
|
|
86
|
+
"Code": "ລະຫັດ",
|
|
87
|
+
"ID": "ລະຫັດ",
|
|
88
|
+
"Last updated date": "",
|
|
89
|
+
"Created date": "ສ້າງຂໍ້ມູນ",
|
|
90
|
+
"Created by": "ສ້າງໂດຍ",
|
|
91
|
+
"Custom": "ກຳນົດເອງ",
|
|
92
|
+
"Program": "ໂປແກຼມ",
|
|
93
|
+
"Analytics type": "",
|
|
94
|
+
"Enrollment": "ການລົງທະບຽນ",
|
|
95
|
+
"Event": "ເຫດການ",
|
|
96
|
+
"Analytics period boundaries": "",
|
|
97
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
98
|
+
"Expression": "ເຄື່ອງໝາຍເລກ",
|
|
99
|
+
"Filter": "ຕົວກອງ",
|
|
52
100
|
"Search by data item name": "ຄົ້ນຫາໂດຍຊື່ລາຍການຂໍ້ມູນ",
|
|
53
101
|
"No items selected": "ບໍ່ມີລາຍການທີ່ຖືກເລືອກ",
|
|
54
102
|
"Selected Items": "ລາຍການທີ່ເລືອກ",
|
|
@@ -99,8 +147,6 @@
|
|
|
99
147
|
"Open in this app": "ເປີດແອ໋ບນີ້",
|
|
100
148
|
"Close": "ປິດ",
|
|
101
149
|
"Rename {{fileType}}": "ປ່ຽນຊື່ {{fileType}}",
|
|
102
|
-
"Name": "ຊື່",
|
|
103
|
-
"Description": "ລາຍລະອຽດ",
|
|
104
150
|
"Rename": "ປ່ຽນຊື່",
|
|
105
151
|
"{{- objectName}} (copy)": "{{- ຊື່ອົງປະກອບ}} (copy)",
|
|
106
152
|
"Save {{fileType}} as": "ບັນທຶກ {{fileType}} ເປັນ",
|
|
@@ -135,7 +181,6 @@
|
|
|
135
181
|
"Could not update interpretation": "ບໍ່ສາມາດອັບເດດຂໍ້ຄວາມ",
|
|
136
182
|
"Enter interpretation text": "ປ້ອນຂໍ້ຄວາມ",
|
|
137
183
|
"Not available offline": "ບໍ່ສາມາດໃຊ້ໄດ້ອອບລາຍ",
|
|
138
|
-
"Created by": "ສ້າງໂດຍ",
|
|
139
184
|
"Anyone": "ທຸກຄົນ",
|
|
140
185
|
"Only you": "ທ່ານຄົນດຽວ",
|
|
141
186
|
"Others": "ອື່ນໆ",
|
|
@@ -143,7 +188,6 @@
|
|
|
143
188
|
"Filter by name": "ກັ່ນຕອງຈາກຊື່",
|
|
144
189
|
"Created": "ສ້າງແລ້ວ",
|
|
145
190
|
"Last updated": "ປັບປຸງຄັ້ງຫລ້າສຸດ",
|
|
146
|
-
"Type": "ຊະນິດ",
|
|
147
191
|
"Clear filters": "ປັບປຸງເຄື່ອງມືຄັດຈ້ອນ",
|
|
148
192
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}} {{lastItemIndex}} ຂອງ {{totalNumberOfItems}}",
|
|
149
193
|
"Open": "ເປີດ",
|
|
@@ -186,7 +230,6 @@
|
|
|
186
230
|
"Select a level": "ເລືອກຂັ້ນ",
|
|
187
231
|
"Select a group": "ເລືອກກຸ່ມ",
|
|
188
232
|
"Deselect all": "ຍົກເລີກການເລືອກທັງໝົດ",
|
|
189
|
-
"Period type": "ແບບຊ່ວງເວລາ",
|
|
190
233
|
"Year": "ປີ",
|
|
191
234
|
"Select year": "ເລືອກປີ",
|
|
192
235
|
"Period": "ຊ່ວງເວລາ",
|
|
@@ -286,7 +329,6 @@
|
|
|
286
329
|
"No results found": "ບໍ່ພົບຜົນການຊອກຫາ",
|
|
287
330
|
"Series": "ແທ່ງ",
|
|
288
331
|
"Category": "ລວງນອນ",
|
|
289
|
-
"Filter": "ຕົວກອງ",
|
|
290
332
|
"Columns": "ຖັນ",
|
|
291
333
|
"Rows": "ແຖວ",
|
|
292
334
|
"Points": "ຄະແນນ",
|
|
@@ -295,16 +337,13 @@
|
|
|
295
337
|
"Actual reports": "ລາຍງານຕົວຈິງ",
|
|
296
338
|
"Actual reports on time": "ລາຍງານຕົວຈິງຕົງເວລາ",
|
|
297
339
|
"Expected reports": "ລາຍງານທີ່ຄາດໄວ້",
|
|
298
|
-
"Program": "ໂປແກຼມ",
|
|
299
340
|
"Select a program": "ເລືອກໂປແກຼມ",
|
|
300
|
-
"Indicators": "ຕົວຊີ້ວັດ",
|
|
301
341
|
"Indicator group": "ກຸ່ມຂອງຕົວຊີ້ວັດ",
|
|
302
342
|
"All groups": "ກຸ່ມທັງໝົດ",
|
|
303
343
|
"Indicator": "ຕົວຊີ້ວັດ",
|
|
304
344
|
"No indicator groups found": "ບໍ່ພົບກຸ່ມຕົວຊີ້ວັດ",
|
|
305
345
|
"Loading indicator groups": "ໂຫຼດກຸ່ມຕົວຊີ້ວັດ",
|
|
306
346
|
"Data element group": "ກຸ່ມຂອງອົງປະກອບຂໍ້ມູນ",
|
|
307
|
-
"Data element": "ອົງປະກອບຂໍ້ມູນ",
|
|
308
347
|
"No data element groups found": "ບໍ່ພົບກຸ່ມອົງປະກອບຂໍ້ມູນ",
|
|
309
348
|
"Loading data element groups": "ໂຫຼດກຸ່ມອົງປະກອບຂໍ້ມູນ",
|
|
310
349
|
"Data sets": "ແບບຟອມ",
|
|
@@ -357,6 +396,31 @@
|
|
|
357
396
|
"Data": "ຂໍ້ມູນ",
|
|
358
397
|
"Organisation unit": "ຫົວໜ່ວຍການຈັດຕັ້ງ",
|
|
359
398
|
"Assigned Categories": "ຈັດໝວດໝູ່",
|
|
399
|
+
"Text": "ຂໍ້ຄວາມ",
|
|
400
|
+
"Long text": "",
|
|
401
|
+
"Multi text": "",
|
|
402
|
+
"Letter": "",
|
|
403
|
+
"Phone number": "ໝາຍເລກໂທລະສັບ",
|
|
404
|
+
"Email": "ອີເມວ",
|
|
405
|
+
"Yes/No": "ແມ່ນ/ບໍ່ແມນ",
|
|
406
|
+
"Yes Only": "ແມ່ນ",
|
|
407
|
+
"Date": "ວັນທີ່",
|
|
408
|
+
"Date & Time": "ວັນທີ່ & ເວລາ",
|
|
409
|
+
"Time": "ເວລາ",
|
|
410
|
+
"Unit interval": "",
|
|
411
|
+
"Percentage": "ເປີເຊັນ",
|
|
412
|
+
"Integer": "Integer",
|
|
413
|
+
"Positive Integer": "Positive Integer",
|
|
414
|
+
"Negative Integer": "Negative Integer",
|
|
415
|
+
"Positive or Zero Integer": "",
|
|
416
|
+
"Tracker Associate": "Tracker associate",
|
|
417
|
+
"Username": "ຊື່ຜູ້ໃຊ້",
|
|
418
|
+
"Coordinate": "ເສັ້ນສະແດງ",
|
|
419
|
+
"Reference": "",
|
|
420
|
+
"Age": "Age(years)",
|
|
421
|
+
"URL": "URL",
|
|
422
|
+
"Image": "ຮູບພາບ",
|
|
423
|
+
"GeoJSON": "",
|
|
360
424
|
"Pivot table": "ແບບຕາຕະລາງໄພວ໋ອດ",
|
|
361
425
|
"Area": "ພື້ນທີ່",
|
|
362
426
|
"Stacked area": "ພື້ນທີ່ຊ້ອນກັນ",
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
"About this map": "",
|
|
19
19
|
"About this line list": "",
|
|
20
20
|
"About this visualization": "",
|
|
21
|
+
"About this event chart": "",
|
|
22
|
+
"About this event report": "",
|
|
21
23
|
"This app could not retrieve required data.": "",
|
|
22
24
|
"Network error": "",
|
|
23
25
|
"Data / Edit calculation": "",
|
|
@@ -43,9 +45,58 @@
|
|
|
43
45
|
"Drag items here, or double click in the list, to start building a calculation formula": "",
|
|
44
46
|
"Math operators": "",
|
|
45
47
|
"Data Type": "",
|
|
48
|
+
"Only {{dataType}} can be used in {{visType}}": "",
|
|
46
49
|
"All types": "",
|
|
47
50
|
"Disaggregation": "",
|
|
48
51
|
"No data": "အချက်အလက်မရှိပါ။",
|
|
52
|
+
"Expression description": "",
|
|
53
|
+
"Error loading value": "",
|
|
54
|
+
"None": "တစ်ခုမှမဟုတ်",
|
|
55
|
+
"Data set(s)": "",
|
|
56
|
+
"Zero is significant": "",
|
|
57
|
+
"True": "",
|
|
58
|
+
"False": "",
|
|
59
|
+
"Value type": "တန်ဖိုးပုံစံ",
|
|
60
|
+
"Aggregation type": "",
|
|
61
|
+
"Category combo": "",
|
|
62
|
+
"Option set": "option အစု",
|
|
63
|
+
"Group membership": "",
|
|
64
|
+
"Legend set(s)": "",
|
|
65
|
+
"Category option name": "",
|
|
66
|
+
"Category combo name": "",
|
|
67
|
+
"Categories name": "",
|
|
68
|
+
"Period type": "Period type",
|
|
69
|
+
"Indicators": "အညွှန်းများ",
|
|
70
|
+
"Expiry days": "",
|
|
71
|
+
"Type": "ပုံစံ",
|
|
72
|
+
"Data element": "data element",
|
|
73
|
+
"Tracked entity attribute": "Tracked entity attribute",
|
|
74
|
+
"Numerator description": "ပိုင်းဝေဖော်ပြချက်",
|
|
75
|
+
"Numerator expression": "",
|
|
76
|
+
"Denominator description": "ပိုင်းခြေဖော်ပြချက်",
|
|
77
|
+
"Denominator expression": "",
|
|
78
|
+
"Annualized": "နှစ်စဉ်ပြုလုပ်သည်",
|
|
79
|
+
"Yes": "မှန်",
|
|
80
|
+
"No": "No",
|
|
81
|
+
"Indicator type": "အညွှန်းကိန်းအမျိုးအစား",
|
|
82
|
+
"Decimals in output": "",
|
|
83
|
+
"There was a problem loading information for this data item.": "",
|
|
84
|
+
"Name": "အမည်",
|
|
85
|
+
"Description": "ဖော်ပြချက်",
|
|
86
|
+
"Code": "ကုဒ်",
|
|
87
|
+
"ID": "အိုင်ဒီ",
|
|
88
|
+
"Last updated date": "",
|
|
89
|
+
"Created date": "",
|
|
90
|
+
"Created by": "Created by",
|
|
91
|
+
"Custom": "Custom",
|
|
92
|
+
"Program": "",
|
|
93
|
+
"Analytics type": "",
|
|
94
|
+
"Enrollment": "",
|
|
95
|
+
"Event": "",
|
|
96
|
+
"Analytics period boundaries": "",
|
|
97
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
98
|
+
"Expression": "ဖော်ပြချက်",
|
|
99
|
+
"Filter": "ရှာဖွေထုတ်သည်",
|
|
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": "ပိတ်သည်",
|
|
96
149
|
"Rename {{fileType}}": "",
|
|
97
|
-
"Name": "အမည်",
|
|
98
|
-
"Description": "ဖော်ပြချက်",
|
|
99
150
|
"Rename": "အမည်သစ်ပေးခြင်း",
|
|
100
151
|
"{{- objectName}} (copy)": "",
|
|
101
152
|
"Save {{fileType}} as": "",
|
|
@@ -106,6 +157,7 @@
|
|
|
106
157
|
"Edit": "တည်းဖြတ်သည်",
|
|
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": "နောက်ဆုံးသတင်းကိုရစေခြင်း",
|
|
@@ -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": "ဘာသာပြန်ခြင်းများ",
|
|
172
|
+
"Reply": "အကြောင်းပြန်သည်",
|
|
173
|
+
"{{count}} replies": "",
|
|
174
|
+
"View replies": "",
|
|
119
175
|
"Unlike": "Больше не нравится",
|
|
120
176
|
"Like": "Нравится",
|
|
121
|
-
"Reply": "အကြောင်းပြန်သည်",
|
|
122
|
-
"Share": "",
|
|
123
177
|
"See interpretation": "",
|
|
178
|
+
"Open in app": "",
|
|
179
|
+
"Share": "",
|
|
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": "No results found",
|
|
138
183
|
"Not available offline": "",
|
|
139
|
-
"Created by": "Created by",
|
|
140
184
|
"Anyone": "",
|
|
141
185
|
"Only you": "",
|
|
142
186
|
"Others": "",
|
|
@@ -144,7 +188,6 @@
|
|
|
144
188
|
"Filter by name": "အမည်ဖြင့်ရှာဖွေထုတ်သည်",
|
|
145
189
|
"Created": "",
|
|
146
190
|
"Last updated": "နောက်ဆုံး အသစ်ဆက်ဆက်",
|
|
147
|
-
"Type": "ပုံစံ",
|
|
148
191
|
"Clear filters": "",
|
|
149
192
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
|
|
150
193
|
"Open": "Open",
|
|
@@ -187,13 +230,12 @@
|
|
|
187
230
|
"Select a level": "",
|
|
188
231
|
"Select a group": "",
|
|
189
232
|
"Deselect all": "",
|
|
190
|
-
"Period type": "Period type",
|
|
191
233
|
"Year": "ခုနှစ်",
|
|
192
234
|
"Select year": "",
|
|
193
235
|
"Period": "အချိန်ကာလ",
|
|
236
|
+
"Selected Periods": "",
|
|
194
237
|
"Relative periods": "",
|
|
195
238
|
"Fixed periods": "",
|
|
196
|
-
"Selected Periods": "",
|
|
197
239
|
"No periods selected": "သက်ဆိုင်ရာ အချိန်ကာလကို မရွေးချယ်ထားပါ။",
|
|
198
240
|
"Daily": "နေ့စဉ်",
|
|
199
241
|
"Weekly": "အပတ်စဉ်",
|
|
@@ -263,6 +305,15 @@
|
|
|
263
305
|
"Six-months": "၆ လ",
|
|
264
306
|
"Financial Years": "",
|
|
265
307
|
"Years": "နှစ်များ",
|
|
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": "No results found",
|
|
275
330
|
"Series": "အစဉ်အတန်းများ",
|
|
276
331
|
"Category": "category",
|
|
277
|
-
"Filter": "ရှာဖွေထုတ်သည်",
|
|
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": "အညွှန်းများ",
|
|
289
341
|
"Indicator group": "Indicator group",
|
|
290
342
|
"All groups": "",
|
|
291
343
|
"Indicator": "indicator",
|
|
292
344
|
"No indicator groups found": "",
|
|
293
345
|
"Loading indicator groups": "",
|
|
294
346
|
"Data element group": "data element အုပ်စု",
|
|
295
|
-
"Data element": "data element",
|
|
296
347
|
"No data element groups found": "",
|
|
297
348
|
"Loading data element groups": "",
|
|
298
349
|
"Data sets": "စီမံချက်",
|
|
@@ -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": "အချက်အလက်",
|
|
345
397
|
"Organisation unit": "Organisation unit",
|
|
346
398
|
"Assigned Categories": "",
|
|
399
|
+
"Text": "စာရေးသားသည်",
|
|
400
|
+
"Long text": "",
|
|
401
|
+
"Multi text": "",
|
|
402
|
+
"Letter": "",
|
|
403
|
+
"Phone number": "",
|
|
404
|
+
"Email": "",
|
|
405
|
+
"Yes/No": "မှန်/မှား",
|
|
406
|
+
"Yes Only": "အမှန်သာဖြစ်သည်",
|
|
407
|
+
"Date": "ရက်စွဲ",
|
|
408
|
+
"Date & Time": "Date & Time",
|
|
409
|
+
"Time": "",
|
|
410
|
+
"Unit interval": "",
|
|
411
|
+
"Percentage": "",
|
|
412
|
+
"Integer": "ကိန်းဂဏန်း",
|
|
413
|
+
"Positive Integer": "အပေါင်း ကိန်းဂဏန်း",
|
|
414
|
+
"Negative Integer": "အနုတ် ကိန်းဂဏန်း",
|
|
415
|
+
"Positive or Zero Integer": "Positive or Zero Integer",
|
|
416
|
+
"Tracker Associate": "",
|
|
417
|
+
"Username": "အသုံးပြုသူအမည်",
|
|
418
|
+
"Coordinate": "Coordinate",
|
|
419
|
+
"Reference": "အကိုးအကား",
|
|
420
|
+
"Age": "",
|
|
421
|
+
"URL": "",
|
|
422
|
+
"Image": "ပုံ(PNG)",
|
|
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": "လမ်းကြောင်း",
|
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
"About this map": "",
|
|
20
20
|
"About this line list": "",
|
|
21
21
|
"About this visualization": "Om denne visualiseringen",
|
|
22
|
+
"About this event chart": "",
|
|
23
|
+
"About this event report": "",
|
|
22
24
|
"This app could not retrieve required data.": "",
|
|
23
25
|
"Network error": "",
|
|
24
26
|
"Data / Edit calculation": "",
|
|
@@ -48,6 +50,54 @@
|
|
|
48
50
|
"All types": "Alle typer",
|
|
49
51
|
"Disaggregation": "Disaggregering",
|
|
50
52
|
"No data": "Ingen data",
|
|
53
|
+
"Expression description": "Frasebeskrivelse",
|
|
54
|
+
"Error loading value": "",
|
|
55
|
+
"None": "Ingen",
|
|
56
|
+
"Data set(s)": "",
|
|
57
|
+
"Zero is significant": "",
|
|
58
|
+
"True": "Sant",
|
|
59
|
+
"False": "Usant",
|
|
60
|
+
"Value type": "Verditype",
|
|
61
|
+
"Aggregation type": "Aggregasjonstype",
|
|
62
|
+
"Category combo": "Kategorikombinasjon",
|
|
63
|
+
"Option set": "Alternativsett",
|
|
64
|
+
"Group membership": "",
|
|
65
|
+
"Legend set(s)": "",
|
|
66
|
+
"Category option name": "",
|
|
67
|
+
"Category combo name": "",
|
|
68
|
+
"Categories name": "",
|
|
69
|
+
"Period type": "Periodetype",
|
|
70
|
+
"Indicators": "Indikatorer",
|
|
71
|
+
"Expiry days": "Utløpsdager",
|
|
72
|
+
"Type": "Type",
|
|
73
|
+
"Data element": "Dataelement",
|
|
74
|
+
"Tracked entity attribute": "Sporet enhetattributt",
|
|
75
|
+
"Numerator description": "Tellerbeskrivelse",
|
|
76
|
+
"Numerator expression": "",
|
|
77
|
+
"Denominator description": "Nevnerbeskrivelse",
|
|
78
|
+
"Denominator expression": "",
|
|
79
|
+
"Annualized": "Annualisert",
|
|
80
|
+
"Yes": "Ja",
|
|
81
|
+
"No": "Nei",
|
|
82
|
+
"Indicator type": "Indikatortype",
|
|
83
|
+
"Decimals in output": "",
|
|
84
|
+
"There was a problem loading information for this data item.": "",
|
|
85
|
+
"Name": "Navn",
|
|
86
|
+
"Description": "Beskrivelse",
|
|
87
|
+
"Code": "Kode",
|
|
88
|
+
"ID": "ID",
|
|
89
|
+
"Last updated date": "",
|
|
90
|
+
"Created date": "Opprettelsesdato",
|
|
91
|
+
"Created by": "Opprettet av",
|
|
92
|
+
"Custom": "Tilpasset",
|
|
93
|
+
"Program": "Program",
|
|
94
|
+
"Analytics type": "Analysetype",
|
|
95
|
+
"Enrollment": "Registrering",
|
|
96
|
+
"Event": "Hendelse",
|
|
97
|
+
"Analytics period boundaries": "Grenser for analyseperiode",
|
|
98
|
+
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
99
|
+
"Expression": "Uttrykk",
|
|
100
|
+
"Filter": "Filter",
|
|
51
101
|
"Search by data item name": "Søk etter datapunktnavn",
|
|
52
102
|
"No items selected": "Ingen elementer er valgt",
|
|
53
103
|
"Selected Items": "Valgte elementer",
|
|
@@ -98,8 +148,6 @@
|
|
|
98
148
|
"Open in this app": "Åpne i denne appen",
|
|
99
149
|
"Close": "Lukk",
|
|
100
150
|
"Rename {{fileType}}": "Gi nytt navn til {{fileType}}",
|
|
101
|
-
"Name": "Navn",
|
|
102
|
-
"Description": "Beskrivelse",
|
|
103
151
|
"Rename": "Gi nytt navn",
|
|
104
152
|
"{{- objectName}} (copy)": "",
|
|
105
153
|
"Save {{fileType}} as": "Lagre {{fileType}} som",
|
|
@@ -134,19 +182,7 @@
|
|
|
134
182
|
"Manage sharing": "Administrer deling",
|
|
135
183
|
"Could not update interpretation": "",
|
|
136
184
|
"Enter interpretation text": "",
|
|
137
|
-
"Bold text": "",
|
|
138
|
-
"Italic text": "",
|
|
139
|
-
"Link to a URL": "",
|
|
140
|
-
"Mention a user": "",
|
|
141
|
-
"Add emoji": "",
|
|
142
|
-
"Preview": "Forhåndsvisning",
|
|
143
|
-
"Back to write mode": "",
|
|
144
|
-
"Too many results. Try refining the search.": "",
|
|
145
|
-
"Search for a user": "",
|
|
146
|
-
"Searching for \"{{- searchText}}\"": "",
|
|
147
|
-
"No results found": "Ingen resultater funnet",
|
|
148
185
|
"Not available offline": "Ikke tilgjengelig i frakoblet modus",
|
|
149
|
-
"Created by": "Opprettet av",
|
|
150
186
|
"Anyone": "Hvem som helst",
|
|
151
187
|
"Only you": "Bare deg",
|
|
152
188
|
"Others": "Andre",
|
|
@@ -154,7 +190,6 @@
|
|
|
154
190
|
"Filter by name": "Filtrer etter navn",
|
|
155
191
|
"Created": "Opprettet",
|
|
156
192
|
"Last updated": "Sist oppdatert",
|
|
157
|
-
"Type": "Type",
|
|
158
193
|
"Clear filters": "Tøm filtre",
|
|
159
194
|
"{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} av {{totalNumberOfItems}}",
|
|
160
195
|
"Open": "Åpne",
|
|
@@ -200,7 +235,6 @@
|
|
|
200
235
|
"Select a level": "Velg et nivå",
|
|
201
236
|
"Select a group": "Velg en gruppe",
|
|
202
237
|
"Deselect all": "Fjern valg",
|
|
203
|
-
"Period type": "Periodetype",
|
|
204
238
|
"Year": "År",
|
|
205
239
|
"Select year": "Velg år",
|
|
206
240
|
"Period": "Periode",
|
|
@@ -276,6 +310,14 @@
|
|
|
276
310
|
"Six-months": "Halvår",
|
|
277
311
|
"Financial Years": "Regnskapsår",
|
|
278
312
|
"Years": "År",
|
|
313
|
+
"Value: {{value}}": "",
|
|
314
|
+
"Bold text": "",
|
|
315
|
+
"Italic text": "",
|
|
316
|
+
"Link to a URL": "",
|
|
317
|
+
"Mention a user": "",
|
|
318
|
+
"Add emoji": "",
|
|
319
|
+
"Preview": "Forhåndsvisning",
|
|
320
|
+
"Back to write mode": "",
|
|
279
321
|
"Interpretations and details": "",
|
|
280
322
|
"Translating to": "",
|
|
281
323
|
"Choose a locale": "",
|
|
@@ -286,9 +328,12 @@
|
|
|
286
328
|
"Cannot save while offline": "",
|
|
287
329
|
"Could not load translations": "",
|
|
288
330
|
"Retry": "",
|
|
331
|
+
"Too many results. Try refining the search.": "",
|
|
332
|
+
"Search for a user": "",
|
|
333
|
+
"Searching for \"{{- searchText}}\"": "",
|
|
334
|
+
"No results found": "Ingen resultater funnet",
|
|
289
335
|
"Series": "Serie",
|
|
290
336
|
"Category": "Kategori",
|
|
291
|
-
"Filter": "Filter",
|
|
292
337
|
"Columns": "Kolonner",
|
|
293
338
|
"Rows": "Rader",
|
|
294
339
|
"Points": "Punkter",
|
|
@@ -297,16 +342,13 @@
|
|
|
297
342
|
"Actual reports": "Faktiske rapporter",
|
|
298
343
|
"Actual reports on time": "Faktiske rapporter i tide",
|
|
299
344
|
"Expected reports": "Forventede rapporter",
|
|
300
|
-
"Program": "Program",
|
|
301
345
|
"Select a program": "Velg et program",
|
|
302
|
-
"Indicators": "Indikatorer",
|
|
303
346
|
"Indicator group": "Indikatorgruppe",
|
|
304
347
|
"All groups": "",
|
|
305
348
|
"Indicator": "Indikator",
|
|
306
349
|
"No indicator groups found": "",
|
|
307
350
|
"Loading indicator groups": "",
|
|
308
351
|
"Data element group": "Dataelementgruppe",
|
|
309
|
-
"Data element": "Dataelement",
|
|
310
352
|
"No data element groups found": "",
|
|
311
353
|
"Loading data element groups": "",
|
|
312
354
|
"Data sets": "Datasett",
|
|
@@ -355,9 +397,35 @@
|
|
|
355
397
|
"{{thresholdFactor}} × Modified Z-score high": "",
|
|
356
398
|
"{{thresholdFactor}} × Z-score low": "",
|
|
357
399
|
"{{thresholdFactor}} × Z-score high": "",
|
|
400
|
+
"Not applicable": "",
|
|
358
401
|
"Data": "Data",
|
|
359
402
|
"Organisation unit": "Organisasjonsenhet",
|
|
360
403
|
"Assigned Categories": "Tildelte Kategorier",
|
|
404
|
+
"Text": "Tekst",
|
|
405
|
+
"Long text": "Lang tekst",
|
|
406
|
+
"Multi text": "",
|
|
407
|
+
"Letter": "Bokstav",
|
|
408
|
+
"Phone number": "Telefonnummer",
|
|
409
|
+
"Email": "E-post",
|
|
410
|
+
"Yes/No": "Ja/Nei",
|
|
411
|
+
"Yes Only": "Bare ja",
|
|
412
|
+
"Date": "Dato",
|
|
413
|
+
"Date & Time": "Dato & Klokkeslett",
|
|
414
|
+
"Time": "Klokkeslett",
|
|
415
|
+
"Unit interval": "Enhetsintervall",
|
|
416
|
+
"Percentage": "Prosent",
|
|
417
|
+
"Integer": "Heltall",
|
|
418
|
+
"Positive Integer": "Positivt heltall",
|
|
419
|
+
"Negative Integer": "Negativt heltall",
|
|
420
|
+
"Positive or Zero Integer": "Positivt eller null heltall",
|
|
421
|
+
"Tracker Associate": "Sporingstilknytning",
|
|
422
|
+
"Username": "Brukernavn",
|
|
423
|
+
"Coordinate": "Koordinater",
|
|
424
|
+
"Reference": "Referanse",
|
|
425
|
+
"Age": "Alder",
|
|
426
|
+
"URL": "URL",
|
|
427
|
+
"Image": "Bilde",
|
|
428
|
+
"GeoJSON": "",
|
|
361
429
|
"Pivot table": "Pivottabell",
|
|
362
430
|
"Area": "Areal",
|
|
363
431
|
"Stacked area": "Stablet område",
|