@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
@@ -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": "Вариантлар тўплами",
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": "Муддати тугайдиганлар",
71
+ "Type": "Тури",
72
+ "Data element": "Маълумотлар элементи",
73
+ "Tracked entity attribute": "Кузатув объекти атрибути",
74
+ "Numerator description": "Нумератор тавсифи",
75
+ "Numerator expression": "",
76
+ "Denominator description": "Номзод тавсифи",
77
+ "Denominator expression": "",
78
+ "Annualized": "Йиллик",
79
+ "Yes": "Ҳа",
80
+ "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": "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": "Фильтр",
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": "",
@@ -123,24 +174,13 @@
123
174
  "View replies": "",
124
175
  "Unlike": "Аксинча",
125
176
  "Like": "Каби, ўхшаш",
126
- "Share": "Улашиш",
127
177
  "See interpretation": "",
178
+ "Open in app": "",
179
+ "Share": "Улашиш",
128
180
  "Manage sharing": "Улашишни бошқариш",
129
181
  "Could not update interpretation": "",
130
182
  "Enter interpretation text": "",
131
- "Bold text": "",
132
- "Italic text": "",
133
- "Link to a URL": "",
134
- "Mention a user": "",
135
- "Add emoji": "",
136
- "Preview": "Олдиндан кўриш",
137
- "Back to write mode": "",
138
- "Too many results. Try refining the search.": "",
139
- "Search for a user": "",
140
- "Searching for \"{{- searchText}}\"": "",
141
- "No results found": "Ҳеч қандай натижа топилмади",
142
183
  "Not available offline": "Оффлайн режимда мавжуд эмас",
143
- "Created by": "Томонидан яратилган",
144
184
  "Anyone": "Кимдир",
145
185
  "Only you": "",
146
186
  "Others": "Бошқалар",
@@ -148,7 +188,6 @@
148
188
  "Filter by name": "Номи бўйича фильтрлаш",
149
189
  "Created": "Яратилган",
150
190
  "Last updated": "Охирги янгиланган",
151
- "Type": "Тури",
152
191
  "Clear filters": "Фильтрларни тозалаш",
153
192
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
154
193
  "Open": "Очиқ",
@@ -191,13 +230,12 @@
191
230
  "Select a level": "Поғонани танланг",
192
231
  "Select a group": "Гуруҳни танланг",
193
232
  "Deselect all": "Барча танланганни бекор қилиш",
194
- "Period type": "Давр тури",
195
233
  "Year": "Йил",
196
234
  "Select year": "Йилни танланг",
197
235
  "Period": "Давр",
236
+ "Selected Periods": "Танланган Даврлар",
198
237
  "Relative periods": "Нисбий даврлар",
199
238
  "Fixed periods": "Белигаланган даврлар",
200
- "Selected Periods": "Танланган Даврлар",
201
239
  "No periods selected": "Давр танланмаган",
202
240
  "Daily": "Кунлик",
203
241
  "Weekly": "Ҳафталик",
@@ -267,6 +305,14 @@
267
305
  "Six-months": "Ярим йиллик",
268
306
  "Financial Years": "Молиявий йиллар",
269
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": "",
270
316
  "Interpretations and details": "",
271
317
  "Translating to": "",
272
318
  "Choose a locale": "",
@@ -277,9 +323,12 @@
277
323
  "Cannot save while offline": "",
278
324
  "Could not load translations": "",
279
325
  "Retry": "",
326
+ "Too many results. Try refining the search.": "",
327
+ "Search for a user": "",
328
+ "Searching for \"{{- searchText}}\"": "",
329
+ "No results found": "Ҳеч қандай натижа топилмади",
280
330
  "Series": "Кетма-кетликлар",
281
331
  "Category": "Категория",
282
- "Filter": "Фильтр",
283
332
  "Columns": "Устунлар",
284
333
  "Rows": "Қаторлар",
285
334
  "Points": "Нуқталар",
