From a81584f37dbbb9c0a94eb78168874f13645651ba Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Mon, 10 Oct 2022 13:27:19 +0100 Subject: [PATCH] Missing i18n (#325) --- public/locales/en/app.json | 1 + src/components/standard-layout.tsx | 12 ++++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/en/app.json b/public/locales/en/app.json index a8eccd1ac..9f3c1f668 100644 --- a/public/locales/en/app.json +++ b/public/locales/en/app.json @@ -127,5 +127,6 @@ "you": "You", "yourDetails": "Your details", "yourName": "Your name…", + "yourProfile": "Your profile", "yourPolls": "Your polls" } diff --git a/src/components/standard-layout.tsx b/src/components/standard-layout.tsx index 7a73a801d..e468914c7 100644 --- a/src/components/standard-layout.tsx +++ b/src/components/standard-layout.tsx @@ -202,10 +202,18 @@ const UserDropdown: React.VoidFunctionComponent< /> ) : null} {!user.isGuest ? ( - + ) : null} {user.isGuest ? ( - + ) : null}