From 87265e5cccce98b6ab9ddd2577e3f870fb3e0424 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Mon, 17 Feb 2025 18:32:54 +0100 Subject: [PATCH] Add "Repeat Password" label to i18n and form components --- src/components/ResetPasswordComponent.svelte | 4 +--- src/i18n/common/de.json | 3 ++- src/i18n/common/en.json | 3 ++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/ResetPasswordComponent.svelte b/src/components/ResetPasswordComponent.svelte index 14e4755..64a645b 100644 --- a/src/components/ResetPasswordComponent.svelte +++ b/src/components/ResetPasswordComponent.svelte @@ -60,11 +60,9 @@ - + -

- {t("login.setPassword")}

{#if error}

{error}

diff --git a/src/i18n/common/de.json b/src/i18n/common/de.json index 83d3a9b..1d2a995 100644 --- a/src/i18n/common/de.json +++ b/src/i18n/common/de.json @@ -205,7 +205,8 @@ }, "label": { "username": "Nutzername", - "password": "Passwort" + "password": "Passwort", + "repeat": "Passwort Wiederholen" }, "setPassword": "Wie setzte ich mein Passwort?", "submit": "Login", diff --git a/src/i18n/common/en.json b/src/i18n/common/en.json index af6a7d8..84ea819 100644 --- a/src/i18n/common/en.json +++ b/src/i18n/common/en.json @@ -149,7 +149,8 @@ }, "label": { "username": "Username", - "password": "Password" + "password": "Password", + "repeat": "Repeat Password" }, "setPassword": "How to set a Password", "submit": "Login",