@dhis2/analytics 23.8.5 → 23.8.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 +23 -0
- package/build/cjs/__demo__/FileMenu.stories.js +4 -2
- package/build/cjs/__demo__/Filter.stories.js +2 -2
- package/build/cjs/__demo__/FixedPeriodSelect.stories.js +2 -2
- package/build/cjs/__demo__/OpenFileDialog.stories.js +4 -2
- package/build/cjs/__demo__/OrgUnitDimension.stories.js +2 -2
- package/build/cjs/__demo__/PivotTable.stories.js +206 -153
- package/build/cjs/api/__tests__/dimensions.spec.js +2 -1
- package/build/cjs/api/analytics/Analytics.js +8 -7
- package/build/cjs/api/analytics/AnalyticsBase.js +58 -43
- package/build/cjs/api/analytics/AnalyticsRequest.js +2 -1
- package/build/cjs/api/analytics/AnalyticsRequestBase.js +22 -17
- package/build/cjs/api/analytics/AnalyticsRequestPropertiesMixin.js +38 -19
- package/build/cjs/api/analytics/AnalyticsResponseHeader.js +7 -5
- package/build/cjs/api/analytics/__tests__/AnalyticsRequest.spec.js +2 -1
- package/build/cjs/api/dimensions.js +150 -120
- package/build/cjs/api/organisationUnits.js +36 -24
- package/build/cjs/components/AboutAOUnit/AboutAOUnit.js +19 -12
- package/build/cjs/components/CachedDataQueryProvider.js +8 -7
- package/build/cjs/components/DataDimension/DataDimension.js +8 -6
- package/build/cjs/components/DataDimension/DataTypeSelector.js +6 -5
- package/build/cjs/components/DataDimension/DetailSelector.js +6 -5
- package/build/cjs/components/DataDimension/GroupSelector.js +12 -11
- package/build/cjs/components/DataDimension/ItemSelector.js +87 -73
- package/build/cjs/components/DataDimension/MetricSelector.js +6 -5
- package/build/cjs/components/DimensionMenu.js +14 -13
- package/build/cjs/components/DimensionsPanel/DimensionsPanel.js +4 -4
- package/build/cjs/components/DimensionsPanel/List/DimensionItem.js +4 -4
- package/build/cjs/components/DimensionsPanel/List/DimensionLabel.js +4 -4
- package/build/cjs/components/DimensionsPanel/List/DimensionList.js +4 -4
- package/build/cjs/components/DimensionsPanel/List/OptionsButton.js +10 -7
- package/build/cjs/components/DimensionsPanel/List/RecommendedIcon.js +14 -11
- package/build/cjs/components/DynamicDimension/DynamicDimension.js +9 -8
- package/build/cjs/components/DynamicDimension/ItemSelector.js +58 -44
- package/build/cjs/components/FileMenu/DeleteDialog.js +16 -12
- package/build/cjs/components/FileMenu/FileMenu.js +19 -18
- package/build/cjs/components/FileMenu/GetLinkDialog.js +6 -5
- package/build/cjs/components/FileMenu/RenameDialog.js +38 -25
- package/build/cjs/components/FileMenu/SaveAsDialog.js +21 -14
- package/build/cjs/components/FileMenu/utils.js +1 -1
- package/build/cjs/components/Filter/Filter.js +22 -19
- package/build/cjs/components/LegendKey/LegendKey.js +4 -3
- package/build/cjs/components/OpenFileDialog/CreatedByFilter.js +26 -20
- package/build/cjs/components/OpenFileDialog/CustomSelectOption.js +26 -23
- package/build/cjs/components/OpenFileDialog/DateField.js +4 -3
- package/build/cjs/components/OpenFileDialog/FileList.js +22 -19
- package/build/cjs/components/OpenFileDialog/NameFilter.js +21 -15
- package/build/cjs/components/OpenFileDialog/OpenFileDialog.js +43 -35
- package/build/cjs/components/OpenFileDialog/PaginationControls.js +28 -22
- package/build/cjs/components/OpenFileDialog/VisTypeFilter.js +37 -28
- package/build/cjs/components/OpenFileDialog/utils.js +1 -1
- package/build/cjs/components/Options/VisualizationOptions.js +46 -36
- package/build/cjs/components/Options/styles/VisualizationOptions.style.js +1 -1
- package/build/cjs/components/OrgUnitDimension/OrgUnitDimension.js +50 -34
- package/build/cjs/components/PeriodDimension/FixedPeriodFilter.js +22 -15
- package/build/cjs/components/PeriodDimension/FixedPeriodSelect.js +19 -14
- package/build/cjs/components/PeriodDimension/PeriodDimension.js +8 -6
- package/build/cjs/components/PeriodDimension/PeriodTransfer.js +24 -19
- package/build/cjs/components/PeriodDimension/RelativePeriodFilter.js +30 -24
- package/build/cjs/components/PeriodDimension/utils/fixedPeriods.js +1 -1
- package/build/cjs/components/PeriodDimension/utils/index.js +6 -2
- package/build/cjs/components/PeriodDimension/utils/relativePeriods.js +1 -1
- package/build/cjs/components/PivotTable/PivotTable.js +10 -9
- package/build/cjs/components/PivotTable/PivotTableBody.js +29 -20
- package/build/cjs/components/PivotTable/PivotTableCell.js +9 -8
- package/build/cjs/components/PivotTable/PivotTableClippedAxis.js +17 -14
- package/build/cjs/components/PivotTable/PivotTableColumnHeaderCell.js +8 -7
- package/build/cjs/components/PivotTable/PivotTableColumnHeaders.js +29 -22
- package/build/cjs/components/PivotTable/PivotTableContainer.js +6 -5
- package/build/cjs/components/PivotTable/PivotTableDimensionLabelCell.js +5 -4
- package/build/cjs/components/PivotTable/PivotTableEmptyCell.js +3 -2
- package/build/cjs/components/PivotTable/PivotTableEmptyRow.js +5 -4
- package/build/cjs/components/PivotTable/PivotTableEngineContext.js +7 -6
- package/build/cjs/components/PivotTable/PivotTableHead.js +16 -13
- package/build/cjs/components/PivotTable/PivotTableHeaderCell.js +9 -8
- package/build/cjs/components/PivotTable/PivotTableRow.js +27 -20
- package/build/cjs/components/PivotTable/PivotTableRowHeaderCell.js +6 -5
- package/build/cjs/components/PivotTable/PivotTableSortIcon.js +5 -4
- package/build/cjs/components/PivotTable/PivotTableTitleRow.js +9 -8
- package/build/cjs/components/PivotTable/PivotTableTitleRows.js +5 -4
- package/build/cjs/components/PivotTable/PivotTableValueCell.js +8 -7
- package/build/cjs/components/PivotTable/styles/PivotTable.style.js +1 -1
- package/build/cjs/components/TransferOption.js +15 -13
- package/build/cjs/components/TranslationDialog/TranslationModal/LocalesSelect.js +28 -19
- package/build/cjs/components/TranslationDialog/TranslationModal/TranslationForm.js +25 -18
- package/build/cjs/components/TranslationDialog/TranslationModal/TranslationModal.js +9 -8
- package/build/cjs/components/TranslationDialog/TranslationModal/TranslationModalActions.js +17 -14
- package/build/cjs/components/TranslationDialog/TranslationModal/useTranslationsResults.js +4 -3
- package/build/cjs/components/VisTypeIcon.js +6 -5
- package/build/cjs/index.js +464 -464
- package/build/cjs/locales/ar/translations.json +1 -1
- package/build/cjs/locales/ar_EG/translations.json +1 -1
- package/build/cjs/locales/ar_IQ/translations.json +1 -1
- package/build/cjs/locales/ckb/translations.json +1 -1
- package/build/cjs/locales/cs/translations.json +1 -1
- package/build/cjs/locales/da/translations.json +1 -1
- package/build/cjs/locales/en/translations.json +1 -1
- package/build/cjs/locales/es/translations.json +1 -1
- package/build/cjs/locales/fr/translations.json +1 -1
- package/build/cjs/locales/id/translations.json +1 -1
- package/build/cjs/locales/km/translations.json +1 -1
- package/build/cjs/locales/lo/translations.json +1 -1
- package/build/cjs/locales/my/translations.json +1 -1
- package/build/cjs/locales/nb/translations.json +1 -1
- package/build/cjs/locales/nl/translations.json +65 -65
- package/build/cjs/locales/prs/translations.json +1 -1
- package/build/cjs/locales/ps/translations.json +1 -1
- package/build/cjs/locales/pt/translations.json +1 -1
- package/build/cjs/locales/pt_BR/translations.json +1 -1
- package/build/cjs/locales/ru/translations.json +1 -1
- package/build/cjs/locales/sv/translations.json +1 -1
- package/build/cjs/locales/tet/translations.json +1 -1
- package/build/cjs/locales/tg/translations.json +1 -1
- package/build/cjs/locales/uk/translations.json +1 -1
- package/build/cjs/locales/ur/translations.json +1 -1
- package/build/cjs/locales/uz/translations.json +1 -1
- package/build/cjs/locales/uz_Latn/translations.json +1 -1
- package/build/cjs/locales/vi/translations.json +1 -1
- package/build/cjs/locales/zh/translations.json +1 -1
- package/build/cjs/locales/zh_CN/translations.json +1 -1
- package/build/cjs/modules/axis.js +1 -1
- package/build/cjs/modules/dataSets.js +1 -1
- package/build/cjs/modules/dataTypes.js +2 -2
- package/build/cjs/modules/dimensionSelectorHelper.js +1 -1
- package/build/cjs/modules/fontStyle.js +1 -1
- package/build/cjs/modules/layout/axis.js +1 -1
- package/build/cjs/modules/layout/dimension.js +1 -1
- package/build/cjs/modules/layout/dimensionCreate.js +3 -1
- package/build/cjs/modules/layout/dimensionIsValid.js +5 -3
- package/build/cjs/modules/layout/item.js +1 -1
- package/build/cjs/modules/layout/testResources.js +1 -1
- package/build/cjs/modules/layoutTypes.js +1 -1
- package/build/cjs/modules/layoutUiRules/index.js +20 -20
- package/build/cjs/modules/layoutUiRules/rules.js +1 -1
- package/build/cjs/modules/layoutUiRules/rulesHelper.js +2 -1
- package/build/cjs/modules/layoutUiRules/rulesUtils.js +1 -1
- package/build/cjs/modules/legends.js +1 -1
- package/build/cjs/modules/outliers/index.js +4 -2
- package/build/cjs/modules/outliers/iqr.js +8 -5
- package/build/cjs/modules/outliers/modZScore.js +15 -7
- package/build/cjs/modules/outliers/zScore.js +5 -4
- package/build/cjs/modules/pivotTable/AdaptiveClippingController.js +17 -12
- package/build/cjs/modules/pivotTable/PivotTableEngine.js +57 -44
- package/build/cjs/modules/pivotTable/clipAxis.js +8 -7
- package/build/cjs/modules/pivotTable/clipPartitionedAxis.js +10 -9
- package/build/cjs/modules/pivotTable/getHeaderForDisplay.js +9 -8
- package/build/cjs/modules/pivotTable/measureText.js +10 -7
- package/build/cjs/modules/pivotTable/pivotTableConstants.js +1 -1
- package/build/cjs/modules/pivotTable/useParentSize.js +2 -1
- package/build/cjs/modules/pivotTable/useScrollPosition.js +2 -1
- package/build/cjs/modules/pivotTable/useTableClipping.js +7 -6
- package/build/cjs/modules/predefinedDimensions.js +2 -2
- package/build/cjs/modules/relativeItems/index.js +4 -1
- package/build/cjs/modules/valueTypes.js +1 -1
- package/build/cjs/modules/visTypes.js +1 -1
- package/build/cjs/visualizations/config/adapters/dhis_dhis/index.js +7 -6
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/addTrendLines.js +9 -4
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/axis.js +5 -2
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/customAxes.js +9 -5
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/getTrimmedConfig.js +4 -3
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/index.js +11 -9
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/legend.js +32 -28
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/legendSet.js +24 -20
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/plotOptions.js +9 -8
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/xAxis/index.js +1 -1
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/yAxis/gauge.js +3 -1
- package/build/cjs/visualizations/config/generators/dhis/singleValue.js +28 -24
- package/build/cjs/visualizations/config/generators/highcharts/index.js +5 -1
- package/build/cjs/visualizations/config/index.js +13 -11
- package/build/cjs/visualizations/config/validators/dhis/index.js +4 -3
- package/build/cjs/visualizations/index.js +6 -2
- package/build/cjs/visualizations/store/adapters/dhis_dhis/index.js +7 -6
- package/build/cjs/visualizations/store/adapters/dhis_highcharts/index.js +8 -7
- package/build/cjs/visualizations/store/index.js +18 -15
- package/build/cjs/visualizations/store/validators/dhis/index.js +7 -5
- package/build/cjs/visualizations/util/colors/colorSets.js +1 -1
- package/build/cjs/visualizations/util/colors/themes.js +1 -1
- package/build/cjs/visualizations/util/getFilterText.js +9 -6
- package/build/es/__demo__/FileMenu.stories.js +4 -2
- package/build/es/__demo__/OpenFileDialog.stories.js +4 -2
- package/build/es/__demo__/PivotTable.stories.js +204 -151
- package/build/es/api/__tests__/dimensions.spec.js +2 -1
- package/build/es/api/analytics/Analytics.js +8 -7
- package/build/es/api/analytics/AnalyticsBase.js +58 -43
- package/build/es/api/analytics/AnalyticsRequest.js +2 -1
- package/build/es/api/analytics/AnalyticsRequestBase.js +22 -17
- package/build/es/api/analytics/AnalyticsRequestPropertiesMixin.js +38 -19
- package/build/es/api/analytics/AnalyticsResponseHeader.js +7 -5
- package/build/es/api/analytics/__tests__/AnalyticsRequest.spec.js +2 -1
- package/build/es/api/dimensions.js +149 -119
- package/build/es/api/organisationUnits.js +35 -23
- package/build/es/components/AboutAOUnit/AboutAOUnit.js +17 -10
- package/build/es/components/CachedDataQueryProvider.js +6 -5
- package/build/es/components/DataDimension/DataDimension.js +8 -6
- package/build/es/components/DataDimension/DataTypeSelector.js +6 -5
- package/build/es/components/DataDimension/DetailSelector.js +6 -5
- package/build/es/components/DataDimension/GroupSelector.js +10 -9
- package/build/es/components/DataDimension/ItemSelector.js +85 -71
- package/build/es/components/DataDimension/MetricSelector.js +6 -5
- package/build/es/components/DimensionMenu.js +14 -13
- package/build/es/components/DimensionsPanel/DimensionsPanel.js +2 -2
- package/build/es/components/DimensionsPanel/List/DimensionItem.js +2 -2
- package/build/es/components/DimensionsPanel/List/DimensionLabel.js +2 -2
- package/build/es/components/DimensionsPanel/List/DimensionList.js +2 -2
- package/build/es/components/DimensionsPanel/List/OptionsButton.js +10 -7
- package/build/es/components/DimensionsPanel/List/RecommendedIcon.js +14 -11
- package/build/es/components/DynamicDimension/DynamicDimension.js +9 -8
- package/build/es/components/DynamicDimension/ItemSelector.js +56 -42
- package/build/es/components/FileMenu/DeleteDialog.js +14 -10
- package/build/es/components/FileMenu/FileMenu.js +17 -16
- package/build/es/components/FileMenu/GetLinkDialog.js +6 -5
- package/build/es/components/FileMenu/RenameDialog.js +36 -23
- package/build/es/components/FileMenu/SaveAsDialog.js +19 -12
- package/build/es/components/Filter/Filter.js +22 -19
- package/build/es/components/LegendKey/LegendKey.js +4 -3
- package/build/es/components/OpenFileDialog/CreatedByFilter.js +26 -20
- package/build/es/components/OpenFileDialog/CustomSelectOption.js +26 -23
- package/build/es/components/OpenFileDialog/DateField.js +4 -3
- package/build/es/components/OpenFileDialog/FileList.js +22 -19
- package/build/es/components/OpenFileDialog/NameFilter.js +21 -15
- package/build/es/components/OpenFileDialog/OpenFileDialog.js +41 -33
- package/build/es/components/OpenFileDialog/PaginationControls.js +28 -22
- package/build/es/components/OpenFileDialog/VisTypeFilter.js +37 -28
- package/build/es/components/Options/VisualizationOptions.js +43 -33
- package/build/es/components/OrgUnitDimension/OrgUnitDimension.js +48 -32
- package/build/es/components/PeriodDimension/FixedPeriodFilter.js +22 -15
- package/build/es/components/PeriodDimension/FixedPeriodSelect.js +17 -12
- package/build/es/components/PeriodDimension/PeriodDimension.js +8 -6
- package/build/es/components/PeriodDimension/PeriodTransfer.js +22 -17
- package/build/es/components/PeriodDimension/RelativePeriodFilter.js +30 -24
- package/build/es/components/PeriodDimension/utils/index.js +5 -1
- package/build/es/components/PivotTable/PivotTable.js +8 -7
- package/build/es/components/PivotTable/PivotTableBody.js +29 -20
- package/build/es/components/PivotTable/PivotTableCell.js +9 -8
- package/build/es/components/PivotTable/PivotTableClippedAxis.js +17 -14
- package/build/es/components/PivotTable/PivotTableColumnHeaderCell.js +8 -7
- package/build/es/components/PivotTable/PivotTableColumnHeaders.js +29 -22
- package/build/es/components/PivotTable/PivotTableContainer.js +6 -5
- package/build/es/components/PivotTable/PivotTableDimensionLabelCell.js +5 -4
- package/build/es/components/PivotTable/PivotTableEmptyCell.js +3 -2
- package/build/es/components/PivotTable/PivotTableEmptyRow.js +5 -4
- package/build/es/components/PivotTable/PivotTableEngineContext.js +5 -4
- package/build/es/components/PivotTable/PivotTableHead.js +16 -13
- package/build/es/components/PivotTable/PivotTableHeaderCell.js +9 -8
- package/build/es/components/PivotTable/PivotTableRow.js +27 -20
- package/build/es/components/PivotTable/PivotTableRowHeaderCell.js +6 -5
- package/build/es/components/PivotTable/PivotTableSortIcon.js +5 -4
- package/build/es/components/PivotTable/PivotTableTitleRow.js +7 -6
- package/build/es/components/PivotTable/PivotTableTitleRows.js +5 -4
- package/build/es/components/PivotTable/PivotTableValueCell.js +6 -5
- package/build/es/components/TransferOption.js +15 -13
- package/build/es/components/TranslationDialog/TranslationModal/LocalesSelect.js +28 -19
- package/build/es/components/TranslationDialog/TranslationModal/TranslationForm.js +23 -16
- package/build/es/components/TranslationDialog/TranslationModal/TranslationModal.js +7 -6
- package/build/es/components/TranslationDialog/TranslationModal/TranslationModalActions.js +17 -14
- package/build/es/components/TranslationDialog/TranslationModal/useTranslationsResults.js +4 -3
- package/build/es/components/VisTypeIcon.js +6 -5
- package/build/es/locales/ar/translations.json +1 -1
- package/build/es/locales/ar_EG/translations.json +1 -1
- package/build/es/locales/ar_IQ/translations.json +1 -1
- package/build/es/locales/ckb/translations.json +1 -1
- package/build/es/locales/cs/translations.json +1 -1
- package/build/es/locales/da/translations.json +1 -1
- package/build/es/locales/en/translations.json +1 -1
- package/build/es/locales/es/translations.json +1 -1
- package/build/es/locales/fr/translations.json +1 -1
- package/build/es/locales/id/translations.json +1 -1
- package/build/es/locales/km/translations.json +1 -1
- package/build/es/locales/lo/translations.json +1 -1
- package/build/es/locales/my/translations.json +1 -1
- package/build/es/locales/nb/translations.json +1 -1
- package/build/es/locales/nl/translations.json +65 -65
- package/build/es/locales/prs/translations.json +1 -1
- package/build/es/locales/ps/translations.json +1 -1
- package/build/es/locales/pt/translations.json +1 -1
- package/build/es/locales/pt_BR/translations.json +1 -1
- package/build/es/locales/ru/translations.json +1 -1
- package/build/es/locales/sv/translations.json +1 -1
- package/build/es/locales/tet/translations.json +1 -1
- package/build/es/locales/tg/translations.json +1 -1
- package/build/es/locales/uk/translations.json +1 -1
- package/build/es/locales/ur/translations.json +1 -1
- package/build/es/locales/uz/translations.json +1 -1
- package/build/es/locales/uz_Latn/translations.json +1 -1
- package/build/es/locales/vi/translations.json +1 -1
- package/build/es/locales/zh/translations.json +1 -1
- package/build/es/locales/zh_CN/translations.json +1 -1
- package/build/es/modules/layout/dimensionCreate.js +3 -1
- package/build/es/modules/layout/dimensionIsValid.js +5 -3
- package/build/es/modules/outliers/index.js +3 -1
- package/build/es/modules/outliers/iqr.js +7 -4
- package/build/es/modules/outliers/modZScore.js +14 -6
- package/build/es/modules/outliers/zScore.js +4 -3
- package/build/es/modules/pivotTable/AdaptiveClippingController.js +17 -12
- package/build/es/modules/pivotTable/PivotTableEngine.js +57 -44
- package/build/es/modules/pivotTable/clipAxis.js +8 -7
- package/build/es/modules/pivotTable/clipPartitionedAxis.js +10 -9
- package/build/es/modules/pivotTable/getHeaderForDisplay.js +9 -8
- package/build/es/modules/pivotTable/measureText.js +10 -7
- package/build/es/modules/pivotTable/useParentSize.js +2 -1
- package/build/es/modules/pivotTable/useScrollPosition.js +2 -1
- package/build/es/modules/pivotTable/useTableClipping.js +7 -6
- package/build/es/modules/predefinedDimensions.js +1 -1
- package/build/es/modules/relativeItems/index.js +4 -1
- package/build/es/visualizations/config/adapters/dhis_dhis/index.js +6 -5
- package/build/es/visualizations/config/adapters/dhis_highcharts/addTrendLines.js +8 -3
- package/build/es/visualizations/config/adapters/dhis_highcharts/axis.js +4 -1
- package/build/es/visualizations/config/adapters/dhis_highcharts/customAxes.js +6 -2
- package/build/es/visualizations/config/adapters/dhis_highcharts/getTrimmedConfig.js +4 -3
- package/build/es/visualizations/config/adapters/dhis_highcharts/index.js +9 -7
- package/build/es/visualizations/config/adapters/dhis_highcharts/legend.js +32 -28
- package/build/es/visualizations/config/adapters/dhis_highcharts/legendSet.js +23 -19
- package/build/es/visualizations/config/adapters/dhis_highcharts/plotOptions.js +9 -8
- package/build/es/visualizations/config/adapters/dhis_highcharts/yAxis/gauge.js +3 -1
- package/build/es/visualizations/config/generators/dhis/singleValue.js +28 -24
- package/build/es/visualizations/config/generators/highcharts/index.js +5 -1
- package/build/es/visualizations/config/index.js +13 -11
- package/build/es/visualizations/config/validators/dhis/index.js +4 -3
- package/build/es/visualizations/index.js +5 -1
- package/build/es/visualizations/store/adapters/dhis_dhis/index.js +7 -6
- package/build/es/visualizations/store/adapters/dhis_highcharts/index.js +8 -7
- package/build/es/visualizations/store/index.js +18 -15
- package/build/es/visualizations/store/validators/dhis/index.js +7 -5
- package/build/es/visualizations/util/getFilterText.js +9 -6
- package/package.json +11 -11
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
"{{thresholdFactor}} × Z-score low": "",
|
|
315
315
|
"{{thresholdFactor}} × Z-score high": "",
|
|
316
316
|
"Data": "بيانات",
|
|
317
|
-
"Organisation
|
|
317
|
+
"Organisation unit": "الوحدة التنظيمية",
|
|
318
318
|
"Assigned Categories": "الفئات المعينة",
|
|
319
319
|
"Pivot table": "الجدول المحوري",
|
|
320
320
|
"Area": "مساحة",
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
"{{thresholdFactor}} × Z-score low": "",
|
|
315
315
|
"{{thresholdFactor}} × Z-score high": "",
|
|
316
316
|
"Data": "البيانات",
|
|
317
|
-
"Organisation
|
|
317
|
+
"Organisation unit": "الوحدة التنظيمية",
|
|
318
318
|
"Assigned Categories": "",
|
|
319
319
|
"Pivot table": "الجدول المحوري",
|
|
320
320
|
"Area": "مساحة",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "يةكةي ريكخراو",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "ناوچە",
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × nízké Z-skóre",
|
|
307
307
|
"{{thresholdFactor}} × Z-score high": "{{thresholdFactor}} × Z-skóre vysoké",
|
|
308
308
|
"Data": "Data",
|
|
309
|
-
"Organisation
|
|
309
|
+
"Organisation unit": "Organizační jednotka",
|
|
310
310
|
"Assigned Categories": "Přiřazené kategorie",
|
|
311
311
|
"Pivot table": "Kontingenční tabulka",
|
|
312
312
|
"Area": "Oblast",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × Z-score low",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "{{thresholdFactor}} × Z-score high",
|
|
300
300
|
"Data": "Data",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Organisation unit",
|
|
302
302
|
"Assigned Categories": "Assigned Categories",
|
|
303
303
|
"Pivot table": "Pivot table",
|
|
304
304
|
"Area": "Area",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Datos",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Unidad organizativa",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "Tabla dinámica",
|
|
304
304
|
"Area": "Área",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × Z-score faible",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "{{thresholdFactor}} × Z-score élevé",
|
|
300
300
|
"Data": "Données",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Unité d'organisation",
|
|
302
302
|
"Assigned Categories": "Catégories attribuées",
|
|
303
303
|
"Pivot table": "Tableau croisé dynamique",
|
|
304
304
|
"Area": "Aire",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "{{thresholdFactor}} × Z-skor rendah",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "{{ThresholdFactor}} × Z-skor tinggi",
|
|
296
296
|
"Data": "Data",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "Unit organisasi",
|
|
298
298
|
"Assigned Categories": "Kategori yang Ditugaskan",
|
|
299
299
|
"Pivot table": "Tabel Pivot",
|
|
300
300
|
"Area": "Area",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "Data",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "ផ្នែកនៃអង្គការ",
|
|
298
298
|
"Assigned Categories": "",
|
|
299
299
|
"Pivot table": "",
|
|
300
300
|
"Area": "",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "ຂໍ້ມູນ",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "ຫົວໜ່ວຍການຈັດຕັ້ງ",
|
|
298
298
|
"Assigned Categories": "",
|
|
299
299
|
"Pivot table": "",
|
|
300
300
|
"Area": "",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "အချက်အလက်",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "Organisation unit",
|
|
298
298
|
"Assigned Categories": "",
|
|
299
299
|
"Pivot table": "",
|
|
300
300
|
"Area": "",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Data",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Organisasjonsenhet",
|
|
302
302
|
"Assigned Categories": "Tildelte Kategorier",
|
|
303
303
|
"Pivot table": "Pivottabell",
|
|
304
304
|
"Area": "Areal",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"Metric type": "",
|
|
43
43
|
"All metrics": "",
|
|
44
44
|
"Move to {{axisName}}": "",
|
|
45
|
-
"Add to {{axisName}}": "",
|
|
45
|
+
"Add to {{axisName}}": "Voeg toe aan {{axisName}}",
|
|
46
46
|
"Not available for {{visualizationType}}": "",
|
|
47
47
|
"Remove Assigned Categories": "",
|
|
48
|
-
"Add Assigned Categories": "",
|
|
49
|
-
"Remove": "",
|
|
50
|
-
"Filter dimensions": "",
|
|
51
|
-
"Main dimensions": "",
|
|
52
|
-
"Your dimensions": "",
|
|
48
|
+
"Add Assigned Categories": "Voeg Toegewezen Categorieën toe",
|
|
49
|
+
"Remove": "Verwijderen",
|
|
50
|
+
"Filter dimensions": "Filter dimensies",
|
|
51
|
+
"Main dimensions": "Hoofddimensies",
|
|
52
|
+
"Your dimensions": "Uw dimensies",
|
|
53
53
|
"Dimension recommended with selected data": "",
|
|
54
|
-
"All items": "",
|
|
54
|
+
"All items": "Alle items",
|
|
55
55
|
"Automatically include all items": "",
|
|
56
56
|
"Select all {{- dimensionTitle}} items. With this option, new items added in the future will be automatically included.": "",
|
|
57
57
|
"Manually select items...": "",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
123
123
|
"New line list": "",
|
|
124
124
|
"Options": "Opties",
|
|
125
|
-
"Hide": "",
|
|
125
|
+
"Hide": "Verbergen",
|
|
126
126
|
"Update": "Bijwerken",
|
|
127
127
|
"{{count}} org units": "",
|
|
128
128
|
"{{count}} org units_plural": "",
|
|
@@ -160,64 +160,64 @@
|
|
|
160
160
|
"December": "",
|
|
161
161
|
"Week {{weekNumber}}": "",
|
|
162
162
|
"Bi-Week {{biWeekNumber}}": "",
|
|
163
|
-
"Daily": "",
|
|
164
|
-
"Weekly": "",
|
|
165
|
-
"Weekly (Start Wednesday)": "",
|
|
166
|
-
"Weekly (Start Thursday)": "",
|
|
167
|
-
"Weekly (Start Saturday)": "",
|
|
168
|
-
"Weekly (Start Sunday)": "",
|
|
169
|
-
"Bi-weekly": "",
|
|
170
|
-
"Monthly": "",
|
|
171
|
-
"Bi-monthly": "",
|
|
163
|
+
"Daily": "Dagelijks",
|
|
164
|
+
"Weekly": "Wekelijks",
|
|
165
|
+
"Weekly (Start Wednesday)": "Wekelijks (Start op woensdag)",
|
|
166
|
+
"Weekly (Start Thursday)": "Wekelijks (Start op donderdag)",
|
|
167
|
+
"Weekly (Start Saturday)": "Wekelijks (Start op zaterdag)",
|
|
168
|
+
"Weekly (Start Sunday)": "Wekelijks (Start op zondag)",
|
|
169
|
+
"Bi-weekly": "Tweewekelijks",
|
|
170
|
+
"Monthly": "Maandelijks",
|
|
171
|
+
"Bi-monthly": "Tweemaandelijks",
|
|
172
172
|
"Quarterly": "",
|
|
173
173
|
"Six-monthly": "",
|
|
174
174
|
"Six-monthly April": "",
|
|
175
|
-
"Yearly": "",
|
|
176
|
-
"Financial year (Start November)": "",
|
|
177
|
-
"Financial year (Start October)": "",
|
|
178
|
-
"Financial year (Start July)": "",
|
|
179
|
-
"Financial year (Start April)": "",
|
|
180
|
-
"Today": "",
|
|
181
|
-
"Yesterday": "",
|
|
182
|
-
"Last 3 days": "",
|
|
183
|
-
"Last 7 days": "",
|
|
184
|
-
"Last 14 days": "",
|
|
175
|
+
"Yearly": "Jaarlijks",
|
|
176
|
+
"Financial year (Start November)": "Financieel jaar (Start november)",
|
|
177
|
+
"Financial year (Start October)": "Financieel jaar (Start oktober)",
|
|
178
|
+
"Financial year (Start July)": "Financieel jaar (Start juli)",
|
|
179
|
+
"Financial year (Start April)": "Financieel jaar (Start april)",
|
|
180
|
+
"Today": "Vandaag",
|
|
181
|
+
"Yesterday": "Gisteren",
|
|
182
|
+
"Last 3 days": "Laatste 3 dagen",
|
|
183
|
+
"Last 7 days": "Laatste 7 dagen",
|
|
184
|
+
"Last 14 days": "Laatste 14 dagen",
|
|
185
185
|
"Last 30 days": "",
|
|
186
186
|
"Last 60 days": "",
|
|
187
187
|
"Last 90 days": "",
|
|
188
188
|
"Last 180 days": "",
|
|
189
|
-
"This week": "",
|
|
190
|
-
"Last week": "",
|
|
191
|
-
"Last 4 weeks": "",
|
|
192
|
-
"Last 12 weeks": "",
|
|
193
|
-
"Last 52 weeks": "",
|
|
194
|
-
"Weeks this year": "",
|
|
189
|
+
"This week": "Deze week",
|
|
190
|
+
"Last week": "Laatste week",
|
|
191
|
+
"Last 4 weeks": "Laatste 4 weken",
|
|
192
|
+
"Last 12 weeks": "Laatste 12 weken",
|
|
193
|
+
"Last 52 weeks": "Laatste 52 weken",
|
|
194
|
+
"Weeks this year": "Weken dit jaar",
|
|
195
195
|
"This bi-week": "",
|
|
196
196
|
"Last bi-week": "",
|
|
197
197
|
"Last 4 bi-weeks": "",
|
|
198
|
-
"This month": "",
|
|
199
|
-
"Last month": "",
|
|
200
|
-
"Last 3 months": "",
|
|
201
|
-
"Last 6 months": "",
|
|
202
|
-
"Last 12 months": "",
|
|
203
|
-
"Months this year": "",
|
|
198
|
+
"This month": "Deze maand",
|
|
199
|
+
"Last month": "Laatste maand",
|
|
200
|
+
"Last 3 months": "Laatste 3 maanden",
|
|
201
|
+
"Last 6 months": "Laatste 6 maanden",
|
|
202
|
+
"Last 12 months": "Laatste 12 maanden",
|
|
203
|
+
"Months this year": "Maanden dit jaar",
|
|
204
204
|
"This bi-month": "",
|
|
205
205
|
"Last bi-month": "",
|
|
206
206
|
"Last 6 bi-months": "",
|
|
207
207
|
"Bi-months this year": "",
|
|
208
|
-
"This quarter": "",
|
|
209
|
-
"Last quarter": "",
|
|
210
|
-
"Last 4 quarters": "",
|
|
211
|
-
"Quarters this year": "",
|
|
212
|
-
"This six-month": "",
|
|
213
|
-
"Last six-month": "",
|
|
208
|
+
"This quarter": "Dit kwartier",
|
|
209
|
+
"Last quarter": "Laatste kwartier",
|
|
210
|
+
"Last 4 quarters": "Laatste 4 kwartieren",
|
|
211
|
+
"Quarters this year": "Kwartieren dit jaar",
|
|
212
|
+
"This six-month": "Dit halfjaar",
|
|
213
|
+
"Last six-month": "Laatste halfjaar",
|
|
214
214
|
"Last 2 six-month": "",
|
|
215
|
-
"This financial year": "",
|
|
216
|
-
"Last financial year": "",
|
|
217
|
-
"Last 5 financial years": "",
|
|
218
|
-
"This year": "",
|
|
219
|
-
"Last year": "",
|
|
220
|
-
"Last 5 years": "",
|
|
215
|
+
"This financial year": "Dit financieel jaar",
|
|
216
|
+
"Last financial year": "Laatste financieel jaar",
|
|
217
|
+
"Last 5 financial years": "Laatste 5 financiële jaren",
|
|
218
|
+
"This year": "Dit jaar",
|
|
219
|
+
"Last year": "Laatste jaar",
|
|
220
|
+
"Last 5 years": "Laatste 5 jaren",
|
|
221
221
|
"Last 10 years": "",
|
|
222
222
|
"Days": "",
|
|
223
223
|
"Weeks": "",
|
|
@@ -236,8 +236,8 @@
|
|
|
236
236
|
"Save translations": "",
|
|
237
237
|
"Could not load translations": "",
|
|
238
238
|
"Retry": "",
|
|
239
|
-
"Series": "",
|
|
240
|
-
"Category": "",
|
|
239
|
+
"Series": "Reeks",
|
|
240
|
+
"Category": "Categorie",
|
|
241
241
|
"Filter": "Filter",
|
|
242
242
|
"Columns": "",
|
|
243
243
|
"Rows": "",
|
|
@@ -298,22 +298,22 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Gegevens",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Organisatieëenheid",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
|
-
"Area": "",
|
|
304
|
+
"Area": "Oppervlakte",
|
|
305
305
|
"Stacked area": "",
|
|
306
|
-
"Bar": "",
|
|
307
|
-
"Stacked bar": "",
|
|
308
|
-
"Column": "",
|
|
309
|
-
"Year over year (column)": "",
|
|
310
|
-
"Stacked column": "",
|
|
311
|
-
"Gauge": "",
|
|
312
|
-
"Line": "",
|
|
306
|
+
"Bar": "Staaf",
|
|
307
|
+
"Stacked bar": "Gestapelde staaf",
|
|
308
|
+
"Column": "Kolom",
|
|
309
|
+
"Year over year (column)": "Jaar over jaar (kolom)",
|
|
310
|
+
"Stacked column": "Gestapelde kolom",
|
|
311
|
+
"Gauge": "Graadmeter",
|
|
312
|
+
"Line": "Lijn",
|
|
313
313
|
"Line list": "",
|
|
314
|
-
"Year over year (line)": "",
|
|
315
|
-
"Pie": "",
|
|
316
|
-
"Radar": "",
|
|
314
|
+
"Year over year (line)": "Jaar over jaar (lijn)",
|
|
315
|
+
"Pie": "Taart",
|
|
316
|
+
"Radar": "Radar",
|
|
317
317
|
"Scatter": "",
|
|
318
318
|
"Single value": "",
|
|
319
319
|
"All charts": "",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "دیتا",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "واحد سازمان",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "مالومات (ډاټا)",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "د سازمان واحد",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Dados",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Unidade organizacional",
|
|
302
302
|
"Assigned Categories": "Categorias atribuídas",
|
|
303
303
|
"Pivot table": "Tabela Dinâmica",
|
|
304
304
|
"Area": "Área",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Dados",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Unidade organizacional",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "",
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"{{thresholdFactor}} × Z-score low": "",
|
|
307
307
|
"{{thresholdFactor}} × Z-score high": "",
|
|
308
308
|
"Data": "Данные",
|
|
309
|
-
"Organisation
|
|
309
|
+
"Organisation unit": "Организационная единица",
|
|
310
310
|
"Assigned Categories": "Назначенные категории",
|
|
311
311
|
"Pivot table": "Сводная таблица",
|
|
312
312
|
"Area": "Диаграмма-области",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Data",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Organisationsenhet",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "Dadus",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "Unidade organizasional",
|
|
298
298
|
"Assigned Categories": "",
|
|
299
299
|
"Pivot table": "",
|
|
300
300
|
"Area": "",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "Иттилоот",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "Воҳиди сохторӣ",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "",
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"{{thresholdFactor}} × Z-score low": "",
|
|
307
307
|
"{{thresholdFactor}} × Z-score high": "",
|
|
308
308
|
"Data": "Дані",
|
|
309
|
-
"Organisation
|
|
309
|
+
"Organisation unit": "Організаційний підрозділ",
|
|
310
310
|
"Assigned Categories": "",
|
|
311
311
|
"Pivot table": "Зведена таблиця",
|
|
312
312
|
"Area": "",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"{{thresholdFactor}} × Z-score low": "",
|
|
299
299
|
"{{thresholdFactor}} × Z-score high": "",
|
|
300
300
|
"Data": "ڈیٹا",
|
|
301
|
-
"Organisation
|
|
301
|
+
"Organisation unit": "تنظیم یونٹ",
|
|
302
302
|
"Assigned Categories": "",
|
|
303
303
|
"Pivot table": "",
|
|
304
304
|
"Area": "رقبہ",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "Маълумот",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "Ташкилий бўлим",
|
|
298
298
|
"Assigned Categories": "Белгиланган Категориялар",
|
|
299
299
|
"Pivot table": "Солиштирма жадвал",
|
|
300
300
|
"Area": "Майдон",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "Maʼlumot",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "Ташкилий бирлик",
|
|
298
298
|
"Assigned Categories": "Belgilangan Kategoriyalar",
|
|
299
299
|
"Pivot table": "Solishtirma jadval",
|
|
300
300
|
"Area": "Maydon",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "",
|
|
296
296
|
"Data": "Lấy dữ liệu",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "Đơn vị",
|
|
298
298
|
"Assigned Categories": "Phân loại được chỉ định",
|
|
299
299
|
"Pivot table": "Bảng xoay",
|
|
300
300
|
"Area": "Khu vực",
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"{{thresholdFactor}} × Z-score low": "{{thresholdFactor}}×Z分数低",
|
|
295
295
|
"{{thresholdFactor}} × Z-score high": "{{thresholdFactor}}×Z分数高",
|
|
296
296
|
"Data": "数据",
|
|
297
|
-
"Organisation
|
|
297
|
+
"Organisation unit": "机构",
|
|
298
298
|
"Assigned Categories": "指定的分类",
|
|
299
299
|
"Pivot table": "透视表",
|
|
300
300
|
"Area": "面积",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.hasCustomAxes = exports.
|
|
6
|
+
exports.hasCustomAxes = exports.getAxisNameByLayoutType = exports.getAxisName = void 0;
|
|
7
7
|
|
|
8
8
|
var _index = _interopRequireDefault(require("../locales/index.js"));
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.REPORTING_RATE_ON_TIME = exports.REPORTING_RATE = exports.EXPECTED_REPORTS = exports.DATA_SETS_CONSTANTS = exports.ACTUAL_REPORTS_ON_TIME = exports.ACTUAL_REPORTS = void 0;
|
|
7
7
|
|
|
8
8
|
var _index = _interopRequireDefault(require("../locales/index.js"));
|
|
9
9
|
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.dataTypeMap = exports.TOTALS = exports.SUB_GROUP_METRIC = exports.SUB_GROUP_DETAIL = exports.DIMENSION_TYPE_PROGRAM_INDICATOR = exports.DIMENSION_TYPE_PROGRAM_DATA_ELEMENT = exports.DIMENSION_TYPE_PROGRAM_ATTRIBUTE = exports.DIMENSION_TYPE_PERIOD = exports.DIMENSION_TYPE_ORGANISATION_UNIT_GROUP_SET = exports.DIMENSION_TYPE_ORGANISATION_UNIT = exports.DIMENSION_TYPE_INDICATOR = exports.DIMENSION_TYPE_EVENT_DATA_ITEM = exports.DIMENSION_TYPE_DATA_SET = exports.DIMENSION_TYPE_DATA_ELEMENT_OPERAND = exports.DIMENSION_TYPE_DATA_ELEMENT_GROUP_SET = exports.DIMENSION_TYPE_DATA_ELEMENT = exports.DIMENSION_TYPE_DATA = exports.DIMENSION_TYPE_CATEGORY_OPTION_GROUP_SET = exports.DIMENSION_TYPE_CATEGORY = exports.DIMENSION_TYPE_ALL = exports.DETAIL = exports.DEFAULT_DATATYPE_ID = void 0;
|
|
7
7
|
exports.defaultGroupDetail = defaultGroupDetail;
|
|
8
|
-
exports.
|
|
8
|
+
exports.defaultGroupId = defaultGroupId;
|
|
9
9
|
|
|
10
10
|
var _index = _interopRequireDefault(require("../locales/index.js"));
|
|
11
11
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.TRANSFER_SELECTED_WIDTH = exports.TRANSFER_OPTIONS_WIDTH = exports.TRANSFER_HEIGHT = void 0;
|
|
7
7
|
const TRANSFER_OPTIONS_WIDTH = '420px';
|
|
8
8
|
exports.TRANSFER_OPTIONS_WIDTH = TRANSFER_OPTIONS_WIDTH;
|
|
9
9
|
const TRANSFER_SELECTED_WIDTH = '298px';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.mergeFontStyleWithDefault = exports.getTextAlignOptions = exports.getFontSizeOptions = exports.deleteFontStyleOption = exports.defaultFontStyle = exports.TEXT_ALIGN_RIGHT = exports.TEXT_ALIGN_LEFT = exports.TEXT_ALIGN_CENTER = exports.FONT_STYLE_VISUALIZATION_TITLE = exports.FONT_STYLE_VISUALIZATION_SUBTITLE = exports.FONT_STYLE_VERTICAL_AXIS_TITLE = exports.FONT_STYLE_REGRESSION_LINE_LABEL = exports.FONT_STYLE_OPTION_UNDERLINE = exports.FONT_STYLE_OPTION_TEXT_COLOR = exports.FONT_STYLE_OPTION_TEXT_ALIGN = exports.FONT_STYLE_OPTION_ITALIC = exports.FONT_STYLE_OPTION_FONT_SIZE = exports.FONT_STYLE_OPTION_FONT = exports.FONT_STYLE_OPTION_BOLD = exports.FONT_STYLE_LEGEND = exports.FONT_STYLE_HORIZONTAL_AXIS_TITLE = exports.FONT_STYLE_AXIS_LABELS = void 0;
|
|
7
7
|
|
|
8
8
|
var _ui = require("@dhis2/ui");
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.DEFAULT_AXIS_IDS = exports.AXIS_ID_YEAR_OVER_YEAR_SERIES = exports.AXIS_ID_YEAR_OVER_YEAR_CATEGORY = exports.AXIS_ID_ROWS = exports.AXIS_ID_FILTERS = exports.AXIS_ID_COLUMNS = exports.AXIS = exports.ALL_AXIS_IDS = void 0;
|
|
7
7
|
// Axis
|
|
8
8
|
const AXIS = {
|
|
9
9
|
defaultValue: [],
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.DIMENSION_PROP_REPETITION = exports.DIMENSION_PROP_PROGRAM_STAGE = exports.DIMENSION_PROP_LEGEND_SET = exports.DIMENSION_PROP_ITEMS = exports.DIMENSION_PROP_ID = exports.DIMENSION_PROP_FILTER = exports.DIMENSION_PROPS = exports.DIMENSION = void 0;
|
|
7
7
|
|
|
8
8
|
var _isObject = _interopRequireDefault(require("lodash/isObject"));
|
|
9
9
|
|
|
@@ -7,7 +7,9 @@ exports.dimensionCreate = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _dimension = require("./dimension.js");
|
|
9
9
|
|
|
10
|
-
const dimensionCreate = (dimensionId
|
|
10
|
+
const dimensionCreate = function (dimensionId) {
|
|
11
|
+
let itemIds = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
12
|
+
let args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
11
13
|
const dimension = {
|
|
12
14
|
[_dimension.DIMENSION_PROP_ID.name]: dimensionId,
|
|
13
15
|
...(itemIds.length && {
|
|
@@ -9,9 +9,11 @@ var _dimension = require("./dimension.js");
|
|
|
9
9
|
|
|
10
10
|
var _dimensionIsEmpty = require("./dimensionIsEmpty.js");
|
|
11
11
|
|
|
12
|
-
const dimensionIsValid = (dimension
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
const dimensionIsValid = function (dimension) {
|
|
13
|
+
let {
|
|
14
|
+
requireItems
|
|
15
|
+
} = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
16
|
+
|
|
15
17
|
if (!_dimension.DIMENSION.isValid(dimension)) {
|
|
16
18
|
return false;
|
|
17
19
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.ITEM_PROP_ID = exports.ITEM_PROPS = exports.ITEM = void 0;
|
|
7
7
|
|
|
8
8
|
var _isObject = _interopRequireDefault(require("lodash/isObject"));
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.TEST_LAYOUT = exports.
|
|
6
|
+
exports.TEST_LAYOUT = exports.TEST_ITEM_INVALID_2 = exports.TEST_ITEM_INVALID_1 = exports.TEST_ITEM_ID_6 = exports.TEST_ITEM_ID_5 = exports.TEST_ITEM_ID_4 = exports.TEST_ITEM_ID_3 = exports.TEST_ITEM_ID_2 = exports.TEST_ITEM_ID_1 = exports.TEST_ITEM_6 = exports.TEST_ITEM_5 = exports.TEST_ITEM_4 = exports.TEST_ITEM_3 = exports.TEST_ITEM_2 = exports.TEST_ITEM_1 = exports.TEST_ITEMS_IN_LAYOUT = exports.TEST_ITEMS_IN_AXIS_2 = exports.TEST_ITEMS_IN_AXIS_1 = exports.TEST_DIMENSION_INVALID_ITEMS_1 = exports.TEST_DIMENSION_INVALID_ID_2 = exports.TEST_DIMENSION_INVALID_ID_1 = exports.TEST_DIMENSION_EMPTY_1 = exports.TEST_DIMENSION_5 = exports.TEST_DIMENSION_4 = exports.TEST_DIMENSION_3 = exports.TEST_DIMENSION_2 = exports.TEST_DIMENSION_1 = exports.TEST_DIMENSIONS_IN_LAYOUT = exports.TEST_AXIS_ROWS = exports.TEST_AXIS_IDS_IN_LAYOUT = exports.TEST_AXIS_FILTERS = exports.TEST_AXIS_EMPTY = exports.TEST_AXIS_COLUMNS = exports.TEST_AXES_IN_LAYOUT = exports.DIMENSION_ID_DYNAMIC = void 0;
|
|
7
7
|
|
|
8
8
|
var _relativePeriods = require("../../components/PeriodDimension/utils/relativePeriods.js");
|
|
9
9
|
|