@@ -288,16 +337,13 @@
288
337
  "Actual reports": "Ҳақиқий ҳисоботлар",
289
338
  "Actual reports on time": "Ҳақиқий ҳисоботлар ўз вақтида",
290
339
  "Expected reports": "Кутилаётган ҳисоботлар",
291
- "Program": "Программа",
292
340
  "Select a program": "Дастурни танланг",
293
- "Indicators": "Индикаторлар",
294
341
  "Indicator group": "Индикатор гуруҳи",
295
342
  "All groups": "Барча гуруҳлар",
296
343
  "Indicator": "Индикатор",
297
344
  "No indicator groups found": "",
298
345
  "Loading indicator groups": "",
299
346
  "Data element group": "Маълумотлар элементи гуруҳи",
300
- "Data element": "Маълумотлар элементи",
301
347
  "No data element groups found": "",
302
348
  "Loading data element groups": "",
303
349
  "Data sets": "Маълумотлар тўплами",
@@ -346,9 +392,35 @@
346
392
  "{{thresholdFactor}} × Modified Z-score high": "",
347
393
  "{{thresholdFactor}} × Z-score low": "",
348
394
  "{{thresholdFactor}} × Z-score high": "",
395
+ "Not applicable": "",
349
396
  "Data": "Маълумот",
350
397
  "Organisation unit": "Ташкилий бўлим",
351
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": "Бутун сон",
413
+ "Positive Integer": "Мусбат бутун сон",
414
+ "Negative Integer": "Манфий бутун сон",
415
+ "Positive or Zero Integer": "Мусбат ёки Ноль бутун сон",
416
+ "Tracker Associate": "Кузатувчи ҳамкор",
417
+ "Username": "Фойдаланувчи исми",
418
+ "Coordinate": "Мувофиқлаштириш",
419
+ "Reference": "Маълумот",
420
+ "Age": "Ёш",
421
+ "URL": "URL",
422
+ "Image": "Расм",
423
+ "GeoJSON": "GeoJSON",
352
424
  "Pivot table": "Солиштирма жадвал",
353
425
  "Area": "Майдон",
354
426
  "Stacked area": "Йиғилган майдон",
@@ -365,6 +437,7 @@
365
437
  "Radar": "Радар",
366
438
  "Scatter": "Тарқоқлик",
367
439
  "Single value": "Ягона қиймат",
440
+ "Outlier table": "",
368
441
  "All charts": "",
369
442
  "{{seriesName}} (trend)": "",
370
443
  "Trend": "Йўналиш",
@@ -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": "Maʼlumot turi",
48
+ "Only {{dataType}} can be used in {{visType}}": "",
46
49
  "All types": "Barcha turlari",
47
50
  "Disaggregation": "",
48
51
  "No data": "Maʼlumot yoʼq",
52
+ "Expression description": "",
53
+ "Error loading value": "",
54
+ "None": "Йўқ",
55
+ "Data set(s)": "",
56
+ "Zero is significant": "",
57
+ "True": "Toʼgʼri",
58
+ "False": "Notoʼgʼri",
59
+ "Value type": "Qiymat turi",
60
+ "Aggregation type": "Бирлаштириш тури",
61
+ "Category combo": "",
62
+ "Option set": "Variantlar toʼplami",
63
+ "Group membership": "",
64
+ "Legend set(s)": "",
65
+ "Category option name": "",
66
+ "Category combo name": "",
67
+ "Categories name": "",
68
+ "Period type": "Davr turi",
69
+ "Indicators": "Indikatorlar",
70
+ "Expiry days": "",
71
+ "Type": "Turi",
72
+ "Data element": "Maʼlumotlar elementi",
73
+ "Tracked entity attribute": "Kuzatuv obʼekti atributi",
74
+ "Numerator description": "Numerator tavsifi",
75
+ "Numerator expression": "",
76
+ "Denominator description": "Nomzod tavsifi",
77
+ "Denominator expression": "",
78
+ "Annualized": "Yillik",
79
+ "Yes": "Ҳа",
80
+ "No": "Йўқ",
81
+ "Indicator type": "Indikator turi",
82
+ "Decimals in output": "",
83
+ "There was a problem loading information for this data item.": "",
84
+ "Name": "Исми",
85
+ "Description": "Tavsif",
86
+ "Code": "Kod",
87
+ "ID": "ID",
88
+ "Last updated date": "",
89
+ "Created date": "",
90
+ "Created by": "Томонидан яратилган",
91
+ "Custom": "Odatiy",
92
+ "Program": "Programma",
93
+ "Analytics type": "",
94
+ "Enrollment": "Roʼyxatga olish",
95
+ "Event": "Hodisa/Tadbir",
96
+ "Analytics period boundaries": "",
97
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
98
+ "Expression": "Ifoda",
99
+ "Filter": "Filtr",
49
100
  "Search by data item name": "",
