diff --git a/frontend/src/components/App/Home/index.tsx b/frontend/src/components/App/Home/index.tsx index 7c58cb91a7..94c5e95159 100644 --- a/frontend/src/components/App/Home/index.tsx +++ b/frontend/src/components/App/Home/index.tsx @@ -248,9 +248,9 @@ function HomeComponent(props: HomeComponentProps) { function getOrigin(cluster: Cluster): string { if (cluster.meta_data?.source === 'kubeconfig') { const kubeconfigPath = process.env.KUBECONFIG ?? '~/.kube/config'; - return t('translation|Kubeconfig') + ` (${kubeconfigPath})`; + return `Kubeconfig: ${kubeconfigPath}`; } else if (cluster.meta_data?.source === 'dynamic_cluster') { - return t('translation|Dynamic cluster'); + return t('translation|Plugin'); } else if (cluster.meta_data?.source === 'in_cluster') { return t('translation|In-cluster'); } diff --git a/frontend/src/i18n/locales/de/translation.json b/frontend/src/i18n/locales/de/translation.json index 73270aaa67..d38233dbb8 100644 --- a/frontend/src/i18n/locales/de/translation.json +++ b/frontend/src/i18n/locales/de/translation.json @@ -16,8 +16,7 @@ "Delete Cluster": "", "Are you sure you want to remove the cluster \"{{ clusterName }}\"?": "Sind Sie sicher, dass Sie den Cluster \"{{ clusterName }}\" entfernen möchten?", "Active": "Aktiv", - "Kubeconfig": "", - "Dynamic cluster": "", + "Plugin": "", "In-cluster": "", "Home": "Startseite", "All Clusters": "Alle Cluster", diff --git a/frontend/src/i18n/locales/en/translation.json b/frontend/src/i18n/locales/en/translation.json index f4beb9243e..9d2d1ae3a1 100644 --- a/frontend/src/i18n/locales/en/translation.json +++ b/frontend/src/i18n/locales/en/translation.json @@ -16,8 +16,7 @@ "Delete Cluster": "Delete Cluster", "Are you sure you want to remove the cluster \"{{ clusterName }}\"?": "Are you sure you want to remove the cluster \"{{ clusterName }}\"?", "Active": "Active", - "Kubeconfig": "Kubeconfig", - "Dynamic cluster": "Dynamic cluster", + "Plugin": "Plugin", "In-cluster": "In-cluster", "Home": "Home", "All Clusters": "All Clusters", diff --git a/frontend/src/i18n/locales/es/translation.json b/frontend/src/i18n/locales/es/translation.json index f746435cf1..9c89db8be1 100644 --- a/frontend/src/i18n/locales/es/translation.json +++ b/frontend/src/i18n/locales/es/translation.json @@ -16,8 +16,7 @@ "Delete Cluster": "", "Are you sure you want to remove the cluster \"{{ clusterName }}\"?": "¿Está seguro de que desea eliminar el cluster \"{{ clusterName }}\"?", "Active": "Activo", - "Kubeconfig": "", - "Dynamic cluster": "", + "Plugin": "", "In-cluster": "", "Home": "Inicio", "All Clusters": "Todos los Clusters", diff --git a/frontend/src/i18n/locales/fr/translation.json b/frontend/src/i18n/locales/fr/translation.json index 921ccd5b8d..1f998da65c 100644 --- a/frontend/src/i18n/locales/fr/translation.json +++ b/frontend/src/i18n/locales/fr/translation.json @@ -16,8 +16,7 @@ "Delete Cluster": "", "Are you sure you want to remove the cluster \"{{ clusterName }}\"?": "Voulez-vous vraiment supprimer le cluster \"{{ clusterName }}\"?", "Active": "Actif", - "Kubeconfig": "", - "Dynamic cluster": "", + "Plugin": "", "In-cluster": "", "Home": "Accueil", "All Clusters": "Tous les clusters", diff --git a/frontend/src/i18n/locales/pt/translation.json b/frontend/src/i18n/locales/pt/translation.json index ebb483ecf9..f7f0e6c29b 100644 --- a/frontend/src/i18n/locales/pt/translation.json +++ b/frontend/src/i18n/locales/pt/translation.json @@ -16,8 +16,7 @@ "Delete Cluster": "", "Are you sure you want to remove the cluster \"{{ clusterName }}\"?": "Tem a certeza que quer remover o cluster \"{{ clusterName }}\"?", "Active": "Activo", - "Kubeconfig": "", - "Dynamic cluster": "", + "Plugin": "", "In-cluster": "", "Home": "Início", "All Clusters": "Todos os Clusters",