@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.
- package/CHANGELOG.md +28 -0
- package/build/cjs/api/analytics/AnalyticsRequest.js +6 -2
- package/build/cjs/api/analytics/AnalyticsRequestDimensionsMixin.js +6 -2
- package/build/cjs/api/analytics/__tests__/AnalyticsRequest.spec.js +1 -2
- package/build/cjs/components/OrgUnitDimension/OrgUnitDimension.js +4 -2
- package/build/cjs/locales/ar/translations.json +8 -8
- package/build/cjs/locales/ar_IQ/translations.json +3 -3
- package/build/cjs/locales/cs/translations.json +31 -31
- package/build/cjs/locales/es/translations.json +7 -7
- package/build/cjs/locales/fr/translations.json +9 -9
- package/build/cjs/locales/nb/translations.json +8 -8
- package/build/cjs/locales/ps/translations.json +4 -4
- package/build/cjs/locales/pt/translations.json +8 -8
- package/build/cjs/locales/sv/translations.json +4 -4
- package/build/cjs/locales/tet/translations.json +2 -2
- package/build/cjs/locales/uk/translations.json +4 -4
- package/build/cjs/locales/ur/translations.json +5 -5
- package/build/cjs/locales/uz_Latn/translations.json +7 -7
- package/build/cjs/locales/vi/translations.json +7 -7
- package/build/cjs/locales/zh/translations.json +27 -27
- package/build/cjs/modules/layout/dimension.js +9 -2
- package/build/cjs/modules/layout/dimensionCreate.js +14 -6
- package/build/es/api/analytics/AnalyticsRequest.js +6 -2
- package/build/es/api/analytics/AnalyticsRequestDimensionsMixin.js +6 -2
- package/build/es/api/analytics/__tests__/AnalyticsRequest.spec.js +1 -2
- package/build/es/components/OrgUnitDimension/OrgUnitDimension.js +4 -2
- package/build/es/locales/ar/translations.json +8 -8
- package/build/es/locales/ar_IQ/translations.json +3 -3
- package/build/es/locales/cs/translations.json +31 -31
- package/build/es/locales/es/translations.json +7 -7
- package/build/es/locales/fr/translations.json +9 -9
- package/build/es/locales/nb/translations.json +8 -8
- package/build/es/locales/ps/translations.json +4 -4
- package/build/es/locales/pt/translations.json +8 -8
- package/build/es/locales/sv/translations.json +4 -4
- package/build/es/locales/tet/translations.json +2 -2
- package/build/es/locales/uk/translations.json +4 -4
- package/build/es/locales/ur/translations.json +5 -5
- package/build/es/locales/uz_Latn/translations.json +7 -7
- package/build/es/locales/vi/translations.json +7 -7
- package/build/es/locales/zh/translations.json +27 -27
- package/build/es/modules/layout/dimension.js +7 -1
- package/build/es/modules/layout/dimensionCreate.js +15 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [21.0.8](https://github.com/dhis2/analytics/compare/v21.0.7...v21.0.8) (2021-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disable org unit filters and groups when user org units are used ([#1100](https://github.com/dhis2/analytics/issues/1100)) ([ce63e14](https://github.com/dhis2/analytics/commit/ce63e14517abfe5f7edc6f42b46c6e1dc07a3555))
|
|
7
|
+
|
|
8
|
+
## [21.0.7](https://github.com/dhis2/analytics/compare/v21.0.6...v21.0.7) (2021-12-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* dimension without items + filter (TECH-788) ([#1097](https://github.com/dhis2/analytics/issues/1097)) ([37369ce](https://github.com/dhis2/analytics/commit/37369ce74eb189724d0943d35492d377f0ff44f8))
|
|
14
|
+
|
|
15
|
+
## [21.0.6](https://github.com/dhis2/analytics/compare/v21.0.5...v21.0.6) (2021-11-28)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **translations:** sync translations from transifex (master) ([8c10c19](https://github.com/dhis2/analytics/commit/8c10c1909a77e4ae9c729e99bc41bc84b9a51860))
|
|
21
|
+
|
|
22
|
+
## [21.0.5](https://github.com/dhis2/analytics/compare/v21.0.4...v21.0.5) (2021-11-26)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **translations:** sync translations from transifex (master) ([1ce7694](https://github.com/dhis2/analytics/commit/1ce76945a25320a774c08fbc8d8a90b086c5ba1a))
|
|
28
|
+
|
|
1
29
|
## [21.0.4](https://github.com/dhis2/analytics/compare/v21.0.3...v21.0.4) (2021-11-25)
|
|
2
30
|
|
|
3
31
|
|
|
@@ -56,20 +56,24 @@ class AnalyticsRequest extends (0, _AnalyticsRequestDimensionsMixin.default)((0,
|
|
|
56
56
|
const columns = visualization.columns || [];
|
|
57
57
|
const rows = visualization.rows || [];
|
|
58
58
|
columns.concat(rows).forEach(d => {
|
|
59
|
+
var _d$items;
|
|
60
|
+
|
|
59
61
|
let dimension = d.dimension;
|
|
60
62
|
|
|
61
63
|
if (d.filter) {
|
|
62
64
|
dimension += ":".concat(d.filter);
|
|
63
65
|
}
|
|
64
66
|
|
|
65
|
-
request = request.addDimension(dimension, d.items.map(item => item.id));
|
|
67
|
+
request = request.addDimension(dimension, (_d$items = d.items) === null || _d$items === void 0 ? void 0 : _d$items.map(item => item.id));
|
|
66
68
|
}); // extract filters from visualization
|
|
67
69
|
|
|
68
70
|
const filters = visualization.filters || []; // only pass dx/pe/ou as dimension
|
|
69
71
|
|
|
70
72
|
const fixedIds = Object.keys((0, _predefinedDimensions.getFixedDimensions)());
|
|
71
73
|
filters.forEach(f => {
|
|
72
|
-
|
|
74
|
+
var _f$items, _f$items2;
|
|
75
|
+
|
|
76
|
+
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));
|
|
73
77
|
});
|
|
74
78
|
return request;
|
|
75
79
|
}
|
|
@@ -125,12 +125,16 @@ class extends base {
|
|
|
125
125
|
if (existingDimension) {
|
|
126
126
|
this.dimensions.splice(dimensionIndex, 1, {
|
|
127
127
|
dimension,
|
|
128
|
-
items
|
|
128
|
+
...(items && {
|
|
129
|
+
items: updatedItems
|
|
130
|
+
})
|
|
129
131
|
});
|
|
130
132
|
} else {
|
|
131
133
|
this.dimensions.push({
|
|
132
134
|
dimension,
|
|
133
|
-
items
|
|
135
|
+
...(items && {
|
|
136
|
+
items: updatedItems
|
|
137
|
+
})
|
|
134
138
|
});
|
|
135
139
|
}
|
|
136
140
|
|
|
@@ -122,8 +122,7 @@ describe('AnalyticsRequest', () => {
|
|
|
122
122
|
it('should add the given dimension without any associated value', () => {
|
|
123
123
|
request.addDimension('Jtf34kNZhzP');
|
|
124
124
|
expect(request.dimensions).toEqual([{
|
|
125
|
-
dimension: 'Jtf34kNZhzP'
|
|
126
|
-
items: []
|
|
125
|
+
dimension: 'Jtf34kNZhzP'
|
|
127
126
|
}]);
|
|
128
127
|
});
|
|
129
128
|
it('should add the given dimension with the associated value (passed as string)', () => {
|
|
@@ -56,7 +56,7 @@ const OrgUnitDimension = ({
|
|
|
56
56
|
let result = [...selected];
|
|
57
57
|
|
|
58
58
|
if (checked && DYNAMIC_ORG_UNITS.includes(id)) {
|
|
59
|
-
result = [...result.filter(item => DYNAMIC_ORG_UNITS.includes(item.id)
|
|
59
|
+
result = [...result.filter(item => DYNAMIC_ORG_UNITS.includes(item.id)), {
|
|
60
60
|
id,
|
|
61
61
|
displayName
|
|
62
62
|
}];
|
|
@@ -216,7 +216,9 @@ const OrgUnitDimension = ({
|
|
|
216
216
|
onChange: onSelectItems,
|
|
217
217
|
dataTest: 'org-unit-tree'
|
|
218
218
|
})), /*#__PURE__*/_react.default.createElement("div", {
|
|
219
|
-
className: "jsx-".concat(_OrgUnitDimension.default.__hash) + " " +
|
|
219
|
+
className: "jsx-".concat(_OrgUnitDimension.default.__hash) + " " + ((0, _classnames.default)('selectsWrapper', {
|
|
220
|
+
disabled: selected.some(item => DYNAMIC_ORG_UNITS.includes(item.id))
|
|
221
|
+
}) || "")
|
|
220
222
|
}, /*#__PURE__*/_react.default.createElement(_ui.MultiSelect, {
|
|
221
223
|
selected: ouLevels.length ? selected.filter(item => _ouIdHelper.ouIdHelper.hasLevelPrefix(item.id)).map(item => _ouIdHelper.ouIdHelper.removePrefix(item.id)) : [],
|
|
222
224
|
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",
|
|
@@ -1,20 +1,20 @@
|
|
|
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": "",
|
|
9
|
-
"No description": "",
|
|
10
|
-
"Last updated {{time}}": "",
|
|
11
|
-
"Created {{time}} by {{author}}": "",
|
|
12
|
-
"Viewed {{count}} times": "",
|
|
13
|
-
"Notifications": "",
|
|
14
|
-
"You're subscribed and getting updates about new interpretations.": "",
|
|
15
|
-
"Unsubscribe": "",
|
|
16
|
-
"Subscribe to get updates about new interpretations.": "",
|
|
17
|
-
"Subscribe": "",
|
|
2
|
+
"view only": "只读",
|
|
3
|
+
"view and edit": "查看和编辑",
|
|
4
|
+
"all users ({{accessLevel}})": "所有用户 ({{accessLevel}})",
|
|
5
|
+
"{{userOrGroup}} ({{accessLevel}})": "{{userOrGroup}} ({{accessLevel}})",
|
|
6
|
+
"Shared with {{commaSeparatedListOfUsersAndGroups}}": "与 {{commaSeparatedListOfUsersAndGroups}} 共享",
|
|
7
|
+
"Not shared with any users or groups": "不与任何用户或组共享",
|
|
8
|
+
"About this visualization": "关于此可视化",
|
|
9
|
+
"No description": "无描述",
|
|
10
|
+
"Last updated {{time}}": "最后更新 {{time}}",
|
|
11
|
+
"Created {{time}} by {{author}}": "由 {{author}} 在 {{time}} 创建",
|
|
12
|
+
"Viewed {{count}} times": "查看了 {{count}} 次",
|
|
13
|
+
"Notifications": "通知",
|
|
14
|
+
"You're subscribed and getting updates about new interpretations.": "您已订阅并获取有关新解释的更新。",
|
|
15
|
+
"Unsubscribe": "退订",
|
|
16
|
+
"Subscribe to get updates about new interpretations.": "订阅以获取有关新解释的更新。",
|
|
17
|
+
"Subscribe": "订阅",
|
|
18
18
|
"Data Type": "数据类型",
|
|
19
19
|
"All types": "所有类型",
|
|
20
20
|
"Totals only": "总计",
|
|
@@ -117,17 +117,17 @@
|
|
|
117
117
|
"Options": "选项",
|
|
118
118
|
"Hide": "隐藏",
|
|
119
119
|
"Update": "更新",
|
|
120
|
-
"{{count}} org units": "",
|
|
121
|
-
"{{count}} levels": "",
|
|
122
|
-
"{{count}} groups": "",
|
|
123
|
-
"Selected: {{commaSeparatedListOfOrganisationUnits}}": "",
|
|
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": "",
|
|
120
|
+
"{{count}} org units": "{{count}} 个组织单位",
|
|
121
|
+
"{{count}} levels": "{{count}} 级",
|
|
122
|
+
"{{count}} groups": "{{count}} 组",
|
|
123
|
+
"Selected: {{commaSeparatedListOfOrganisationUnits}}": "已选择:{{commaSeparatedListOfOrganisationUnits}}",
|
|
124
|
+
"Nothing selected": "未选择任何内容",
|
|
125
|
+
"User organisation unit": "用户所在机构",
|
|
126
|
+
"User sub-units": "我的下属机构",
|
|
127
|
+
"User sub-x2-units": "该用户2级下属机构",
|
|
128
|
+
"Select a level": "选择一个等级",
|
|
129
|
+
"Select a group": "选择一个组",
|
|
130
|
+
"Deselect all": "取消全选",
|
|
131
131
|
"Period type": "周期类型",
|
|
132
132
|
"Year": "年",
|
|
133
133
|
"Select year": "选择年份",
|