50
101
  "No items selected": "Element tanlanmagan",
51
102
  "Selected Items": "Element tanlangan",
@@ -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": "Ushbu ilovada oching",
95
148
  "Close": "Yopmoq",
96
149
  "Rename {{fileType}}": "",
97
- "Name": "Исми",
98
- "Description": "Tavsif",
99
150
  "Rename": "Қайта номлаш",
100
151
  "{{- objectName}} (copy)": "",
101
152
  "Save {{fileType}} as": "",
@@ -115,6 +166,7 @@
115
166
  "The interpretation couldn’t be displayed. Try again or contact your system administrator.": "",
116
167
  "Hide interpretation": "",
117
168
  "Write an interpretation": "Talqin yozish",
169
+ "Other people viewing this interpretation in the future may see more data.": "",
118
170
  "Post interpretation": "",
119
171
  "Interpretations": "Talqinlar",
120
172
  "Reply": "Javob",
@@ -122,24 +174,13 @@
122
174
  "View replies": "",
123
175
  "Unlike": "Аksincha",
124
176
  "Like": "Kabi, oʼxshash",
125
- "Share": "Улашиш",
126
177
  "See interpretation": "",
178
+ "Open in app": "",
179
+ "Share": "Улашиш",
127
180
  "Manage sharing": "Ulashishni boshqarish",
128
181
  "Could not update interpretation": "",
129
182
  "Enter interpretation text": "",
130
- "Bold text": "",
131
- "Italic text": "",
132
- "Link to a URL": "",
133
- "Mention a user": "",
134
- "Add emoji": "",
135
- "Preview": "",
136
- "Back to write mode": "",
137
- "Too many results. Try refining the search.": "",
138
- "Search for a user": "",
139
- "Searching for \"{{- searchText}}\"": "",
140
- "No results found": "Hech qanday natija topilmadi",
141
183
  "Not available offline": "",
142
- "Created by": "Томонидан яратилган",
143
184
  "Anyone": "Kimdir",
144
185
  "Only you": "",
145
186
  "Others": "",
@@ -147,7 +188,6 @@
147
188
  "Filter by name": "Nomi boʼyicha filtrlash",
148
189
  "Created": "Yaratilgan",
149
190
  "Last updated": "Oxirgi yangilangan",
150
- "Type": "Turi",
151
191
  "Clear filters": "Filtrlarni tozalash",
152
192
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "",
153
193
  "Open": "Ochiq",
@@ -190,13 +230,12 @@
190
230
  "Select a level": "Pogʼonani tanlang",
191
231
  "Select a group": "Guruhni tanlang",
192
232
  "Deselect all": "Barcha tanlanganni bekor qilish",
193
- "Period type": "Davr turi",
194
233
  "Year": "Yil",
195
234
  "Select year": "Yilni tanlang",
196
235
  "Period": "Davr",
236
+ "Selected Periods": "Tanlangan Davrlar",
197
237
  "Relative periods": "Nisbiy davrlar",
198
238
  "Fixed periods": "Beligalangan davrlar",
199
- "Selected Periods": "Tanlangan Davrlar",
200
239
  "No periods selected": "Davr tanlanmagan",
