diff --git a/frontend/messages/en.json b/frontend/messages/en.json index a1d4cdc10..f276862e3 100644 --- a/frontend/messages/en.json +++ b/frontend/messages/en.json @@ -394,5 +394,20 @@ "riskAcceptanceRiskScenariosHelpText": "The risk scenarios that are accepted", "attachmentHelpText": "File for evidence (eg. screenshot, log file, etc.)", "attachmentWarningText": "WARNING: Uploading a new file will overwrite the existing one", - "isActiveHelpText": "Designates whether this user should be treated as active" + "isActiveHelpText": "Designates whether this user should be treated as active", + "helloThere": "Hello there 👋", + "thisIsCisoAssistant": "This is CISO Assistant.", + "yourStreamlined": "Your streamlined", + "oneStopShop": "one-stop shop", + "forComplianceRiskManagement": "for compliance and risk management.", + "youCanSetPAsswordHere": "You can set your password here", + "setPassword": "Set password", + "logIntoYourAccount": "Log into your account", + "youNeedToLogIn": "You need to login to access all the features", + "forgtPassword": "Forgot password", + "login": "Login", + "password": "Password", + "enterYourEmail": "Enter your email address below, and we'll email instructions for setting a new one", + "send": "Send", + "goBackToLogin": "Go back to login" } diff --git a/frontend/src/routes/(authentication)/first-connexion/+page.svelte b/frontend/src/routes/(authentication)/first-connexion/+page.svelte index 2d90f10b3..0f39faee3 100644 --- a/frontend/src/routes/(authentication)/first-connexion/+page.svelte +++ b/frontend/src/routes/(authentication)/first-connexion/+page.svelte @@ -6,6 +6,8 @@ import { ResetPasswordSchema } from '$lib/utils/schemas'; import Typewriter from 'svelte-typewriter'; + import * as m from '$paraglide/messages.js' + export let data: PageData; @@ -19,15 +21,15 @@
- You can set your password here.
+ {m.youCanSetPAsswordHere()}.
{m.setPassword()}
diff --git a/frontend/src/routes/(authentication)/login/+page.svelte b/frontend/src/routes/(authentication)/login/+page.svelte index 252e8daec..515b72acb 100644 --- a/frontend/src/routes/(authentication)/login/+page.svelte +++ b/frontend/src/routes/(authentication)/login/+page.svelte @@ -6,6 +6,8 @@ import SuperForm from '$lib/components/Forms/Form.svelte'; import Typewriter from 'svelte-typewriter'; + import * as m from '$paraglide/messages.js'; + export let data: PageData; const cursor = false; @@ -22,15 +24,15 @@- You need to login to access all the features + {m.youNeedToLogIn()}
{m.login()}
diff --git a/frontend/src/routes/(authentication)/password-reset/+page.svelte b/frontend/src/routes/(authentication)/password-reset/+page.svelte index 716cfda74..80f0424b5 100644 --- a/frontend/src/routes/(authentication)/password-reset/+page.svelte +++ b/frontend/src/routes/(authentication)/password-reset/+page.svelte @@ -5,6 +5,8 @@ import TextField from '$lib/components/Forms/TextField.svelte'; import SuperForm from '$lib/components/Forms/Form.svelte'; + import * as m from '$paraglide/messages.js'; + export let data: PageData; @@ -21,10 +23,10 @@- Enter your email address below, and we'll email instructions for setting a new one. + {m.enterYourEmail()}.
{m.send()}
@@ -48,7 +50,7 @@ class="flex items-center space-x-2 text-primary-800 hover:text-primary-600" > -go back to login
+{m.goBackToLogin()}