@dhis2/analytics 21.0.4 → 21.0.8

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 (44) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/build/cjs/api/analytics/AnalyticsRequest.js +6 -2
  3. package/build/cjs/api/analytics/AnalyticsRequestDimensionsMixin.js +6 -2
  4. package/build/cjs/api/analytics/__tests__/AnalyticsRequest.spec.js +1 -2
  5. package/build/cjs/components/OrgUnitDimension/OrgUnitDimension.js +4 -2
  6. package/build/cjs/locales/ar/translations.json +8 -8
  7. package/build/cjs/locales/ar_IQ/translations.json +3 -3
  8. package/build/cjs/locales/cs/translations.json +31 -31
  9. package/build/cjs/locales/es/translations.json +7 -7
  10. package/build/cjs/locales/fr/translations.json +9 -9
  11. package/build/cjs/locales/nb/translations.json +8 -8
  12. package/build/cjs/locales/ps/translations.json +4 -4
  13. package/build/cjs/locales/pt/translations.json +8 -8
  14. package/build/cjs/locales/sv/translations.json +4 -4
  15. package/build/cjs/locales/tet/translations.json +2 -2
  16. package/build/cjs/locales/uk/translations.json +4 -4
  17. package/build/cjs/locales/ur/translations.json +5 -5
  18. package/build/cjs/locales/uz_Latn/translations.json +7 -7
  19. package/build/cjs/locales/vi/translations.json +7 -7
  20. package/build/cjs/locales/zh/translations.json +27 -27
  21. package/build/cjs/modules/layout/dimension.js +9 -2
  22. package/build/cjs/modules/layout/dimensionCreate.js +14 -6
  23. package/build/es/api/analytics/AnalyticsRequest.js +6 -2
  24. package/build/es/api/analytics/AnalyticsRequestDimensionsMixin.js +6 -2
  25. package/build/es/api/analytics/__tests__/AnalyticsRequest.spec.js +1 -2
  26. package/build/es/components/OrgUnitDimension/OrgUnitDimension.js +4 -2
  27. package/build/es/locales/ar/translations.json +8 -8
  28. package/build/es/locales/ar_IQ/translations.json +3 -3
  29. package/build/es/locales/cs/translations.json +31 -31
  30. package/build/es/locales/es/translations.json +7 -7
  31. package/build/es/locales/fr/translations.json +9 -9
  32. package/build/es/locales/nb/translations.json +8 -8
  33. package/build/es/locales/ps/translations.json +4 -4
  34. package/build/es/locales/pt/translations.json +8 -8
  35. package/build/es/locales/sv/translations.json +4 -4
  36. package/build/es/locales/tet/translations.json +2 -2
  37. package/build/es/locales/uk/translations.json +4 -4
  38. package/build/es/locales/ur/translations.json +5 -5
  39. package/build/es/locales/uz_Latn/translations.json +7 -7
  40. package/build/es/locales/vi/translations.json +7 -7
  41. package/build/es/locales/zh/translations.json +27 -27
  42. package/build/es/modules/layout/dimension.js +7 -1
  43. package/build/es/modules/layout/dimensionCreate.js +15 -7
  44. package/package.json +1 -1
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.DIMENSION_PROPS = exports.DIMENSION_PROP_ITEMS = exports.DIMENSION_PROP_ID = exports.DIMENSION = void 0;
6
+ exports.DIMENSION_PROPS = exports.DIMENSION_PROP_FILTER = exports.DIMENSION_PROP_ITEMS = exports.DIMENSION_PROP_ID = exports.DIMENSION = void 0;
7
7
 
8
8
  var _isObject = _interopRequireDefault(require("lodash/isObject"));
9
9
 
@@ -31,5 +31,12 @@ const DIMENSION_PROP_ITEMS = {
31
31
  isValid: prop => Array.isArray(prop)
32
32
  };
33
33
  exports.DIMENSION_PROP_ITEMS = DIMENSION_PROP_ITEMS;