201
240
  "Daily": "Kunlik",
202
241
  "Weekly": "Haftalik",
@@ -266,6 +305,14 @@
266
305
  "Six-months": "Yarim yillik",
267
306
  "Financial Years": "Moliyaviy yillar",
268
307
  "Years": "Yillar",
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": "",
269
316
  "Interpretations and details": "",
270
317
  "Translating to": "",
271
318
  "Choose a locale": "",
@@ -276,9 +323,12 @@
276
323
  "Cannot save while offline": "",
277
324
  "Could not load translations": "",
278
325
  "Retry": "",
326
+ "Too many results. Try refining the search.": "",
327
+ "Search for a user": "",
328
+ "Searching for \"{{- searchText}}\"": "",
329
+ "No results found": "Hech qanday natija topilmadi",
279
330
  "Series": "Ketma-ketliklar",
280
331
  "Category": "Kategoriya",
281
- "Filter": "Filtr",
282
332
  "Columns": "Ustunlar",
283
333
  "Rows": "Qatorlar",
284
334
  "Points": "Nuqtalar",
@@ -287,16 +337,13 @@
287
337
  "Actual reports": "Haqiqiy hisobotlar",
288
338
  "Actual reports on time": "Haqiqiy hisobotlar oʼz vaqtida",
289
339
  "Expected reports": "Kutilayotgan hisobotlar",
290
- "Program": "Programma",
291
340
  "Select a program": "Dasturni tanlang",
292
- "Indicators": "Indikatorlar",
293
341
  "Indicator group": "Koʼrsatgich guruhi",
294
342
  "All groups": "",
295
343
  "Indicator": "Indikator",
296
344
  "No indicator groups found": "",
297
345
  "Loading indicator groups": "",
298
346
  "Data element group": "Maʼlumotlar elementi guruhi",
299
- "Data element": "Maʼlumotlar elementi",
300
347
  "No data element groups found": "",
301
348
  "Loading data element groups": "",
302
349
  "Data sets": "Maʼlumotlar toʼplami",
@@ -345,9 +392,35 @@
345
392
  "{{thresholdFactor}} × Modified Z-score high": "",
346
393
  "{{thresholdFactor}} × Z-score low": "",
347
394
  "{{thresholdFactor}} × Z-score high": "",
395
+ "Not applicable": "",
348
396
  "Data": "Maʼlumot",
349
397
  "Organisation unit": "Ташкилий бирлик",
350
398
  "Assigned Categories": "Belgilangan Kategoriyalar",
399
+ "Text": "Matn",
400
+ "Long text": "Uzun matn",
401
+ "Multi text": "",
402
+ "Letter": "Xat",
403
+ "Phone number": "Telefon raqami",
404
+ "Email": "ye-Pochta",
405
+ "Yes/No": "Ha/Yoʼq",
406
+ "Yes Only": "Faqat ha",
407
+ "Date": "Sana",
408
+ "Date & Time": "Sana va Vaqt",
409
+ "Time": "Vaqt",
410
+ "Unit interval": "Birlik oraligʼi",
411
+ "Percentage": "Foiz",
412
+ "Integer": "Butun son",
413
+ "Positive Integer": "Musbat son",
414
+ "Negative Integer": "Manfiy son",
415
+ "Positive or Zero Integer": "Musbat yoki Nol butun son",
416
+ "Tracker Associate": "Kuzatuvchi hamkor",
417
+ "Username": "Фойдаланувчи исми",
418
+ "Coordinate": "Muvofiqlashtirish",
419
+ "Reference": "Maʼlumot",
420
+ "Age": "",
421
+ "URL": "URL",
422
+ "Image": "Rasm",
423
+ "GeoJSON": "",
351
424
  "Pivot table": "Solishtirma jadval",
352
425
  "Area": "Maydon",
353
426
  "Stacked area": "Yigʼilgan maydon",
@@ -364,6 +437,7 @@
364
437
  "Radar": "Radar",
