diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/Ingestion.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/Ingestion.component.tsx index bde2d3fc55f..4deaf1ee8b7 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/Ingestion.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/Ingestion/Ingestion.component.tsx @@ -262,7 +262,11 @@ const Ingestion: React.FC = ({ ({ - name: `Add ${startCase(type)} Ingestion`, + name: `${t('label.add')} ${startCase(type)} ${ + type === PipelineType.ElasticSearchReindex + ? '' + : t('label.ingestion') + }`, value: type, }))} onSelect={(_e, value) => diff --git a/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json b/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json index fa9b6988b23..7c962c1ac88 100644 --- a/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json +++ b/openmetadata-ui/src/main/resources/ui/src/locale/languages/en-us.json @@ -309,6 +309,7 @@ "server": "Server", "feature-plural": "Features", "detail-plural": "Details", + "ingestion": "Ingestion", "add-workflow-ingestion": "Add {{workflow}} Ingestion", "clearAll": "Clear All", "view-less": "View less",