34
- const DIMENSION_PROPS = [DIMENSION_PROP_ID, DIMENSION_PROP_ITEMS];
34
+ const DIMENSION_PROP_FILTER = {
35
+ name: 'filter',
36
+ defaultValue: [],
37
+ required: false,
38
+ isValid: prop => (0, _isString.default)(prop)
39
+ };
40
+ exports.DIMENSION_PROP_FILTER = DIMENSION_PROP_FILTER;
41
+ const DIMENSION_PROPS = [DIMENSION_PROP_ID, DIMENSION_PROP_ITEMS, DIMENSION_PROP_FILTER];
35
42
  exports.DIMENSION_PROPS = DIMENSION_PROPS;
@@ -7,11 +7,19 @@ exports.dimensionCreate = void 0;
7
7
 
8
8
  var _dimension = require("./dimension");
9
9
 
10
- const dimensionCreate = (dimensionId, itemIds = []) => ({
11
- [_dimension.DIMENSION_PROP_ID.name]: dimensionId,
12
- [_dimension.DIMENSION_PROP_ITEMS.name]: itemIds.map(id => ({
13
- id
14
- }))
15
- });
10
+ const dimensionCreate = (dimensionId, itemIds = [], args = {}) => {
11
+ const dimension = {
12
+ [_dimension.DIMENSION_PROP_ID.name]: dimensionId,
13
+ ...(itemIds.length && {
14
+ [_dimension.DIMENSION_PROP_ITEMS.name]: itemIds.map(id => ({
15
+ id
16
+ }))
17
+ }),
18
+ ...(args.filter && {
19
+ [_dimension.DIMENSION_PROP_FILTER.name]: args.filter
20
+ })
21
+ };
22
+ return dimension;
23
+ };
16
24
 
17
25
  exports.dimensionCreate = dimensionCreate;
@@ -43,20 +43,24 @@ class AnalyticsRequest extends AnalyticsRequestDimensionsMixin(AnalyticsRequestF
43
43
  const columns = visualization.columns || [];
44
44
  const rows = visualization.rows || [];
45
45
  columns.concat(rows).forEach(d => {
46
+ var _d$items;
47
+
46
48
  let dimension = d.dimension;
47
49
 
48
50
  if (d.filter) {
49
51
  dimension += ":".concat(d.filter);
50
52
  }
51
53
 
52
- request = request.addDimension(dimension, d.items.map(item => item.id));
54
+ request = request.addDimension(dimension, (_d$items = d.items) === null || _d$items === void 0 ? void 0 : _d$items.map(item => item.id));
53
55
  }); // extract filters from visualization
54
56
 
55
57
  const filters = visualization.filters || []; // only pass dx/pe/ou as dimension
56
58
 
57
59
  const fixedIds = Object.keys(getFixedDimensions());
58
60
  filters.forEach(f => {
59
- request = passFilterAsDimension && fixedIds.includes(f.dimension) ? request.addDimension(f.dimension, f.items.map(item => item.id)) : request.addFilter(f.dimension, f.items.map(item => item.id));
61
+ var _f$items, _f$items2;
62
+
63
+ request = passFilterAsDimension && fixedIds.includes(f.dimension) ? request.addDimension(f.dimension, (_f$items = f.items) === null || _f$items === void 0 ? void 0 : _f$items.map(item => item.id)) : request.addFilter(f.dimension, (_f$items2 = f.items) === null || _f$items2 === void 0 ? void 0 : _f$items2.map(item => item.id));
60
64
  });
61
65
  return request;
62
66
  }
