diff --git a/ui-ngx/src/app/modules/home/components/entity/entity-chips.component.html b/ui-ngx/src/app/modules/home/components/entity/entity-chips.component.html
index c81857689f..c162540b0c 100644
--- a/ui-ngx/src/app/modules/home/components/entity/entity-chips.component.html
+++ b/ui-ngx/src/app/modules/home/components/entity/entity-chips.component.html
@@ -18,5 +18,5 @@
- {{ subEntity.name }}
+ {{ subEntity.name | customTranslate }}
diff --git a/ui-ngx/src/app/modules/home/components/relation/relation-table.component.html b/ui-ngx/src/app/modules/home/components/relation/relation-table.component.html
index fb49f299e9..4b0d4307f7 100644
--- a/ui-ngx/src/app/modules/home/components/relation/relation-table.component.html
+++ b/ui-ngx/src/app/modules/home/components/relation/relation-table.component.html
@@ -118,7 +118,7 @@
{{ 'relation.to-entity-name' | translate }}
- {{ relation.toName }}
+ {{ relation.toName | customTranslate }}
@@ -132,7 +132,7 @@
{{ 'relation.from-entity-name' | translate }}
- {{ relation.fromName }}
+ {{ relation.fromName | customTranslate }}
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/home-page/doc-link.component.html b/ui-ngx/src/app/modules/home/components/widget/lib/home-page/doc-link.component.html
index 4db770a919..dccfec03c2 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/home-page/doc-link.component.html
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/home-page/doc-link.component.html
@@ -49,7 +49,7 @@
{{ docLink.icon }}
- {{ docLink.name }}
+ {{ docLink.name | customTranslate }}
diff --git a/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.html b/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.html
index c9bca14480..46d90f5ce0 100644
--- a/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.html
+++ b/ui-ngx/src/app/shared/components/dialog/confirm-dialog.component.html
@@ -15,7 +15,7 @@
limitations under the License.
-->
-{{data.title}}
+{{data.title | customTranslate}}