365
438
  "Scatter": "Tarqoqlik",
366
439
  "Single value": "Yagona qiymat",
440
+ "Outlier table": "",
367
441
  "All charts": "",
368
442
  "{{seriesName}} (trend)": "",
369
443
  "Trend": "Yoʼnalish",
@@ -49,6 +49,54 @@
49
49
  "All types": "Tất cả các loại",
50
50
  "Disaggregation": "Phân Tách Phần Tử Dữ Liệu",
51
51
  "No data": "Không có dữ liệu",
52
+ "Expression description": "Mô tả biểu thức",
53
+ "Error loading value": "",
54
+ "None": "Không",
55
+ "Data set(s)": "",
56
+ "Zero is significant": "",
57
+ "True": "Đúng",
58
+ "False": "Sai",
59
+ "Value type": "Loại giá trị",
60
+ "Aggregation type": "Kiểu tổng hợp",
61
+ "Category combo": "",
62
+ "Option set": "Tập tùy chọn",
63
+ "Group membership": "",
64
+ "Legend set(s)": "",
65
+ "Category option name": "",
66
+ "Category combo name": "",
67
+ "Categories name": "",
68
+ "Period type": "Loại thời điểm",
69
+ "Indicators": "Các chỉ số",
70
+ "Expiry days": "Ngày hết hạn",
71
+ "Type": "Loại",
72
+ "Data element": "Phần tử dữ liệu",
73
+ "Tracked entity attribute": "Thuộc Tính Đối Tượng Theo Dõi",
74
+ "Numerator description": "Miêu tả tử số",
75
+ "Numerator expression": "",
76
+ "Denominator description": "Miêu tả mẩu số",
77
+ "Denominator expression": "",
78
+ "Annualized": "Hàng năm",
79
+ "Yes": "Có",
80
+ "No": "Không",
81
+ "Indicator type": "Loại chỉ số",
82
+ "Decimals in output": "",
83
+ "There was a problem loading information for this data item.": "",
84
+ "Name": "Tên",
85
+ "Description": "Miêu tả",
86
+ "Code": "Mã",
87
+ "ID": "Định danh (ID)",
88
+ "Last updated date": "",
89
+ "Created date": "Ngày tạo",
90
+ "Created by": "Được tạo bởi",
91
+ "Custom": "Tùy chỉnh",
92
+ "Program": "Chương trình",
93
+ "Analytics type": "",
94
+ "Enrollment": "Đăng ký",
95
+ "Event": "Sự Kiện",
96
+ "Analytics period boundaries": "",
97
+ "{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
98
+ "Expression": "Biểu thức",
99
+ "Filter": "Lọc",
52
100
  "Search by data item name": "Tìm kiếm theo tên mục dữ liệu",
53
101
  "No items selected": "Không có mục nào được chọn",
54
102
  "Selected Items": "Các mục đã chọn",
@@ -99,8 +147,6 @@
99
147
  "Open in this app": "Mở trong ứng dụng này",
100
148
  "Close": "Đóng lại",
101
149
  "Rename {{fileType}}": "Đổi tên {{fileType}}",
102
- "Name": "Tên",
103
- "Description": "Miêu tả",
104
150
  "Rename": "Đổi tên",
105
151
  "{{- objectName}} (copy)": "{{- objectName}}(copy)",
106
152
  "Save {{fileType}} as": "Lưu {{fileType}}thành",
@@ -135,7 +181,6 @@
135
181
  "Could not update interpretation": "Không thể cập nhật diễn giải",
136
182
  "Enter interpretation text": "Nhập nội dung cho diễn giải",
137
183
  "Not available offline": "Không có cho ngoại tuyến",
138
- "Created by": "Được tạo bởi",
139
184
  "Anyone": "Bất kỳ ai",
140
185
  "Only you": "Chỉ bạn",
141
186
  "Others": "Khác",
@@ -143,7 +188,6 @@
143
188
  "Filter by name": "Lọc bằng tên",
