diff --git a/frontend/src/uxbox/main/locales/en.cljs b/frontend/src/uxbox/main/locales/en.cljs index 1fbe2cf3a..1a3c9c92c 100644 --- a/frontend/src/uxbox/main/locales/en.cljs +++ b/frontend/src/uxbox/main/locales/en.cljs @@ -116,6 +116,7 @@ "settings.profile" "PROFILE" "settings.password" "PASSWORD" "settings.notifications" "NOTIFICATIONS" + "settings.exit" "EXIT" "settings.profile.profile-saved" "Profile saved successfully!" "settings.profile.profile.profile-saved" "Name, username and email" diff --git a/frontend/src/uxbox/main/locales/fr.cljs b/frontend/src/uxbox/main/locales/fr.cljs index b40733f68..d7e710957 100644 --- a/frontend/src/uxbox/main/locales/fr.cljs +++ b/frontend/src/uxbox/main/locales/fr.cljs @@ -116,6 +116,7 @@ "settings.profile" "PROFIL" "settings.password" "MOT DE PASSE" "settings.notifications" "NOTIFICATIONS" + "settings.exit" "QUITTER" "settings.profile.profile-saved" "Profil enregistré avec succès !" "settings.profile.profile.profile-saved" "Nom, nom d'utilisateur et adresse email" diff --git a/frontend/src/uxbox/main/ui/settings/header.cljs b/frontend/src/uxbox/main/ui/settings/header.cljs index 61b227792..5444f5b3c 100644 --- a/frontend/src/uxbox/main/ui/settings/header.cljs +++ b/frontend/src/uxbox/main/ui/settings/header.cljs @@ -45,6 +45,6 @@ [:li {:class (when notifications? "current")} (header-link :settings/notifications (tr "settings.notifications"))] [:li {:on-click #(st/emit! (da/logout))} - (header-link :settings/profile (tr "ds.user.exit"))]] + (header-link :settings/profile (tr "settings.exit"))]] (user)]))