@dhis2/analytics 28.0.3 → 28.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/__demo__/DataDimension.stories.js +1 -2
- package/build/cjs/__demo__/Filter.stories.js +1 -2
- package/build/cjs/__demo__/FixedPeriodSelect.stories.js +1 -2
- package/build/cjs/__demo__/OpenFileDialog.stories.js +19 -1
- package/build/cjs/__demo__/OrgUnitDimension.stories.js +1 -2
- package/build/cjs/__demo__/PivotTable.stories.js +166 -224
- package/build/cjs/__demo__/ScatterPlotPdfExport.stories.js +1 -2
- package/build/cjs/__demo__/SingleValue.stories.js +1 -2
- package/build/cjs/__demo__/Toolbar.stories.js +1 -2
- package/build/cjs/api/__tests__/dimensions.spec.js +1 -2
- package/build/cjs/api/analytics/Analytics.js +8 -9
- package/build/cjs/api/analytics/AnalyticsBase.js +58 -77
- package/build/cjs/api/analytics/AnalyticsRequest.js +1 -2
- package/build/cjs/api/analytics/AnalyticsRequestBase.js +18 -21
- package/build/cjs/api/analytics/AnalyticsRequestPropertiesMixin.js +19 -38
- package/build/cjs/api/analytics/AnalyticsResponseHeader.js +5 -7
- package/build/cjs/api/analytics/__tests__/AnalyticsBase.spec.js +9 -12
- package/build/cjs/api/analytics/__tests__/AnalyticsRequest.spec.js +8 -2
- package/build/cjs/api/analytics/utils.js +11 -17
- package/build/cjs/api/dimensions.js +119 -148
- package/build/cjs/api/expression.js +39 -60
- package/build/cjs/api/organisationUnits.js +23 -35
- package/build/cjs/components/AboutAOUnit/AboutAOUnit.js +12 -20
- package/build/cjs/components/CachedDataQueryProvider.js +7 -9
- package/build/cjs/components/DashboardPluginWrapper/DashboardPluginWrapper.js +18 -22
- package/build/cjs/components/DataDimension/Calculation/CalculationModal.js +44 -61
- package/build/cjs/components/DataDimension/Calculation/DataElementOption.js +5 -6
- package/build/cjs/components/DataDimension/Calculation/DataElementSelector.js +29 -38
- package/build/cjs/components/DataDimension/Calculation/DndContext.js +29 -37
- package/build/cjs/components/DataDimension/Calculation/DraggingItem.js +5 -6
- package/build/cjs/components/DataDimension/Calculation/DropZone.js +4 -5
- package/build/cjs/components/DataDimension/Calculation/FormulaField.js +29 -32
- package/build/cjs/components/DataDimension/Calculation/FormulaItem.js +14 -16
- package/build/cjs/components/DataDimension/Calculation/MathOperatorSelector.js +23 -29
- package/build/cjs/components/DataDimension/Calculation/Operator.js +6 -7
- package/build/cjs/components/DataDimension/DataDimension.js +20 -32
- package/build/cjs/components/DataDimension/Info/CalculationInfo.js +14 -22
- package/build/cjs/components/DataDimension/Info/DataElementInfo.js +23 -36
- package/build/cjs/components/DataDimension/Info/DataElementOperandInfo.js +30 -44
- package/build/cjs/components/DataDimension/Info/DataSetInfo.js +26 -39
- package/build/cjs/components/DataDimension/Info/EventDataItemInfo.js +21 -34
- package/build/cjs/components/DataDimension/Info/IndicatorInfo.js +21 -32
- package/build/cjs/components/DataDimension/Info/InfoPopover.js +6 -7
- package/build/cjs/components/DataDimension/Info/InfoTable.js +39 -52
- package/build/cjs/components/DataDimension/Info/OptionInfo.js +13 -20
- package/build/cjs/components/DataDimension/Info/ProgramIndicatorInfo.js +46 -58
- package/build/cjs/components/DataDimension/ItemOptionsSelector/ItemOptionsSelector.js +22 -32
- package/build/cjs/components/DataDimension/ItemSelector/DataTypeSelector.js +6 -7
- package/build/cjs/components/DataDimension/ItemSelector/DetailSelector.js +5 -6
- package/build/cjs/components/DataDimension/ItemSelector/GroupSelector.js +10 -12
- package/build/cjs/components/DataDimension/ItemSelector/ItemSelector.js +86 -104
- package/build/cjs/components/DataDimension/ItemSelector/MetricSelector.js +5 -6
- package/build/cjs/components/DataDimension/SourceEmptyPlaceholder.js +10 -13
- package/build/cjs/components/DataDimension/TransferOption.js +35 -39
- package/build/cjs/components/DimensionMenu.js +13 -14
- package/build/cjs/components/DimensionsPanel/DimensionsPanel.js +8 -9
- package/build/cjs/components/DimensionsPanel/List/DimensionItem.js +12 -13
- package/build/cjs/components/DimensionsPanel/List/DimensionList.js +12 -11
- package/build/cjs/components/DimensionsPanel/List/OptionsButton.js +8 -11
- package/build/cjs/components/DimensionsPanel/List/RecommendedIcon.js +10 -13
- package/build/cjs/components/DimensionsPanel/List/__tests__/DimensionItem.spec.js +48 -41
- package/build/cjs/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +110 -114
- package/build/cjs/components/DimensionsPanel/__tests__/DimensionsPanel.spec.js +36 -33
- package/build/cjs/components/DynamicDimension/DynamicDimension.js +9 -13
- package/build/cjs/components/DynamicDimension/ItemSelector.js +25 -38
- package/build/cjs/components/FileMenu/DeleteDialog.js +11 -16
- package/build/cjs/components/FileMenu/FileMenu.js +19 -30
- package/build/cjs/components/FileMenu/GetLinkDialog.js +7 -7
- package/build/cjs/components/FileMenu/RenameDialog.js +13 -21
- package/build/cjs/components/FileMenu/SaveAsDialog.js +13 -21
- package/build/cjs/components/FileMenu/__tests__/DeleteDialog.spec.js +24 -27
- package/build/cjs/components/FileMenu/__tests__/FileMenu.spec.js +55 -31
- package/build/cjs/components/FileMenu/__tests__/GetLinkDialog.spec.js +35 -39
- package/build/cjs/components/FileMenu/__tests__/RenameDialog.spec.js +17 -11
- package/build/cjs/components/FileMenu/__tests__/SaveAsDialog.spec.js +44 -37
- package/build/cjs/components/FileMenu/utils.js +10 -12
- package/build/cjs/components/Filter/Filter.js +21 -27
- package/build/cjs/components/Filter/__tests__/Filter.spec.js +29 -34
- package/build/cjs/components/Interpretations/InterpretationModal/Comment.js +8 -10
- package/build/cjs/components/Interpretations/InterpretationModal/CommentAddForm.js +10 -15
- package/build/cjs/components/Interpretations/InterpretationModal/CommentDeleteButton.js +10 -15
- package/build/cjs/components/Interpretations/InterpretationModal/CommentUpdateForm.js +12 -17
- package/build/cjs/components/Interpretations/InterpretationModal/InterpretationModal.js +19 -25
- package/build/cjs/components/Interpretations/InterpretationModal/InterpretationThread.js +12 -14
- package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationForm.js +12 -17
- package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationList.js +10 -11
- package/build/cjs/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +23 -33
- package/build/cjs/components/Interpretations/common/Interpretation/Interpretation.js +13 -15
- package/build/cjs/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +7 -11
- package/build/cjs/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +5 -7
- package/build/cjs/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +15 -23
- package/build/cjs/components/Interpretations/common/Interpretation/useLike.js +5 -6
- package/build/cjs/components/Interpretations/common/Message/Message.js +6 -7
- package/build/cjs/components/Interpretations/common/Message/MessageButtonStrip.js +8 -11
- package/build/cjs/components/Interpretations/common/Message/MessageEditorContainer.js +18 -21
- package/build/cjs/components/Interpretations/common/Message/MessageIconButton.js +34 -40
- package/build/cjs/components/Interpretations/common/Message/MessageInput.js +1 -2
- package/build/cjs/components/Interpretations/common/Message/MessageStatsBar.js +8 -11
- package/build/cjs/components/LegendKey/LegendKey.js +3 -4
- package/build/cjs/components/OfflineTooltip.js +18 -26
- package/build/cjs/components/OpenFileDialog/CreatedByFilter.js +28 -26
- package/build/cjs/components/OpenFileDialog/CustomSelectOption.js +23 -26
- package/build/cjs/components/OpenFileDialog/DateField.js +3 -4
- package/build/cjs/components/OpenFileDialog/FileList.js +19 -22
- package/build/cjs/components/OpenFileDialog/NameFilter.js +15 -21
- package/build/cjs/components/OpenFileDialog/OpenFileDialog.js +50 -79
- package/build/cjs/components/OpenFileDialog/PaginationControls.js +22 -28
- package/build/cjs/components/OpenFileDialog/VisTypeFilter.js +65 -36
- package/build/cjs/components/OpenFileDialog/__tests__/OpenFileDialog.spec.js +51 -0
- package/build/cjs/components/Options/VisualizationOptions.js +35 -46
- package/build/cjs/components/OrgUnitDimension/OrgUnitDimension.js +38 -60
- package/build/cjs/components/OrgUnitDimension/__tests__/OrgUnitDimension.spec.js +78 -44
- package/build/cjs/components/PeriodDimension/FixedPeriodFilter.js +17 -25
- package/build/cjs/components/PeriodDimension/FixedPeriodSelect.js +15 -21
- package/build/cjs/components/PeriodDimension/PeriodDimension.js +9 -12
- package/build/cjs/components/PeriodDimension/PeriodTransfer.js +49 -63
- package/build/cjs/components/PeriodDimension/RelativePeriodFilter.js +25 -30
- package/build/cjs/components/PeriodDimension/__tests__/FixedPeriodSingleSelect.spec.js +14 -21
- package/build/cjs/components/PeriodDimension/__tests__/PeriodDimension.spec.js +27 -23
- package/build/cjs/components/PeriodDimension/utils/fixedPeriods.js +6 -7
- package/build/cjs/components/PeriodDimension/utils/index.js +1 -5
- package/build/cjs/components/PivotTable/PivotTable.js +8 -10
- package/build/cjs/components/PivotTable/PivotTableBody.js +20 -29
- package/build/cjs/components/PivotTable/PivotTableCell.js +8 -12
- package/build/cjs/components/PivotTable/PivotTableClippedAxis.js +14 -17
- package/build/cjs/components/PivotTable/PivotTableColumnHeaderCell.js +7 -8
- package/build/cjs/components/PivotTable/PivotTableColumnHeaders.js +22 -29
- package/build/cjs/components/PivotTable/PivotTableContainer.js +5 -6
- package/build/cjs/components/PivotTable/PivotTableDimensionLabelCell.js +4 -5
- package/build/cjs/components/PivotTable/PivotTableEmptyCell.js +3 -4
- package/build/cjs/components/PivotTable/PivotTableEmptyRow.js +4 -5
- package/build/cjs/components/PivotTable/PivotTableEngineContext.js +5 -7
- package/build/cjs/components/PivotTable/PivotTableHead.js +13 -16
- package/build/cjs/components/PivotTable/PivotTableHeaderCell.js +8 -9
- package/build/cjs/components/PivotTable/PivotTableRow.js +20 -27
- package/build/cjs/components/PivotTable/PivotTableRowHeaderCell.js +5 -6
- package/build/cjs/components/PivotTable/PivotTableSortIcon.js +4 -5
- package/build/cjs/components/PivotTable/PivotTableTitleRow.js +19 -24
- package/build/cjs/components/PivotTable/PivotTableTitleRows.js +4 -5
- package/build/cjs/components/PivotTable/PivotTableValueCell.js +6 -8
- package/build/cjs/components/RichText/Editor/Editor.js +70 -85
- package/build/cjs/components/RichText/Editor/__tests__/Editor.spec.js +6 -7
- package/build/cjs/components/RichText/Parser/Parser.js +5 -10
- package/build/cjs/components/RichText/Parser/__tests__/MdParser.spec.js +1 -1
- package/build/cjs/components/RichText/Parser/__tests__/Parser.spec.js +22 -23
- package/build/cjs/components/Toolbar/HoverMenuBar/HoverMenuBar.js +20 -24
- package/build/cjs/components/Toolbar/HoverMenuBar/HoverMenuDropdown.js +8 -13
- package/build/cjs/components/Toolbar/HoverMenuBar/HoverMenuList.js +9 -17
- package/build/cjs/components/Toolbar/HoverMenuBar/HoverMenuListItem.js +11 -16
- package/build/cjs/components/Toolbar/HoverMenuBar/__tests__/HoverMenuBar.spec.js +56 -47
- package/build/cjs/components/Toolbar/HoverMenuBar/__tests__/HoverMenuDropdown.spec.js +8 -8
- package/build/cjs/components/Toolbar/HoverMenuBar/__tests__/HoverMenuList.spec.js +30 -23
- package/build/cjs/components/Toolbar/HoverMenuBar/__tests__/HoverMenuListItem.spec.js +23 -17
- package/build/cjs/components/Toolbar/HoverMenuBar/__tests__/__snapshots__/HoverMenuList.spec.js.snap +63 -0
- package/build/cjs/components/Toolbar/InterpretationsAndDetailsToggler.js +17 -21
- package/build/cjs/components/Toolbar/Toolbar.js +10 -16
- package/build/cjs/components/Toolbar/ToolbarSidebar.js +12 -18
- package/build/cjs/components/Toolbar/UpdateButton.js +18 -24
- package/build/cjs/components/Toolbar/__tests__/InterpretationsAndDetailsToggler.spec.js +19 -18
- package/build/cjs/components/Toolbar/__tests__/Toolbar.spec.js +8 -8
- package/build/cjs/components/Toolbar/__tests__/ToolbarSidebar.spec.js +14 -11
- package/build/cjs/components/Toolbar/__tests__/UpdateButton.spec.js +16 -14
- package/build/cjs/components/TransferOption.js +14 -15
- package/build/cjs/components/TranslationDialog/TranslationModal/LocalesSelect.js +19 -27
- package/build/cjs/components/TranslationDialog/TranslationModal/TranslationForm.js +17 -25
- package/build/cjs/components/TranslationDialog/TranslationModal/TranslationModal.js +9 -10
- package/build/cjs/components/TranslationDialog/TranslationModal/TranslationModalActions.js +18 -27
- package/build/cjs/components/TranslationDialog/TranslationModal/__tests__/TranslationModal.spec.js +25 -16
- package/build/cjs/components/TranslationDialog/TranslationModal/useTranslationsResults.js +3 -4
- package/build/cjs/components/UserMention/UserList.js +6 -7
- package/build/cjs/components/UserMention/UserMentionWrapper.js +13 -20
- package/build/cjs/components/UserMention/useUserSearchResults.js +12 -16
- package/build/cjs/components/VisTypeIcon.js +5 -6
- package/build/cjs/index.js +38 -39
- package/build/cjs/locales/ar_IQ/translations.json +20 -11
- package/build/cjs/locales/cs/translations.json +2 -0
- package/build/cjs/locales/en/translations.json +1 -0
- package/build/cjs/locales/es/translations.json +2 -0
- package/build/cjs/locales/fr/translations.json +2 -0
- package/build/cjs/locales/id/translations.json +20 -11
- package/build/cjs/locales/index.js +62 -62
- package/build/cjs/locales/lo/translations.json +2 -0
- package/build/cjs/locales/nb/translations.json +2 -0
- package/build/cjs/locales/prs/translations.json +2 -0
- package/build/cjs/locales/ps/translations.json +2 -0
- package/build/cjs/locales/pt/translations.json +2 -0
- package/build/cjs/locales/pt_BR/translations.json +2 -0
- package/build/cjs/locales/ru/translations.json +2 -0
- package/build/cjs/locales/si/translations.json +20 -11
- package/build/cjs/locales/sv/translations.json +20 -11
- package/build/cjs/locales/tet/translations.json +20 -11
- package/build/cjs/locales/tg/translations.json +2 -0
- package/build/cjs/locales/uk/translations.json +2 -0
- package/build/cjs/locales/ur/translations.json +2 -0
- package/build/cjs/locales/uz_UZ_Cyrl/translations.json +2 -0
- package/build/cjs/locales/uz_UZ_Latn/translations.json +4 -2
- package/build/cjs/locales/vi/translations.json +2 -0
- package/build/cjs/locales/zh/translations.json +2 -0
- package/build/cjs/locales/zh_CN/translations.json +17 -15
- package/build/cjs/modules/__tests__/expressions.spec.js +4 -5
- package/build/cjs/modules/__tests__/isNumeric.spec.js +33 -0
- package/build/cjs/modules/dimensionListItem.js +4 -5
- package/build/cjs/modules/expressions.js +3 -9
- package/build/cjs/modules/getPWAInstallationStatus.js +7 -9
- package/build/cjs/modules/layout/dimensionCreate.js +1 -3
- package/build/cjs/modules/layout/dimensionIsValid.js +3 -4
- package/build/cjs/modules/legends.js +5 -6
- package/build/cjs/modules/outliers/index.js +5 -6
- package/build/cjs/modules/outliers/iqr.js +4 -6
- package/build/cjs/modules/outliers/modZScore.js +6 -14
- package/build/cjs/modules/outliers/zScore.js +3 -4
- package/build/cjs/modules/pivotTable/AdaptiveClippingController.js +12 -16
- package/build/cjs/modules/pivotTable/PivotTableEngine.js +48 -59
- package/build/cjs/modules/pivotTable/clipAxis.js +7 -8
- package/build/cjs/modules/pivotTable/clipPartitionedAxis.js +9 -10
- package/build/cjs/modules/pivotTable/getHeaderForDisplay.js +8 -9
- package/build/cjs/modules/pivotTable/measureText.js +7 -9
- package/build/cjs/modules/pivotTable/useParentSize.js +1 -2
- package/build/cjs/modules/pivotTable/useScrollPosition.js +1 -2
- package/build/cjs/modules/pivotTable/useTableClipping.js +6 -7
- package/build/cjs/modules/relativeItems/index.js +1 -4
- package/build/cjs/modules/renderValue.js +1 -2
- package/build/cjs/modules/utils.js +11 -2
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/addTrendLines.js +3 -8
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/axis.js +7 -10
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/customAxes.js +2 -5
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/customSVGOptions/index.js +7 -8
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/customSVGOptions/singleValue/getSingleValueBackgroundColor.js +1 -2
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/customSVGOptions/singleValue/index.js +6 -7
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/getFormatter.js +2 -3
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/getSteps.js +2 -3
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/getTrimmedConfig.js +3 -4
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/index.js +8 -10
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/legend.js +6 -7
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/legendSet.js +22 -26
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/plotOptions.js +8 -9
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/series/index.js +18 -20
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/series/pie.js +1 -4
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/subtitle/index.js +1 -2
- package/build/cjs/visualizations/config/adapters/dhis_highcharts/yAxis/gauge.js +1 -3
- package/build/cjs/visualizations/config/index.js +11 -12
- package/build/cjs/visualizations/config/validators/dhis/index.js +3 -4
- package/build/cjs/visualizations/index.js +1 -4
- package/build/cjs/visualizations/store/adapters/dhis_highcharts/index.js +7 -8
- package/build/cjs/visualizations/store/index.js +15 -17
- package/build/cjs/visualizations/store/validators/dhis/index.js +5 -6
- package/build/cjs/visualizations/util/getFilterText.js +3 -6
- package/build/cjs/visualizations/util/shouldUseContrastColor.js +1 -2
- package/build/es/__demo__/OpenFileDialog.stories.js +17 -0
- package/build/es/__demo__/PivotTable.stories.js +165 -222
- package/build/es/api/__tests__/dimensions.spec.js +1 -2
- package/build/es/api/analytics/Analytics.js +8 -9
- package/build/es/api/analytics/AnalyticsBase.js +58 -77
- package/build/es/api/analytics/AnalyticsRequest.js +1 -2
- package/build/es/api/analytics/AnalyticsRequestBase.js +18 -21
- package/build/es/api/analytics/AnalyticsRequestPropertiesMixin.js +19 -38
- package/build/es/api/analytics/AnalyticsResponseHeader.js +5 -7
- package/build/es/api/analytics/__tests__/AnalyticsBase.spec.js +8 -10
- package/build/es/api/analytics/__tests__/AnalyticsRequest.spec.js +8 -2
- package/build/es/api/analytics/utils.js +11 -17
- package/build/es/api/dimensions.js +119 -148
- package/build/es/api/expression.js +39 -60
- package/build/es/api/organisationUnits.js +23 -35
- package/build/es/components/AboutAOUnit/AboutAOUnit.js +11 -18
- package/build/es/components/CachedDataQueryProvider.js +6 -7
- package/build/es/components/DashboardPluginWrapper/DashboardPluginWrapper.js +17 -20
- package/build/es/components/DataDimension/Calculation/CalculationModal.js +43 -59
- package/build/es/components/DataDimension/Calculation/DataElementOption.js +5 -6
- package/build/es/components/DataDimension/Calculation/DataElementSelector.js +28 -36
- package/build/es/components/DataDimension/Calculation/DndContext.js +28 -35
- package/build/es/components/DataDimension/Calculation/DraggingItem.js +5 -6
- package/build/es/components/DataDimension/Calculation/DropZone.js +4 -5
- package/build/es/components/DataDimension/Calculation/FormulaField.js +29 -32
- package/build/es/components/DataDimension/Calculation/FormulaItem.js +13 -14
- package/build/es/components/DataDimension/Calculation/MathOperatorSelector.js +23 -29
- package/build/es/components/DataDimension/Calculation/Operator.js +6 -7
- package/build/es/components/DataDimension/DataDimension.js +19 -30
- package/build/es/components/DataDimension/Info/CalculationInfo.js +13 -20
- package/build/es/components/DataDimension/Info/DataElementInfo.js +23 -36
- package/build/es/components/DataDimension/Info/DataElementOperandInfo.js +29 -42
- package/build/es/components/DataDimension/Info/DataSetInfo.js +26 -39
- package/build/es/components/DataDimension/Info/EventDataItemInfo.js +21 -34
- package/build/es/components/DataDimension/Info/IndicatorInfo.js +20 -30
- package/build/es/components/DataDimension/Info/InfoPopover.js +6 -7
- package/build/es/components/DataDimension/Info/InfoTable.js +39 -52
- package/build/es/components/DataDimension/Info/OptionInfo.js +13 -20
- package/build/es/components/DataDimension/Info/ProgramIndicatorInfo.js +45 -56
- package/build/es/components/DataDimension/ItemOptionsSelector/ItemOptionsSelector.js +21 -30
- package/build/es/components/DataDimension/ItemSelector/DataTypeSelector.js +6 -7
- package/build/es/components/DataDimension/ItemSelector/DetailSelector.js +5 -6
- package/build/es/components/DataDimension/ItemSelector/GroupSelector.js +9 -10
- package/build/es/components/DataDimension/ItemSelector/ItemSelector.js +85 -102
- package/build/es/components/DataDimension/ItemSelector/MetricSelector.js +5 -6
- package/build/es/components/DataDimension/SourceEmptyPlaceholder.js +10 -13
- package/build/es/components/DataDimension/TransferOption.js +35 -39
- package/build/es/components/DimensionMenu.js +13 -14
- package/build/es/components/DimensionsPanel/DimensionsPanel.js +7 -7
- package/build/es/components/DimensionsPanel/List/DimensionItem.js +11 -11
- package/build/es/components/DimensionsPanel/List/DimensionList.js +11 -9
- package/build/es/components/DimensionsPanel/List/OptionsButton.js +8 -11
- package/build/es/components/DimensionsPanel/List/RecommendedIcon.js +10 -13
- package/build/es/components/DimensionsPanel/List/__tests__/DimensionItem.spec.js +47 -40
- package/build/es/components/DimensionsPanel/List/__tests__/__snapshots__/DimensionItem.spec.js.snap +110 -114
- package/build/es/components/DimensionsPanel/__tests__/DimensionsPanel.spec.js +35 -32
- package/build/es/components/DynamicDimension/DynamicDimension.js +9 -13
- package/build/es/components/DynamicDimension/ItemSelector.js +24 -36
- package/build/es/components/FileMenu/DeleteDialog.js +10 -14
- package/build/es/components/FileMenu/FileMenu.js +18 -28
- package/build/es/components/FileMenu/GetLinkDialog.js +7 -7
- package/build/es/components/FileMenu/RenameDialog.js +12 -19
- package/build/es/components/FileMenu/SaveAsDialog.js +12 -19
- package/build/es/components/FileMenu/__tests__/DeleteDialog.spec.js +23 -26
- package/build/es/components/FileMenu/__tests__/FileMenu.spec.js +56 -32
- package/build/es/components/FileMenu/__tests__/GetLinkDialog.spec.js +34 -38
- package/build/es/components/FileMenu/__tests__/RenameDialog.spec.js +18 -12
- package/build/es/components/FileMenu/__tests__/SaveAsDialog.spec.js +43 -36
- package/build/es/components/FileMenu/utils.js +10 -12
- package/build/es/components/Filter/Filter.js +21 -27
- package/build/es/components/Filter/__tests__/Filter.spec.js +28 -33
- package/build/es/components/Interpretations/InterpretationModal/Comment.js +7 -8
- package/build/es/components/Interpretations/InterpretationModal/CommentAddForm.js +9 -13
- package/build/es/components/Interpretations/InterpretationModal/CommentDeleteButton.js +9 -13
- package/build/es/components/Interpretations/InterpretationModal/CommentUpdateForm.js +11 -15
- package/build/es/components/Interpretations/InterpretationModal/InterpretationModal.js +18 -23
- package/build/es/components/Interpretations/InterpretationModal/InterpretationThread.js +11 -12
- package/build/es/components/Interpretations/InterpretationsUnit/InterpretationForm.js +11 -15
- package/build/es/components/Interpretations/InterpretationsUnit/InterpretationList.js +10 -11
- package/build/es/components/Interpretations/InterpretationsUnit/InterpretationsUnit.js +22 -31
- package/build/es/components/Interpretations/common/Interpretation/Interpretation.js +12 -13
- package/build/es/components/Interpretations/common/Interpretation/InterpretationDeleteButton.js +7 -11
- package/build/es/components/Interpretations/common/Interpretation/InterpretationSharingLink.js +4 -5
- package/build/es/components/Interpretations/common/Interpretation/InterpretationUpdateForm.js +14 -21
- package/build/es/components/Interpretations/common/Interpretation/useLike.js +5 -6
- package/build/es/components/Interpretations/common/Message/Message.js +6 -7
- package/build/es/components/Interpretations/common/Message/MessageButtonStrip.js +8 -11
- package/build/es/components/Interpretations/common/Message/MessageEditorContainer.js +18 -21
- package/build/es/components/Interpretations/common/Message/MessageIconButton.js +34 -40
- package/build/es/components/Interpretations/common/Message/MessageStatsBar.js +8 -11
- package/build/es/components/LegendKey/LegendKey.js +3 -4
- package/build/es/components/OfflineTooltip.js +18 -26
- package/build/es/components/OpenFileDialog/CreatedByFilter.js +26 -25
- package/build/es/components/OpenFileDialog/CustomSelectOption.js +23 -26
- package/build/es/components/OpenFileDialog/DateField.js +3 -4
- package/build/es/components/OpenFileDialog/FileList.js +19 -22
- package/build/es/components/OpenFileDialog/NameFilter.js +15 -21
- package/build/es/components/OpenFileDialog/OpenFileDialog.js +49 -78
- package/build/es/components/OpenFileDialog/PaginationControls.js +22 -28
- package/build/es/components/OpenFileDialog/VisTypeFilter.js +64 -36
- package/build/es/components/OpenFileDialog/__tests__/OpenFileDialog.spec.js +49 -0
- package/build/es/components/Options/VisualizationOptions.js +34 -44
- package/build/es/components/OrgUnitDimension/OrgUnitDimension.js +37 -58
- package/build/es/components/OrgUnitDimension/__tests__/OrgUnitDimension.spec.js +77 -43
- package/build/es/components/PeriodDimension/FixedPeriodFilter.js +17 -25
- package/build/es/components/PeriodDimension/FixedPeriodSelect.js +14 -19
- package/build/es/components/PeriodDimension/PeriodDimension.js +9 -12
- package/build/es/components/PeriodDimension/PeriodTransfer.js +48 -61
- package/build/es/components/PeriodDimension/RelativePeriodFilter.js +25 -30
- package/build/es/components/PeriodDimension/__tests__/FixedPeriodSingleSelect.spec.js +13 -20
- package/build/es/components/PeriodDimension/__tests__/PeriodDimension.spec.js +26 -22
- package/build/es/components/PeriodDimension/utils/fixedPeriods.js +6 -7
- package/build/es/components/PeriodDimension/utils/index.js +1 -5
- package/build/es/components/PivotTable/PivotTable.js +7 -8
- package/build/es/components/PivotTable/PivotTableBody.js +20 -29
- package/build/es/components/PivotTable/PivotTableCell.js +8 -12
- package/build/es/components/PivotTable/PivotTableClippedAxis.js +14 -17
- package/build/es/components/PivotTable/PivotTableColumnHeaderCell.js +7 -8
- package/build/es/components/PivotTable/PivotTableColumnHeaders.js +22 -29
- package/build/es/components/PivotTable/PivotTableContainer.js +5 -6
- package/build/es/components/PivotTable/PivotTableDimensionLabelCell.js +4 -5
- package/build/es/components/PivotTable/PivotTableEmptyCell.js +3 -4
- package/build/es/components/PivotTable/PivotTableEmptyRow.js +4 -5
- package/build/es/components/PivotTable/PivotTableEngineContext.js +4 -5
- package/build/es/components/PivotTable/PivotTableHead.js +13 -16
- package/build/es/components/PivotTable/PivotTableHeaderCell.js +8 -9
- package/build/es/components/PivotTable/PivotTableRow.js +20 -27
- package/build/es/components/PivotTable/PivotTableRowHeaderCell.js +5 -6
- package/build/es/components/PivotTable/PivotTableSortIcon.js +4 -5
- package/build/es/components/PivotTable/PivotTableTitleRow.js +18 -22
- package/build/es/components/PivotTable/PivotTableTitleRows.js +4 -5
- package/build/es/components/PivotTable/PivotTableValueCell.js +5 -6
- package/build/es/components/RichText/Editor/Editor.js +69 -83
- package/build/es/components/RichText/Editor/__tests__/Editor.spec.js +7 -8
- package/build/es/components/RichText/Parser/Parser.js +4 -8
- package/build/es/components/RichText/Parser/__tests__/MdParser.spec.js +1 -1
- package/build/es/components/RichText/Parser/__tests__/Parser.spec.js +21 -22
- package/build/es/components/Toolbar/HoverMenuBar/HoverMenuBar.js +20 -23
- package/build/es/components/Toolbar/HoverMenuBar/HoverMenuDropdown.js +7 -11
- package/build/es/components/Toolbar/HoverMenuBar/HoverMenuList.js +8 -15
- package/build/es/components/Toolbar/HoverMenuBar/HoverMenuListItem.js +10 -14
- package/build/es/components/Toolbar/HoverMenuBar/__tests__/HoverMenuBar.spec.js +57 -48
- package/build/es/components/Toolbar/HoverMenuBar/__tests__/HoverMenuDropdown.spec.js +7 -7
- package/build/es/components/Toolbar/HoverMenuBar/__tests__/HoverMenuList.spec.js +27 -20
- package/build/es/components/Toolbar/HoverMenuBar/__tests__/HoverMenuListItem.spec.js +21 -15
- package/build/es/components/Toolbar/HoverMenuBar/__tests__/__snapshots__/HoverMenuList.spec.js.snap +63 -0
- package/build/es/components/Toolbar/InterpretationsAndDetailsToggler.js +17 -21
- package/build/es/components/Toolbar/Toolbar.js +10 -16
- package/build/es/components/Toolbar/ToolbarSidebar.js +12 -18
- package/build/es/components/Toolbar/UpdateButton.js +18 -24
- package/build/es/components/Toolbar/__tests__/InterpretationsAndDetailsToggler.spec.js +18 -17
- package/build/es/components/Toolbar/__tests__/Toolbar.spec.js +7 -7
- package/build/es/components/Toolbar/__tests__/ToolbarSidebar.spec.js +13 -10
- package/build/es/components/Toolbar/__tests__/UpdateButton.spec.js +15 -13
- package/build/es/components/TransferOption.js +14 -15
- package/build/es/components/TranslationDialog/TranslationModal/LocalesSelect.js +19 -27
- package/build/es/components/TranslationDialog/TranslationModal/TranslationForm.js +16 -23
- package/build/es/components/TranslationDialog/TranslationModal/TranslationModal.js +8 -8
- package/build/es/components/TranslationDialog/TranslationModal/TranslationModalActions.js +18 -27
- package/build/es/components/TranslationDialog/TranslationModal/__tests__/TranslationModal.spec.js +24 -15
- package/build/es/components/TranslationDialog/TranslationModal/useTranslationsResults.js +3 -4
- package/build/es/components/UserMention/UserList.js +6 -7
- package/build/es/components/UserMention/UserMentionWrapper.js +12 -18
- package/build/es/components/UserMention/useUserSearchResults.js +12 -16
- package/build/es/components/VisTypeIcon.js +5 -6
- package/build/es/locales/ar_IQ/translations.json +20 -11
- package/build/es/locales/cs/translations.json +2 -0
- package/build/es/locales/en/translations.json +1 -0
- package/build/es/locales/es/translations.json +2 -0
- package/build/es/locales/fr/translations.json +2 -0
- package/build/es/locales/id/translations.json +20 -11
- package/build/es/locales/lo/translations.json +2 -0
- package/build/es/locales/nb/translations.json +2 -0
- package/build/es/locales/prs/translations.json +2 -0
- package/build/es/locales/ps/translations.json +2 -0
- package/build/es/locales/pt/translations.json +2 -0
- package/build/es/locales/pt_BR/translations.json +2 -0
- package/build/es/locales/ru/translations.json +2 -0
- package/build/es/locales/si/translations.json +20 -11
- package/build/es/locales/sv/translations.json +20 -11
- package/build/es/locales/tet/translations.json +20 -11
- package/build/es/locales/tg/translations.json +2 -0
- package/build/es/locales/uk/translations.json +2 -0
- package/build/es/locales/ur/translations.json +2 -0
- package/build/es/locales/uz_UZ_Cyrl/translations.json +2 -0
- package/build/es/locales/uz_UZ_Latn/translations.json +4 -2
- package/build/es/locales/vi/translations.json +2 -0
- package/build/es/locales/zh/translations.json +2 -0
- package/build/es/locales/zh_CN/translations.json +17 -15
- package/build/es/modules/__tests__/expressions.spec.js +4 -5
- package/build/es/modules/__tests__/isNumeric.spec.js +31 -0
- package/build/es/modules/dimensionListItem.js +4 -5
- package/build/es/modules/expressions.js +3 -9
- package/build/es/modules/getPWAInstallationStatus.js +7 -9
- package/build/es/modules/layout/dimensionCreate.js +1 -3
- package/build/es/modules/layout/dimensionIsValid.js +3 -4
- package/build/es/modules/legends.js +5 -6
- package/build/es/modules/outliers/index.js +2 -3
- package/build/es/modules/outliers/iqr.js +4 -6
- package/build/es/modules/outliers/modZScore.js +6 -14
- package/build/es/modules/outliers/zScore.js +3 -4
- package/build/es/modules/pivotTable/AdaptiveClippingController.js +12 -16
- package/build/es/modules/pivotTable/PivotTableEngine.js +48 -59
- package/build/es/modules/pivotTable/clipAxis.js +7 -8
- package/build/es/modules/pivotTable/clipPartitionedAxis.js +9 -10
- package/build/es/modules/pivotTable/getHeaderForDisplay.js +8 -9
- package/build/es/modules/pivotTable/measureText.js +7 -9
- package/build/es/modules/pivotTable/useParentSize.js +1 -2
- package/build/es/modules/pivotTable/useScrollPosition.js +1 -2
- package/build/es/modules/pivotTable/useTableClipping.js +6 -7
- package/build/es/modules/relativeItems/index.js +1 -4
- package/build/es/modules/renderValue.js +1 -2
- package/build/es/modules/utils.js +9 -1
- package/build/es/visualizations/config/adapters/dhis_highcharts/addTrendLines.js +3 -8
- package/build/es/visualizations/config/adapters/dhis_highcharts/axis.js +2 -5
- package/build/es/visualizations/config/adapters/dhis_highcharts/customAxes.js +2 -5
- package/build/es/visualizations/config/adapters/dhis_highcharts/customSVGOptions/index.js +7 -8
- package/build/es/visualizations/config/adapters/dhis_highcharts/customSVGOptions/singleValue/getSingleValueBackgroundColor.js +1 -2
- package/build/es/visualizations/config/adapters/dhis_highcharts/customSVGOptions/singleValue/index.js +6 -7
- package/build/es/visualizations/config/adapters/dhis_highcharts/getFormatter.js +1 -1
- package/build/es/visualizations/config/adapters/dhis_highcharts/getSteps.js +1 -1
- package/build/es/visualizations/config/adapters/dhis_highcharts/getTrimmedConfig.js +3 -4
- package/build/es/visualizations/config/adapters/dhis_highcharts/index.js +7 -8
- package/build/es/visualizations/config/adapters/dhis_highcharts/legend.js +6 -7
- package/build/es/visualizations/config/adapters/dhis_highcharts/legendSet.js +22 -26
- package/build/es/visualizations/config/adapters/dhis_highcharts/plotOptions.js +8 -9
- package/build/es/visualizations/config/adapters/dhis_highcharts/series/index.js +18 -20
- package/build/es/visualizations/config/adapters/dhis_highcharts/series/pie.js +1 -4
- package/build/es/visualizations/config/adapters/dhis_highcharts/yAxis/gauge.js +1 -3
- package/build/es/visualizations/config/index.js +11 -12
- package/build/es/visualizations/config/validators/dhis/index.js +3 -4
- package/build/es/visualizations/index.js +1 -4
- package/build/es/visualizations/store/adapters/dhis_highcharts/index.js +7 -8
- package/build/es/visualizations/store/index.js +15 -17
- package/build/es/visualizations/store/validators/dhis/index.js +5 -6
- package/build/es/visualizations/util/getFilterText.js +3 -6
- package/build/es/visualizations/util/shouldUseContrastColor.js +1 -2
- package/package.json +13 -15
- package/build/cjs/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -89
- package/build/cjs/components/PeriodDimension/__tests__/PeriodSelector.spec.js +0 -29
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -93
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodDimension.spec.js.snap +0 -17
- package/build/cjs/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +0 -89
- package/build/es/components/OrgUnitDimension/__tests__/__snapshots__/OrgUnitDimension.spec.js.snap +0 -89
- package/build/es/components/PeriodDimension/__tests__/PeriodSelector.spec.js +0 -26
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/FixedPeriodSingleSelect.spec.js.snap +0 -93
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/PeriodDimension.spec.js.snap +0 -17
- package/build/es/components/PeriodDimension/__tests__/__snapshots__/PeriodSelector.spec.js.snap +0 -89
|
@@ -49,11 +49,6 @@
|
|
|
49
49
|
"No data elements found": "",
|
|
50
50
|
"Drag items here, or double click in the list, to start building a calculation formula": "",
|
|
51
51
|
"Math operators": "",
|
|
52
|
-
"Data Type": "",
|
|
53
|
-
"Only {{dataType}} can be used in {{visType}}": "",
|
|
54
|
-
"All types": "",
|
|
55
|
-
"Disaggregation": "",
|
|
56
|
-
"No data": "",
|
|
57
52
|
"Expression description": "",
|
|
58
53
|
"Error loading value": "",
|
|
59
54
|
"None": "لا شيء",
|
|
@@ -102,9 +97,24 @@
|
|
|
102
97
|
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
103
98
|
"Expression": "",
|
|
104
99
|
"Filter": "",
|
|
100
|
+
"All available options are already selected": "",
|
|
101
|
+
"No available options for this item": "",
|
|
102
|
+
"Search by option name": "",
|
|
103
|
+
"Back to all items": "",
|
|
104
|
+
"Options": "الخيارات",
|
|
105
|
+
"Selected items": "",
|
|
106
|
+
"Data Type": "",
|
|
107
|
+
"Only {{dataType}} can be used in {{visType}}": "",
|
|
108
|
+
"All types": "",
|
|
109
|
+
"Disaggregation": "",
|
|
110
|
+
"No data": "",
|
|
105
111
|
"Search by data item name": "",
|
|
106
|
-
"No items selected": "",
|
|
107
112
|
"Selected Items": "",
|
|
113
|
+
"All available items are already selected": "",
|
|
114
|
+
"Calculation": "",
|
|
115
|
+
"Metric type": "",
|
|
116
|
+
"All metrics": "",
|
|
117
|
+
"No items selected": "",
|
|
108
118
|
"No indicators found": "",
|
|
109
119
|
"No data sets found": "",
|
|
110
120
|
"No event data items found": "",
|
|
@@ -116,9 +126,7 @@
|
|
|
116
126
|
"No program indicators found for \"{{- searchTerm}}\"": "",
|
|
117
127
|
"No calculations found for \"{{- searchTerm}}\"": "",
|
|
118
128
|
"Nothing found for \"{{- searchTerm}}\"": "",
|
|
119
|
-
"
|
|
120
|
-
"Metric type": "",
|
|
121
|
-
"All metrics": "",
|
|
129
|
+
"Click to choose from available options": "",
|
|
122
130
|
"Move to {{axisName}}": "",
|
|
123
131
|
"Add to {{axisName}}": "",
|
|
124
132
|
"Not available for {{visualizationType}}": "",
|
|
@@ -135,7 +143,6 @@
|
|
|
135
143
|
"Manually select items...": "",
|
|
136
144
|
"Nothing found in {{- dimensionTitle}}": "",
|
|
137
145
|
"Search": "البحث",
|
|
138
|
-
"Nothing found for {{- searchTerm}}": "",
|
|
139
146
|
"Delete {{fileType}}": "",
|
|
140
147
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
141
148
|
"Delete": "حذف",
|
|
@@ -159,6 +166,7 @@
|
|
|
159
166
|
"line list": "",
|
|
160
167
|
"map": "",
|
|
161
168
|
"visualization": "",
|
|
169
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
162
170
|
"Edit": "تعديل",
|
|
163
171
|
"Write a reply": "",
|
|
164
172
|
"Post reply": "",
|
|
@@ -227,7 +235,6 @@
|
|
|
227
235
|
"No line lists found. Click New line list to get started.": "",
|
|
228
236
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
229
237
|
"New line list": "",
|
|
230
|
-
"Options": "الخيارات",
|
|
231
238
|
"Hide": "إخفاء",
|
|
232
239
|
"{{count}} org units_0": "",
|
|
233
240
|
"{{count}} org units_1": "",
|
|
@@ -383,6 +390,7 @@
|
|
|
383
390
|
"Program indicators": "",
|
|
384
391
|
"Program indicator": "",
|
|
385
392
|
"Calculations": "",
|
|
393
|
+
"Option": "",
|
|
386
394
|
"Number": "",
|
|
387
395
|
"Formula is empty. Add items to the formula from the lists on the left.": "",
|
|
388
396
|
"Consecutive math operators": "",
|
|
@@ -464,6 +472,7 @@
|
|
|
464
472
|
"Single value": "",
|
|
465
473
|
"Outlier table": "",
|
|
466
474
|
"All charts": "",
|
|
475
|
+
"Map": "الخريطة",
|
|
467
476
|
"{{seriesName}} (trend)": "",
|
|
468
477
|
"Trend": "",
|
|
469
478
|
"No legend for this series": "",
|
|
@@ -164,6 +164,7 @@
|
|
|
164
164
|
"line list": "seznam řádků",
|
|
165
165
|
"map": "mapa",
|
|
166
166
|
"visualization": "vizualizace",
|
|
167
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
167
168
|
"Edit": "Upravit",
|
|
168
169
|
"Write a reply": "Napsat odpověď",
|
|
169
170
|
"Post reply": "Odpovědět",
|
|
@@ -461,6 +462,7 @@
|
|
|
461
462
|
"Single value": "Jedna hodnota",
|
|
462
463
|
"Outlier table": "",
|
|
463
464
|
"All charts": "Všechny grafy",
|
|
465
|
+
"Map": "Mapa",
|
|
464
466
|
"{{seriesName}} (trend)": "{{seriesName}} (trend)",
|
|
465
467
|
"Trend": "Trend",
|
|
466
468
|
"No legend for this series": "Pro tuto sérii není legenda",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "listados",
|
|
163
163
|
"map": "mapa",
|
|
164
164
|
"visualization": "visualización",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "Editar",
|
|
166
167
|
"Write a reply": "Escribe una respuesta",
|
|
167
168
|
"Post reply": "Publicar respuesta",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "Valor único",
|
|
452
453
|
"Outlier table": "tabla de valores atípicos",
|
|
453
454
|
"All charts": "Todos los gráficos",
|
|
455
|
+
"Map": "Mapa",
|
|
454
456
|
"{{seriesName}} (trend)": "{{seriesName}} (tendencia)",
|
|
455
457
|
"Trend": "Tendencia",
|
|
456
458
|
"No legend for this series": "Ninguna leyenda para esta serie",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "carte",
|
|
164
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "Modifier",
|
|
166
167
|
"Write a reply": "Ecrire une réponse",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "Valeur unique",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "",
|
|
455
|
+
"Map": "Carte",
|
|
454
456
|
"{{seriesName}} (trend)": "{{seriesName}} (tendance)",
|
|
455
457
|
"Trend": "Tendance",
|
|
456
458
|
"No legend for this series": "Aucune légende pour ces séries",
|
|
@@ -44,11 +44,6 @@
|
|
|
44
44
|
"No data elements found": "Tidak ada elemen data yang ditemukan",
|
|
45
45
|
"Drag items here, or double click in the list, to start building a calculation formula": "",
|
|
46
46
|
"Math operators": "",
|
|
47
|
-
"Data Type": "Tipe Data",
|
|
48
|
-
"Only {{dataType}} can be used in {{visType}}": "",
|
|
49
|
-
"All types": "Semua jenis",
|
|
50
|
-
"Disaggregation": "Disagregasi",
|
|
51
|
-
"No data": "Tidak ada data",
|
|
52
47
|
"Expression description": "Deskripsi expression",
|
|
53
48
|
"Error loading value": "",
|
|
54
49
|
"None": "Tidak ada",
|
|
@@ -97,9 +92,24 @@
|
|
|
97
92
|
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
98
93
|
"Expression": "",
|
|
99
94
|
"Filter": "Saring",
|
|
95
|
+
"All available options are already selected": "",
|
|
96
|
+
"No available options for this item": "",
|
|
97
|
+
"Search by option name": "",
|
|
98
|
+
"Back to all items": "",
|
|
99
|
+
"Options": "Opsi",
|
|
100
|
+
"Selected items": "",
|
|
101
|
+
"Data Type": "Tipe Data",
|
|
102
|
+
"Only {{dataType}} can be used in {{visType}}": "",
|
|
103
|
+
"All types": "Semua jenis",
|
|
104
|
+
"Disaggregation": "Disagregasi",
|
|
105
|
+
"No data": "Tidak ada data",
|
|
100
106
|
"Search by data item name": "Cari berdasarkan nama item data",
|
|
101
|
-
"No items selected": "Tidak ada item yang dipilih",
|
|
102
107
|
"Selected Items": "Item yang Dipilih",
|
|
108
|
+
"All available items are already selected": "",
|
|
109
|
+
"Calculation": "",
|
|
110
|
+
"Metric type": "Jenis metrik",
|
|
111
|
+
"All metrics": "Semua metrik",
|
|
112
|
+
"No items selected": "Tidak ada item yang dipilih",
|
|
103
113
|
"No indicators found": "Tidak ada indikator yang ditemukan",
|
|
104
114
|
"No data sets found": "Tidak ada kumpulan data yang ditemukan",
|
|
105
115
|
"No event data items found": "Tidak ada item data acara yang ditemukan",
|
|
@@ -111,9 +121,7 @@
|
|
|
111
121
|
"No program indicators found for \"{{- searchTerm}}\"": "Tidak ada indikator program yang ditemukan untuk \"{{- searchTerm}}\"",
|
|
112
122
|
"No calculations found for \"{{- searchTerm}}\"": "",
|
|
113
123
|
"Nothing found for \"{{- searchTerm}}\"": "Tidak ada yang ditemukan untuk \"{{- searchTerm}}\"",
|
|
114
|
-
"
|
|
115
|
-
"Metric type": "Jenis metrik",
|
|
116
|
-
"All metrics": "Semua metrik",
|
|
124
|
+
"Click to choose from available options": "",
|
|
117
125
|
"Move to {{axisName}}": "Pindah ke {{axisName}}",
|
|
118
126
|
"Add to {{axisName}}": "Tambahkan ke {{axisName}}",
|
|
119
127
|
"Not available for {{visualizationType}}": "Tidak tersedia untuk {{visualizationType}}",
|
|
@@ -130,7 +138,6 @@
|
|
|
130
138
|
"Manually select items...": "",
|
|
131
139
|
"Nothing found in {{- dimensionTitle}}": "",
|
|
132
140
|
"Search": "Pencarian",
|
|
133
|
-
"Nothing found for {{- searchTerm}}": "",
|
|
134
141
|
"Delete {{fileType}}": "Hapus {{fileType}}",
|
|
135
142
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "{{fileType}} ini dan interpretasi terkait akan dihapus. Terus?",
|
|
136
143
|
"Delete": "Hapus",
|
|
@@ -154,6 +161,7 @@
|
|
|
154
161
|
"line list": "",
|
|
155
162
|
"map": "",
|
|
156
163
|
"visualization": "",
|
|
164
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
157
165
|
"Edit": "Sunting",
|
|
158
166
|
"Write a reply": "",
|
|
159
167
|
"Post reply": "",
|
|
@@ -217,7 +225,6 @@
|
|
|
217
225
|
"No line lists found. Click New line list to get started.": "",
|
|
218
226
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
219
227
|
"New line list": "",
|
|
220
|
-
"Options": "Opsi",
|
|
221
228
|
"Hide": "Sembunyikan",
|
|
222
229
|
"{{count}} org units": "",
|
|
223
230
|
"{{count}} levels": "",
|
|
@@ -358,6 +365,7 @@
|
|
|
358
365
|
"Program indicators": "Indikator program",
|
|
359
366
|
"Program indicator": "Indikator program",
|
|
360
367
|
"Calculations": "",
|
|
368
|
+
"Option": "",
|
|
361
369
|
"Number": "Angka",
|
|
362
370
|
"Formula is empty. Add items to the formula from the lists on the left.": "",
|
|
363
371
|
"Consecutive math operators": "",
|
|
@@ -439,6 +447,7 @@
|
|
|
439
447
|
"Single value": "Nilai tunggal",
|
|
440
448
|
"Outlier table": "",
|
|
441
449
|
"All charts": "Semua grafik",
|
|
450
|
+
"Map": "Peta",
|
|
442
451
|
"{{seriesName}} (trend)": "{{seriesName}} (tren)",
|
|
443
452
|
"Trend": "Tren",
|
|
444
453
|
"No legend for this series": "Tidak ada legenda untuk seri ini",
|
|
@@ -161,6 +161,7 @@
|
|
|
161
161
|
"line list": "ບັນຊີລາຍຊື່",
|
|
162
162
|
"map": "ແຜນທີ່",
|
|
163
163
|
"visualization": "ການສ້າງພາບຂໍ້ມູນ",
|
|
164
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
164
165
|
"Edit": "ແກ້ໄຂ",
|
|
165
166
|
"Write a reply": "ຂຽນການຕອບກັບ",
|
|
166
167
|
"Post reply": "ຕອບກ່ອນໜ້າ",
|
|
@@ -446,6 +447,7 @@
|
|
|
446
447
|
"Single value": "ຄ່າດຽວ",
|
|
447
448
|
"Outlier table": "ຕາຕະລາງທີ່ເກີນກວ່າ",
|
|
448
449
|
"All charts": "ຕາຕະລາງທັງຫມົດ",
|
|
450
|
+
"Map": "ແຜນທີ່",
|
|
449
451
|
"{{seriesName}} (trend)": "{{seriesName}} (ແນວໂນ້ມ)",
|
|
450
452
|
"Trend": "ແນວໂນ້ມ",
|
|
451
453
|
"No legend for this series": "ບໍ່ມີນິຍາມສຳລັບຊຸດນີ້",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "kart",
|
|
164
164
|
"visualization": "visualisering",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "Rediger",
|
|
166
167
|
"Write a reply": "Skriv et svar",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "Enkeltverdi",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "Alle diagrammer",
|
|
455
|
+
"Map": "Kart",
|
|
454
456
|
"{{seriesName}} (trend)": "",
|
|
455
457
|
"Trend": "Trend",
|
|
456
458
|
"No legend for this series": "Ingen tegnforklaring for denne serien",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "",
|
|
164
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "تجدید",
|
|
166
167
|
"Write a reply": "",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "",
|
|
455
|
+
"Map": "نقشه",
|
|
454
456
|
"{{seriesName}} (trend)": "",
|
|
455
457
|
"Trend": "محاسبه",
|
|
456
458
|
"No legend for this series": "",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "",
|
|
164
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "درست یې کړئ",
|
|
166
167
|
"Write a reply": "",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "",
|
|
455
|
+
"Map": "نقشه",
|
|
454
456
|
"{{seriesName}} (trend)": "",
|
|
455
457
|
"Trend": "محاسبه",
|
|
456
458
|
"No legend for this series": "",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "lista de linha",
|
|
163
163
|
"map": "mapa",
|
|
164
164
|
"visualization": "visualização",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "Editar",
|
|
166
167
|
"Write a reply": "Escreva uma resposta",
|
|
167
168
|
"Post reply": "Publicar resposta",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "Valor único",
|
|
452
453
|
"Outlier table": "Tabela de valores atípicos",
|
|
453
454
|
"All charts": "Todos os gráficos",
|
|
455
|
+
"Map": "Mapa",
|
|
454
456
|
"{{seriesName}} (trend)": "{{seriesName}} (tendência)",
|
|
455
457
|
"Trend": "Tendência",
|
|
456
458
|
"No legend for this series": "Não há legenda para esta série",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "",
|
|
164
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "Editar",
|
|
166
167
|
"Write a reply": "",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "",
|
|
455
|
+
"Map": "Mapa",
|
|
454
456
|
"{{seriesName}} (trend)": "",
|
|
455
457
|
"Trend": "Tendência",
|
|
456
458
|
"No legend for this series": "",
|
|
@@ -164,6 +164,7 @@
|
|
|
164
164
|
"line list": "",
|
|
165
165
|
"map": "Карта",
|
|
166
166
|
"visualization": "визуализация",
|
|
167
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
167
168
|
"Edit": "Редактировать",
|
|
168
169
|
"Write a reply": "Написать ответ",
|
|
169
170
|
"Post reply": "",
|
|
@@ -461,6 +462,7 @@
|
|
|
461
462
|
"Single value": "Одиночное значение",
|
|
462
463
|
"Outlier table": "",
|
|
463
464
|
"All charts": "",
|
|
465
|
+
"Map": "Карты",
|
|
464
466
|
"{{seriesName}} (trend)": "",
|
|
465
467
|
"Trend": "Тренд",
|
|
466
468
|
"No legend for this series": "Отсутвует легенда для этого ряда",
|
|
@@ -45,11 +45,6 @@
|
|
|
45
45
|
"No data elements found": "",
|
|
46
46
|
"Drag items here, or double click in the list, to start building a calculation formula": "",
|
|
47
47
|
"Math operators": "",
|
|
48
|
-
"Data Type": "",
|
|
49
|
-
"Only {{dataType}} can be used in {{visType}}": "",
|
|
50
|
-
"All types": "",
|
|
51
|
-
"Disaggregation": "",
|
|
52
|
-
"No data": "",
|
|
53
48
|
"Expression description": "",
|
|
54
49
|
"Error loading value": "",
|
|
55
50
|
"None": "",
|
|
@@ -98,9 +93,24 @@
|
|
|
98
93
|
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
99
94
|
"Expression": "",
|
|
100
95
|
"Filter": "",
|
|
96
|
+
"All available options are already selected": "",
|
|
97
|
+
"No available options for this item": "",
|
|
98
|
+
"Search by option name": "",
|
|
99
|
+
"Back to all items": "",
|
|
100
|
+
"Options": "",
|
|
101
|
+
"Selected items": "",
|
|
102
|
+
"Data Type": "",
|
|
103
|
+
"Only {{dataType}} can be used in {{visType}}": "",
|
|
104
|
+
"All types": "",
|
|
105
|
+
"Disaggregation": "",
|
|
106
|
+
"No data": "",
|
|
101
107
|
"Search by data item name": "",
|
|
102
|
-
"No items selected": "",
|
|
103
108
|
"Selected Items": "",
|
|
109
|
+
"All available items are already selected": "",
|
|
110
|
+
"Calculation": "",
|
|
111
|
+
"Metric type": "",
|
|
112
|
+
"All metrics": "",
|
|
113
|
+
"No items selected": "",
|
|
104
114
|
"No indicators found": "",
|
|
105
115
|
"No data sets found": "",
|
|
106
116
|
"No event data items found": "",
|
|
@@ -112,9 +122,7 @@
|
|
|
112
122
|
"No program indicators found for \"{{- searchTerm}}\"": "",
|
|
113
123
|
"No calculations found for \"{{- searchTerm}}\"": "",
|
|
114
124
|
"Nothing found for \"{{- searchTerm}}\"": "",
|
|
115
|
-
"
|
|
116
|
-
"Metric type": "",
|
|
117
|
-
"All metrics": "",
|
|
125
|
+
"Click to choose from available options": "",
|
|
118
126
|
"Move to {{axisName}}": "",
|
|
119
127
|
"Add to {{axisName}}": "",
|
|
120
128
|
"Not available for {{visualizationType}}": "",
|
|
@@ -131,7 +139,6 @@
|
|
|
131
139
|
"Manually select items...": "",
|
|
132
140
|
"Nothing found in {{- dimensionTitle}}": "",
|
|
133
141
|
"Search": "සොයන්න",
|
|
134
|
-
"Nothing found for {{- searchTerm}}": "",
|
|
135
142
|
"Delete {{fileType}}": "",
|
|
136
143
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
137
144
|
"Delete": "ඉවත් කරන්න",
|
|
@@ -155,6 +162,7 @@
|
|
|
155
162
|
"line list": "",
|
|
156
163
|
"map": "",
|
|
157
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
158
166
|
"Edit": "වෙනස් කරන්න",
|
|
159
167
|
"Write a reply": "",
|
|
160
168
|
"Post reply": "",
|
|
@@ -219,7 +227,6 @@
|
|
|
219
227
|
"No line lists found. Click New line list to get started.": "",
|
|
220
228
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
221
229
|
"New line list": "",
|
|
222
|
-
"Options": "",
|
|
223
230
|
"Hide": "",
|
|
224
231
|
"{{count}} org units": "",
|
|
225
232
|
"{{count}} org units_plural": "",
|
|
@@ -363,6 +370,7 @@
|
|
|
363
370
|
"Program indicators": "",
|
|
364
371
|
"Program indicator": "",
|
|
365
372
|
"Calculations": "",
|
|
373
|
+
"Option": "",
|
|
366
374
|
"Number": "",
|
|
367
375
|
"Formula is empty. Add items to the formula from the lists on the left.": "",
|
|
368
376
|
"Consecutive math operators": "",
|
|
@@ -444,6 +452,7 @@
|
|
|
444
452
|
"Single value": "",
|
|
445
453
|
"Outlier table": "",
|
|
446
454
|
"All charts": "",
|
|
455
|
+
"Map": "සිතියම",
|
|
447
456
|
"{{seriesName}} (trend)": "",
|
|
448
457
|
"Trend": "",
|
|
449
458
|
"No legend for this series": "",
|
|
@@ -45,11 +45,6 @@
|
|
|
45
45
|
"No data elements found": "",
|
|
46
46
|
"Drag items here, or double click in the list, to start building a calculation formula": "",
|
|
47
47
|
"Math operators": "",
|
|
48
|
-
"Data Type": "",
|
|
49
|
-
"Only {{dataType}} can be used in {{visType}}": "",
|
|
50
|
-
"All types": "",
|
|
51
|
-
"Disaggregation": "",
|
|
52
|
-
"No data": "",
|
|
53
48
|
"Expression description": "",
|
|
54
49
|
"Error loading value": "",
|
|
55
50
|
"None": "Ingen",
|
|
@@ -98,9 +93,24 @@
|
|
|
98
93
|
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
99
94
|
"Expression": "Uttryck",
|
|
100
95
|
"Filter": "Filtrera",
|
|
96
|
+
"All available options are already selected": "",
|
|
97
|
+
"No available options for this item": "",
|
|
98
|
+
"Search by option name": "",
|
|
99
|
+
"Back to all items": "",
|
|
100
|
+
"Options": "Alternativ",
|
|
101
|
+
"Selected items": "",
|
|
102
|
+
"Data Type": "",
|
|
103
|
+
"Only {{dataType}} can be used in {{visType}}": "",
|
|
104
|
+
"All types": "",
|
|
105
|
+
"Disaggregation": "",
|
|
106
|
+
"No data": "",
|
|
101
107
|
"Search by data item name": "",
|
|
102
|
-
"No items selected": "",
|
|
103
108
|
"Selected Items": "",
|
|
109
|
+
"All available items are already selected": "",
|
|
110
|
+
"Calculation": "",
|
|
111
|
+
"Metric type": "",
|
|
112
|
+
"All metrics": "",
|
|
113
|
+
"No items selected": "",
|
|
104
114
|
"No indicators found": "",
|
|
105
115
|
"No data sets found": "",
|
|
106
116
|
"No event data items found": "",
|
|
@@ -112,9 +122,7 @@
|
|
|
112
122
|
"No program indicators found for \"{{- searchTerm}}\"": "",
|
|
113
123
|
"No calculations found for \"{{- searchTerm}}\"": "",
|
|
114
124
|
"Nothing found for \"{{- searchTerm}}\"": "",
|
|
115
|
-
"
|
|
116
|
-
"Metric type": "",
|
|
117
|
-
"All metrics": "",
|
|
125
|
+
"Click to choose from available options": "",
|
|
118
126
|
"Move to {{axisName}}": "Flytta till {{axisName}}",
|
|
119
127
|
"Add to {{axisName}}": "Lägg till i {{axisName}}",
|
|
120
128
|
"Not available for {{visualizationType}}": "",
|
|
@@ -131,7 +139,6 @@
|
|
|
131
139
|
"Manually select items...": "",
|
|
132
140
|
"Nothing found in {{- dimensionTitle}}": "",
|
|
133
141
|
"Search": "Sök",
|
|
134
|
-
"Nothing found for {{- searchTerm}}": "",
|
|
135
142
|
"Delete {{fileType}}": "",
|
|
136
143
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
137
144
|
"Delete": "Radera",
|
|
@@ -155,6 +162,7 @@
|
|
|
155
162
|
"line list": "",
|
|
156
163
|
"map": "",
|
|
157
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
158
166
|
"Edit": "Redigera",
|
|
159
167
|
"Write a reply": "",
|
|
160
168
|
"Post reply": "",
|
|
@@ -219,7 +227,6 @@
|
|
|
219
227
|
"No line lists found. Click New line list to get started.": "",
|
|
220
228
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
221
229
|
"New line list": "",
|
|
222
|
-
"Options": "Alternativ",
|
|
223
230
|
"Hide": "Göm",
|
|
224
231
|
"{{count}} org units": "",
|
|
225
232
|
"{{count}} org units_plural": "",
|
|
@@ -363,6 +370,7 @@
|
|
|
363
370
|
"Program indicators": "programindikatorer",
|
|
364
371
|
"Program indicator": "",
|
|
365
372
|
"Calculations": "",
|
|
373
|
+
"Option": "",
|
|
366
374
|
"Number": "Antal",
|
|
367
375
|
"Formula is empty. Add items to the formula from the lists on the left.": "",
|
|
368
376
|
"Consecutive math operators": "",
|
|
@@ -444,6 +452,7 @@
|
|
|
444
452
|
"Single value": "",
|
|
445
453
|
"Outlier table": "",
|
|
446
454
|
"All charts": "",
|
|
455
|
+
"Map": "Karta",
|
|
447
456
|
"{{seriesName}} (trend)": "",
|
|
448
457
|
"Trend": "",
|
|
449
458
|
"No legend for this series": "",
|
|
@@ -44,11 +44,6 @@
|
|
|
44
44
|
"No data elements found": "",
|
|
45
45
|
"Drag items here, or double click in the list, to start building a calculation formula": "",
|
|
46
46
|
"Math operators": "",
|
|
47
|
-
"Data Type": "",
|
|
48
|
-
"Only {{dataType}} can be used in {{visType}}": "",
|
|
49
|
-
"All types": "",
|
|
50
|
-
"Disaggregation": "",
|
|
51
|
-
"No data": "Laiha dadus",
|
|
52
47
|
"Expression description": "",
|
|
53
48
|
"Error loading value": "",
|
|
54
49
|
"None": "Nein ida",
|
|
@@ -97,9 +92,24 @@
|
|
|
97
92
|
"{{ offsetPeriodType }} × {{ offsetPeriods }}": "",
|
|
98
93
|
"Expression": "Expresaun",
|
|
99
94
|
"Filter": "Filtru",
|
|
95
|
+
"All available options are already selected": "",
|
|
96
|
+
"No available options for this item": "",
|
|
97
|
+
"Search by option name": "",
|
|
98
|
+
"Back to all items": "",
|
|
99
|
+
"Options": "Opsoens",
|
|
100
|
+
"Selected items": "",
|
|
101
|
+
"Data Type": "",
|
|
102
|
+
"Only {{dataType}} can be used in {{visType}}": "",
|
|
103
|
+
"All types": "",
|
|
104
|
+
"Disaggregation": "",
|
|
105
|
+
"No data": "Laiha dadus",
|
|
100
106
|
"Search by data item name": "",
|
|
101
|
-
"No items selected": "",
|
|
102
107
|
"Selected Items": "",
|
|
108
|
+
"All available items are already selected": "",
|
|
109
|
+
"Calculation": "",
|
|
110
|
+
"Metric type": "",
|
|
111
|
+
"All metrics": "",
|
|
112
|
+
"No items selected": "",
|
|
103
113
|
"No indicators found": "",
|
|
104
114
|
"No data sets found": "",
|
|
105
115
|
"No event data items found": "",
|
|
@@ -111,9 +121,7 @@
|
|
|
111
121
|
"No program indicators found for \"{{- searchTerm}}\"": "",
|
|
112
122
|
"No calculations found for \"{{- searchTerm}}\"": "",
|
|
113
123
|
"Nothing found for \"{{- searchTerm}}\"": "",
|
|
114
|
-
"
|
|
115
|
-
"Metric type": "",
|
|
116
|
-
"All metrics": "",
|
|
124
|
+
"Click to choose from available options": "",
|
|
117
125
|
"Move to {{axisName}}": "",
|
|
118
126
|
"Add to {{axisName}}": "",
|
|
119
127
|
"Not available for {{visualizationType}}": "",
|
|
@@ -130,7 +138,6 @@
|
|
|
130
138
|
"Manually select items...": "",
|
|
131
139
|
"Nothing found in {{- dimensionTitle}}": "",
|
|
132
140
|
"Search": "",
|
|
133
|
-
"Nothing found for {{- searchTerm}}": "",
|
|
134
141
|
"Delete {{fileType}}": "",
|
|
135
142
|
"This {{fileType}} and related interpretations will be deleted. Continue?": "",
|
|
136
143
|
"Delete": "Soe",
|
|
@@ -154,6 +161,7 @@
|
|
|
154
161
|
"line list": "",
|
|
155
162
|
"map": "",
|
|
156
163
|
"visualization": "",
|
|
164
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
157
165
|
"Edit": "Edita",
|
|
158
166
|
"Write a reply": "",
|
|
159
167
|
"Post reply": "",
|
|
@@ -217,7 +225,6 @@
|
|
|
217
225
|
"No line lists found. Click New line list to get started.": "",
|
|
218
226
|
"No line lists found. Try adjusting your search or filter options to find what you're looking for.": "",
|
|
219
227
|
"New line list": "",
|
|
220
|
-
"Options": "Opsoens",
|
|
221
228
|
"Hide": "Subar",
|
|
222
229
|
"{{count}} org units": "",
|
|
223
230
|
"{{count}} levels": "",
|
|
@@ -358,6 +365,7 @@
|
|
|
358
365
|
"Program indicators": "",
|
|
359
366
|
"Program indicator": "",
|
|
360
367
|
"Calculations": "",
|
|
368
|
+
"Option": "",
|
|
361
369
|
"Number": "Númeru",
|
|
362
370
|
"Formula is empty. Add items to the formula from the lists on the left.": "",
|
|
363
371
|
"Consecutive math operators": "",
|
|
@@ -439,6 +447,7 @@
|
|
|
439
447
|
"Single value": "",
|
|
440
448
|
"Outlier table": "",
|
|
441
449
|
"All charts": "",
|
|
450
|
+
"Map": "Mapa",
|
|
442
451
|
"{{seriesName}} (trend)": "",
|
|
443
452
|
"Trend": "Tendensia",
|
|
444
453
|
"No legend for this series": "",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "",
|
|
164
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "Таҳрир",
|
|
166
167
|
"Write a reply": "",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "",
|
|
455
|
+
"Map": "Харитаҳо",
|
|
454
456
|
"{{seriesName}} (trend)": "",
|
|
455
457
|
"Trend": "Майлон",
|
|
456
458
|
"No legend for this series": "",
|
|
@@ -164,6 +164,7 @@
|
|
|
164
164
|
"line list": "",
|
|
165
165
|
"map": "мапа",
|
|
166
166
|
"visualization": "",
|
|
167
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
167
168
|
"Edit": "Редагувати",
|
|
168
169
|
"Write a reply": "Написати відповідь",
|
|
169
170
|
"Post reply": "",
|
|
@@ -461,6 +462,7 @@
|
|
|
461
462
|
"Single value": "Одне значення",
|
|
462
463
|
"Outlier table": "",
|
|
463
464
|
"All charts": "",
|
|
465
|
+
"Map": "Мапа",
|
|
464
466
|
"{{seriesName}} (trend)": "",
|
|
465
467
|
"Trend": "",
|
|
466
468
|
"No legend for this series": "",
|
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"line list": "",
|
|
163
163
|
"map": "",
|
|
164
164
|
"visualization": "",
|
|
165
|
+
"Untitled {{visualizationType}}, {{date}}": "",
|
|
165
166
|
"Edit": "ترمیم",
|
|
166
167
|
"Write a reply": "",
|
|
167
168
|
"Post reply": "",
|
|
@@ -451,6 +452,7 @@
|
|
|
451
452
|
"Single value": "",
|
|
452
453
|
"Outlier table": "",
|
|
453
454
|
"All charts": "",
|
|
455
|
+
"Map": "نقشہ",
|
|
454
456
|
"{{seriesName}} (trend)": "",
|
|
455
457
|
"Trend": "رجحان",
|
|
456
458
|
"No legend for this series": "",
|