144
189
  "Created": "Đã tạo",
145
190
  "Last updated": "Lần cập nhật cuối",
146
- "Type": "Loại",
147
191
  "Clear filters": "Bỏ lọc",
148
192
  "{{firstItemIndex}}-{{lastItemIndex}} of {{totalNumberOfItems}}": "{{firstItemIndex}}-{{lastItemIndex}} của {{totalNumberOfItems}}",
149
193
  "Open": "Mở",
@@ -186,7 +230,6 @@
186
230
  "Select a level": "Chọn cấp độ",
187
231
  "Select a group": "Chọn nhóm",
188
232
  "Deselect all": "Bỏ chọn tất cả",
189
- "Period type": "Loại thời điểm",
190
233
  "Year": "Năm",
191
234
  "Select year": "Chọn năm",
192
235
  "Period": "Thời điểm",
@@ -286,7 +329,6 @@
286
329
  "No results found": "Không tìm thấy kết quả nào",
287
330
  "Series": "Chuỗi Dữ Liệu",
288
331
  "Category": "Phân loại",
289
- "Filter": "Lọc",
290
332
  "Columns": "Cột",
291
333
  "Rows": "Dòng",
292
334
  "Points": "Điểm",
@@ -295,16 +337,13 @@
295
337
  "Actual reports": "Báo cáo thực tế",
296
338
  "Actual reports on time": "Báo cáo thực tế đúng hạn",
297
339
  "Expected reports": "Báo cáo dự kiến",
298
- "Program": "Chương trình",
299
340
  "Select a program": "Chọn một chương trình",
300
- "Indicators": "Các chỉ số",
301
341
  "Indicator group": "Nhóm chỉ số",
302
342
  "All groups": "Tất cả nhóm",
303
343
  "Indicator": "Chỉ số",
304
344
  "No indicator groups found": "Không tìm thấy nhóm chỉ số nào",
305
345
  "Loading indicator groups": "Đang tải nhóm chỉ số",
306
346
  "Data element group": "Nhóm phần tử dữ liệu",
307
- "Data element": "Phần tử dữ liệu",
308
347
  "No data element groups found": "Không tìm thấy nhóm phần tử dữ liệu nào",
309
348
  "Loading data element groups": "Đang tải nhóm phần tử dữ liệu",
310
349
  "Data sets": "Biểu nhập",
@@ -357,6 +396,31 @@
357
396
  "Data": "Dữ liệu",
358
397
  "Organisation unit": "Đơn vị",
359
398
  "Assigned Categories": "Phân loại được chỉ định",
399
+ "Text": "Văn bản",
400
+ "Long text": "Văn bản dài",
401
+ "Multi text": "",
402
+ "Letter": "Ký tự",
403
+ "Phone number": "Số điện thoại",
404
+ "Email": "Email",
405
+ "Yes/No": "Có/Không",
406
+ "Yes Only": "Chỉ Có",
407
+ "Date": "Ngày",
408
+ "Date & Time": "Ngày và thời gian",
409
+ "Time": "Thời gian",
410
+ "Unit interval": "Khoảng đơn vị",
411
+ "Percentage": "Phần trăm",
412
+ "Integer": "Số nguyên",
413
+ "Positive Integer": "Số nguyên dương",
414
+ "Negative Integer": "Số nguyên âm",
415
+ "Positive or Zero Integer": "Số nguyên dương hoặc số 0",
416
+ "Tracker Associate": "Liên kết Theo dõi",
417
+ "Username": "Tên đăng nhập",
418
+ "Coordinate": "Tọa độ",
419
+ "Reference": "Gợi ý",
420
+ "Age": "Tuổi",
421
+ "URL": "URL",
422
+ "Image": "Hình ảnh",
423
+ "GeoJSON": "GeoJSON",
360
424
  "Pivot table": "Bảng xoay",
361
425
  "Area": "Khu vực",
362
426
  "Stacked area": "Khu vực xếp chồng ",