@@ -116,12 +116,16 @@ class extends base {
116
116
  if (existingDimension) {
117
117
  this.dimensions.splice(dimensionIndex, 1, {
118
118
  dimension,
119
- items: updatedItems
119
+ ...(items && {
120
+ items: updatedItems
121
+ })
120
122
  });
121
123
  } else {
122
124
  this.dimensions.push({
123
125
  dimension,
124
- items: updatedItems
126
+ ...(items && {
127
+ items: updatedItems
128
+ })
125
129
  });
126
130
  }
127
131
 
@@ -115,8 +115,7 @@ describe('AnalyticsRequest', () => {
115
115
  it('should add the given dimension without any associated value', () => {
116
116
  request.addDimension('Jtf34kNZhzP');
117
117
  expect(request.dimensions).toEqual([{
118
- dimension: 'Jtf34kNZhzP',
119
- items: []
118
+ dimension: 'Jtf34kNZhzP'
120
119
  }]);
121
120
  });
122
121
  it('should add the given dimension with the associated value (passed as string)', () => {
@@ -31,7 +31,7 @@ const OrgUnitDimension = ({
31
31
  let result = [...selected];
32
32
 
33
33
  if (checked && DYNAMIC_ORG_UNITS.includes(id)) {
34
- result = [...result.filter(item => DYNAMIC_ORG_UNITS.includes(item.id) || ouIdHelper.hasLevelPrefix(item.id) || ouIdHelper.hasGroupPrefix(item.id)), {
34
+ result = [...result.filter(item => DYNAMIC_ORG_UNITS.includes(item.id)), {
35
35
  id,
36
36
  displayName
37
37
  }];
@@ -191,7 +191,9 @@ const OrgUnitDimension = ({
191
191
  onChange: onSelectItems,
192
192
  dataTest: 'org-unit-tree'
193
193
  })), /*#__PURE__*/React.createElement("div", {
194
- className: "jsx-".concat(styles.__hash) + " " + "selectsWrapper"
194
+ className: "jsx-".concat(styles.__hash) + " " + (cx('selectsWrapper', {
195
+ disabled: selected.some(item => DYNAMIC_ORG_UNITS.includes(item.id))
196
+ }) || "")
195
197
  }, /*#__PURE__*/React.createElement(MultiSelect, {
196
198
  selected: ouLevels.length ? selected.filter(item => ouIdHelper.hasLevelPrefix(item.id)).map(item => ouIdHelper.removePrefix(item.id)) : [],
197
199
  onChange: ({
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "لا يوجد وصف",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times_0": "",
@@ -15,7 +15,7 @@
15
15
  "Viewed {{count}} times_3": "",
16
16
  "Viewed {{count}} times_4": "",
17
17
  "Viewed {{count}} times_5": "",
18
- "Notifications": "",
18
+ "Notifications": "الإشعارات",
19
19
  "You're subscribed and getting updates about new interpretations.": "",
20
20
  "Unsubscribe": "",
21
21
  "Subscribe to get updates about new interpretations.": "",
@@ -142,12 +142,12 @@
142
142
  "{{count}} groups_5": "",
143
143
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
144
144
  "Nothing selected": "",
145
- "User organisation unit": "",
146
- "User sub-units": "",
147
- "User sub-x2-units": "",
148
- "Select a level": "",
149
- "Select a group": "",
150
- "Deselect all": "",
145
+ "User organisation unit": "وحدة المنظمة للمستخدم",
146
+ "User sub-units": "وحدات المستخدم الفرعية",
147
+ "User sub-x2-units": "وحدات المستخدم الفرعية من المستوى الثاني",
148
+ "Select a level": "حدد مستوى",
149
+ "Select a group": "حدد مجموعة",
150
+ "Deselect all": "إلغاء تحديد الكل",
151
151
  "Period type": "نوع الفترة الزمنية",
152
152
  "Year": "سنة",
153
153
  "Select year": "اختر السنة",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "لا يوجد وصف",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times_0": "",
@@ -143,8 +143,8 @@
143
143
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
144
144
  "Nothing selected": "",
145
145
  "User organisation unit": "",
146
- "User sub-units": "",
147
- "User sub-x2-units": "",
146
+ "User sub-units": "وحدات المستخدم الفرعية",
147
+ "User sub-x2-units": "وحدات المستخدم الفرعية من المستوى الثاني",
148
148
  "Select a level": "",
149
149
  "Select a group": "",
150
150
  "Deselect all": "",
@@ -1,23 +1,23 @@
1
1
  {
2
- "view only": "",
3
- "view and edit": "",
4
- "all users ({{accessLevel}})": "",
5
- "{{userOrGroup}} ({{accessLevel}})": "",
6
- "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
- "Not shared with any users or groups": "",
8
- "About this visualization": "",
2
+ "view only": "pouze zobrazit",
3
+ "view and edit": "zobrazit a upravit",
4
+ "all users ({{accessLevel}})": "všichni uživatelé ({{accessLevel}})",
5
+ "{{userOrGroup}} ({{accessLevel}})": "{{userOrGroup}} ({{accessLevel}})",
6
+ "Shared with {{commaSeparatedListOfUsersAndGroups}}": "Sdíleno s {{commaSeparatedListOfUsersAndGroups}}",
7
+ "Not shared with any users or groups": "Nesdíleno s žádnými uživateli ani skupinami",
8
+ "About this visualization": "O této vizualizaci",
9
9
  "No description": "Bez popisu",
10
- "Last updated {{time}}": "",
11
- "Created {{time}} by {{author}}": "",
12
- "Viewed {{count}} times_0": "",
13
- "Viewed {{count}} times_1": "",
14
- "Viewed {{count}} times_2": "",
15
- "Viewed {{count}} times_3": "",
10
+ "Last updated {{time}}": "Poslední aktualizace {{time}}",
11
+ "Created {{time}} by {{author}}": "Vytvořeno {{time}} uživatelem {{author}}",
12
+ "Viewed {{count}} times_0": "Zobrazeno 1 krát",
13
+ "Viewed {{count}} times_1": "Zobrazeno {{count}}krát",
14
+ "Viewed {{count}} times_2": "Zobrazeno {{count}}krát",
15
+ "Viewed {{count}} times_3": "Zobrazeno {{count}}krát",
16
16
  "Notifications": "Oznámení",
17
- "You're subscribed and getting updates about new interpretations.": "",
18
- "Unsubscribe": "",
19
- "Subscribe to get updates about new interpretations.": "",
20
- "Subscribe": "",
17
+ "You're subscribed and getting updates about new interpretations.": "Jste přihlášeni k odběru a dostáváte aktualizace o nových interpretacích.",
18
+ "Unsubscribe": "Odhlásit odběr",
19
+ "Subscribe to get updates about new interpretations.": "Přihlaste se k odběru novinek o nových interpretacích.",
20
+ "Subscribe": "Odebírat",
21
21
  "Data Type": "Typ dat",
22
22
  "All types": "Všechny typy",
23
23
  "Totals only": "Pouze součty",
@@ -120,20 +120,20 @@
120
120
  "Options": "Možnosti",
121
121
  "Hide": "Skrýt",
122
122
  "Update": "Aktualizovat",
123
- "{{count}} org units_0": "",
124
- "{{count}} org units_1": "",
125
- "{{count}} org units_2": "",
126
- "{{count}} org units_3": "",
127
- "{{count}} levels_0": "",
128
- "{{count}} levels_1": "",
129
- "{{count}} levels_2": "",
130
- "{{count}} levels_3": "",
131
- "{{count}} groups_0": "",
132
- "{{count}} groups_1": "",
133
- "{{count}} groups_2": "",
134
- "{{count}} groups_3": "",
135
- "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
136
- "Nothing selected": "",
123
+ "{{count}} org units_0": "{{count}} organizační jednotka",
124
+ "{{count}} org units_1": "{{count}} organizační jednotky",
125
+ "{{count}} org units_2": "{{count}} organizačních jednotek",
126
+ "{{count}} org units_3": "{{count}} organizačních jednotek",
127
+ "{{count}} levels_0": "{{count}} úroveň",
128
+ "{{count}} levels_1": "{{count}} úrovně",
129
+ "{{count}} levels_2": "{{count}} úrovní",
130
+ "{{count}} levels_3": "{{count}} úrovní",
131
+ "{{count}} groups_0": "{{count}} skupina",
132
+ "{{count}} groups_1": "{{count}} skupiny",
133
+ "{{count}} groups_2": "{{count}} skupin",
134
+ "{{count}} groups_3": "{{count}} skupin",
135
+ "Selected: {{commaSeparatedListOfOrganisationUnits}}": "Vybráno: {{commaSeparatedListOfOfOrganisationUnits}}",
136
+ "Nothing selected": "Není vybráno nic",
137
137
  "User organisation unit": "Organizační jednotka uživatele",
138
138
  "User sub-units": "Podjednotky uživatele",
139
139
  "User sub-x2-units": "Jednotky 2. řádu uživatele",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Sin descripción",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
@@ -126,12 +126,12 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
132
- "Select a level": "",
133
- "Select a group": "",
134
- "Deselect all": "",
129
+ "User organisation unit": "Usuario de unidad organizativa",
130
+ "User sub-units": "Subunidades de usuario",
131
+ "User sub-x2-units": "Sub-unidades-x2 de usuario",
132
+ "Select a level": "Selecciona un nivel",
133
+ "Select a group": "Selecciona un grupo",
134
+ "Deselect all": "Deseleccionar todo",
135
135
  "Period type": "Tipo de periodo",
136
136
  "Year": "Año",
137
137
  "Select year": "Seleccionar año",
@@ -6,12 +6,12 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Aucune description",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
13
13
  "Viewed {{count}} times_plural": "",
14
- "Notifications": "",
14
+ "Notifications": "Notifications",
15
15
  "You're subscribed and getting updates about new interpretations.": "",
16
16
  "Unsubscribe": "",
17
17
  "Subscribe to get updates about new interpretations.": "",
@@ -126,12 +126,12 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
132
- "Select a level": "",
133
- "Select a group": "",
134
- "Deselect all": "",
129
+ "User organisation unit": "Unités d'organisation de l'utilisateur",
130
+ "User sub-units": "Sous-unités de l'utilisateur",
131
+ "User sub-x2-units": "Sous-unités utilisateur x2",
132
+ "Select a level": "Sélectionnez un niveau",
133
+ "Select a group": "Sélectionner un groupe",
134
+ "Deselect all": "Desélectionner tout",
135
135
  "Period type": "Type de période",
136
136
  "Year": "Année",
137
137
  "Select year": "Sélectionnez année",
@@ -212,7 +212,7 @@
212
212
  "This year": "Année en cours",
213
213
  "Last year": "L'année passée",
214
214
  "Last 5 years": "5 dernières années",
215
- "Last 10 years": "",
215
+ "Last 10 years": "10 dernières années",
216
216
  "Days": "Jours",
217
217
  "Weeks": "Semaines",
218
218
  "Bi-weeks": "Bi-hebdomadaires",
@@ -6,12 +6,12 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Ingen beskrivelse",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
13
13
  "Viewed {{count}} times_plural": "",
14
- "Notifications": "",
14
+ "Notifications": "Varsler",
15
15
  "You're subscribed and getting updates about new interpretations.": "",
16
16
  "Unsubscribe": "",
17
17
  "Subscribe to get updates about new interpretations.": "",
@@ -126,12 +126,12 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
132
- "Select a level": "",
133
- "Select a group": "",
134
- "Deselect all": "",
129
+ "User organisation unit": "Brukerorganisasjonsenhet",
130
+ "User sub-units": "Underenheter",
131
+ "User sub-x2-units": "Under-x2-enheter",
132
+ "Select a level": "Velg et nivå",
133
+ "Select a group": "Velg en gruppe",
134
+ "Deselect all": "Fjern valg",
135
135
  "Period type": "Periodetype",
136
136
  "Year": "År",
137
137
  "Select year": "Velg år",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "هېڅ ډول تشریح نه لري",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
@@ -126,9 +126,9 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
129
+ "User organisation unit": "کارکوڼکی واحدو سازمان",
130
+ "User sub-units": "واحد های فرعی استفاده کننده",
131
+ "User sub-x2-units": "واحد های نیم فرعی استفاده کننده",
132
132
  "Select a level": "",
133
133
  "Select a group": "",
134
134
  "Deselect all": "",
@@ -6,12 +6,12 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Sem descrição",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
13
13
  "Viewed {{count}} times_plural": "",
14
- "Notifications": "",
14
+ "Notifications": "Notificação",
15
15
  "You're subscribed and getting updates about new interpretations.": "",
16
16
  "Unsubscribe": "",
17
17
  "Subscribe to get updates about new interpretations.": "",
@@ -126,12 +126,12 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
132
- "Select a level": "",
133
- "Select a group": "",
134
- "Deselect all": "",
129
+ "User organisation unit": "Unidade organizacional do utilizador",
130
+ "User sub-units": "Dois níveis abaixo",
131
+ "User sub-x2-units": "Dois níveis abaixo",
132
+ "Select a level": "Selecione um nível",
133
+ "Select a group": "Selecione um grupo",
134
+ "Deselect all": "Desmarcar todos",
135
135
  "Period type": "Tipo de periodo",
136
136
  "Year": "Ano",
137
137
  "Select year": "Selecionar ano",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Ingen beskrivning",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
@@ -126,9 +126,9 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
129
+ "User organisation unit": "Användare organisation enheter",
130
+ "User sub-units": "Användarunderenheter",
131
+ "User sub-x2-units": "Användarunder x2-enheter",
132
132
  "Select a level": "",
133
133
  "Select a group": "",
134
134
  "Deselect all": "",
@@ -123,8 +123,8 @@
123
123
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
124
124
  "Nothing selected": "",
125
125
  "User organisation unit": "",
126
- "User sub-units": "",
127
- "User sub-x2-units": "",
126
+ "User sub-units": "Utilizador nia sub-unidades",
127
+ "User sub-x2-units": "Utilizador nia sub-x2-unidades",
128
128
  "Select a level": "",
129
129
  "Select a group": "",
130
130
  "Deselect all": "",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Немає змалювання",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times_0": "",
@@ -135,11 +135,11 @@
135
135
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
136
136
  "Nothing selected": "",
137
137
  "User organisation unit": "",
138
- "User sub-units": "",
139
- "User sub-x2-units": "",
138
+ "User sub-units": "Одиниці підрозділів користувачів",
139
+ "User sub-x2-units": "Підрозділи користувачів 2-го рівня",
140
140
  "Select a level": "",
141
141
  "Select a group": "",
142
- "Deselect all": "",
142
+ "Deselect all": "Скасувати вибір усіх",
143
143
  "Period type": "",
144
144
  "Year": "Рік",
145
145
  "Select year": "",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "کوئی وضاحت نہیں",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
@@ -126,12 +126,12 @@
126
126
  "{{count}} groups_plural": "",
127
127
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
128
128
  "Nothing selected": "",
129
- "User organisation unit": "",
130
- "User sub-units": "",
131
- "User sub-x2-units": "",
129
+ "User organisation unit": "صارف تنظیم یونٹ",
130
+ "User sub-units": "صارف ذیلی یونٹس",
131
+ "User sub-x2-units": "صارف ذیلی X2-یونٹس",
132
132
  "Select a level": "",
133
133
  "Select a group": "",
134
- "Deselect all": "",
134
+ "Deselect all": "سب کو منتخب کریں",
135
135
  "Period type": "مدت کی قسم",
136
136
  "Year": "سال",
137
137
  "Select year": "سال کو منتخب کریں",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Tavsif yoʼq",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
@@ -122,12 +122,12 @@
122
122
  "{{count}} groups": "",
123
123
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
124
124
  "Nothing selected": "",
125
- "User organisation unit": "",
126
- "User sub-units": "",
127
- "User sub-x2-units": "",
128
- "Select a level": "",
129
- "Select a group": "",
130
- "Deselect all": "",
125
+ "User organisation unit": "Ташкилий бўлим фойдаланувчиси",
126
+ "User sub-units": "Фойдаланувчига бўйсунувчи бирликлар",
127
+ "User sub-x2-units": "Фойдаланувчига бўйсунувчи 2 даражали бирликлар",
128
+ "Select a level": "Pogʼonani tanlang",
129
+ "Select a group": "Guruhni tanlang",
130
+ "Deselect all": "Barcha tanlanganni bekor qilish",
131
131
  "Period type": "Davr turi",
132
132
  "Year": "Yil",
133
133
  "Select year": "Yilni tanlang",
@@ -6,7 +6,7 @@
6
6
  "Shared with {{commaSeparatedListOfUsersAndGroups}}": "",
7
7
  "Not shared with any users or groups": "",
8
8
  "About this visualization": "",
9
- "No description": "",
9
+ "No description": "Không mô tả",
10
10
  "Last updated {{time}}": "",
11
11
  "Created {{time}} by {{author}}": "",
12
12
  "Viewed {{count}} times": "",
@@ -122,12 +122,12 @@
122
122
  "{{count}} groups": "",
123
123
  "Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
124
124
  "Nothing selected": "",
125
- "User organisation unit": "",
126
- "User sub-units": "",
127
- "User sub-x2-units": "",
128
- "Select a level": "",
129
- "Select a group": "",
130
- "Deselect all": "",
125
+ "User organisation unit": "Đơn vị người dùng",
126
+ "User sub-units": "Đơn-vị-con người dùng",
127
+ "User sub-x2-units": "Đơn-vị-con-x2 người dùng",
128
+ "Select a level": "Chọn mức",
129
+ "Select a group": "Chọn nhóm",
130
+ "Deselect all": "Bỏ chọn tất cả",
131
131
  "Period type": "Loại thời điểm",
132
132
  "Year": "Năm",
133
133
  "Select year": "Chọn năm",