diff --git a/messages/en.json b/messages/en.json index 5111cf0..7ef2725 100644 --- a/messages/en.json +++ b/messages/en.json @@ -82,7 +82,9 @@ "loginBtn": "Login", "loginGoogle": "Login with Google", "noAccount": "Don't have an account yet?", - "register": "Register" + "register": "Register", + "emailFormat": "Invalid email format", + "passwordMin": "Password must be at least 8 characters long" }, "forgotPasswordEmail": { "enter": "Enter email", @@ -104,5 +106,17 @@ "incorrect": "Incorrect code", "serverError": "Error on the server side", "errorOccured": "An unexpected error occurred" + }, + "resetCode": { + "enterPassword": "Enter new password", + "passInfo": "Password must contain at least 8 characters, 1 capital letter and a number", + "enterPass": "Enter password", + "repeatPassword": "Repeat password", + "repeatPass": "Repeat new password", + "save": "Save", + "noMatch": "Passwords do not match", + "serverError": "Error on the server side", + "noPassword": "Weak password, please avoid obvious passwords", + "errorOccured": "An unexpected error occurred" } } diff --git a/messages/kg.json b/messages/kg.json index b90e38b..f5a2087 100644 --- a/messages/kg.json +++ b/messages/kg.json @@ -82,7 +82,9 @@ "loginBtn": "Кирүү", "loginGoogle": "Google аркылуу кируңуз", "noAccount": "Аккаунт жок?", - "register": "Каттоо" + "register": "Каттоо", + "emailFormat": "Электрондук почта форматы жараксыз", + "passwordMin": "Сырсөз кеминде 8 белгиден турушу керек" }, "forgotPasswordEmail": { "enter": "Электрондук почтаны киргизиңиз", @@ -104,5 +106,17 @@ "incorrect": "Код туура эмес", "serverError": "Сервер тараптагы ката", "errorOccured": "Күтүлбөгөн ката кетти" + }, + "resetCode": { + "enterPassword": "Жаңы сырсөздү киргизиңиз", + "passInfo": "Сырсөз кеминде 8 белгиден, 1 баш тамгадан жана сандан турушу керек", + "enterPass": "Сырсөздү киргизиңиз", + "repeatPassword": "Паролду кайталоо", + "repeatPass": "Жаңы сырсөздү кайталоо", + "save": "Сактоо", + "noMatch": "Сырсөздөр дал келбейт", + "serverError": "Сервер тараптагы ката", + "noPassword": "Начар сырсөз, ачык сырсөздөрдү колдонбоңуз", + "errorOccured": "Күтүлбөгөн ката кетти" } } diff --git a/messages/ru.json b/messages/ru.json index b498744..4235b19 100644 --- a/messages/ru.json +++ b/messages/ru.json @@ -73,7 +73,9 @@ "loginBtn": "Войти", "loginGoogle": "Войти через Google", "noAccount": "Еще нет аккаунта?", - "register": "Зарегистрируйтесь" + "register": "Зарегистрируйтесь", + "emailFormat": "Неверный формат email", + "passwordMin": "Пароль должен содержать минимум 8 символов" }, "forgotPasswordEmail": { "enter": "Введите email", @@ -95,5 +97,17 @@ "incorrect": "Неверный код", "serverError": "Ошибка на стороне сервера", "errorOccured": "Произошла непредвиденная ошибка" + }, + "resetCode": { + "enterPassword": "Введите новый пароль", + "passInfo": "Пароль должен содерждать минимум 8 символов, 1 заглавная буква и цифра", + "enterPass": "Введите пароль", + "repeatPassword": "Повторите пароль", + "repeatPass": "Повторите новый пароль", + "save": "Сохранить", + "noMatch": "Пароли не совпадают", + "serverError": "Ошибка на стороне сервера", + "noPassword": "Слабый пароль, прошу избегайте очевидных паролей", + "errorOccured": "Произошла непредвиденная ошибка" } } diff --git a/src/app/[locale]/sign-in/reset-code/page.tsx b/src/app/[locale]/sign-in/reset-code/page.tsx index 4e48aab..2853ff1 100644 --- a/src/app/[locale]/sign-in/reset-code/page.tsx +++ b/src/app/[locale]/sign-in/reset-code/page.tsx @@ -1,8 +1,10 @@ import Image from "next/image"; import key from "./icons/key.svg"; import ResetCodeForm from "@/widgets/forms/ResetCodeForm"; +import { useTranslations } from "next-intl"; const ResetCode = () => { + const t = useTranslations("resetCode"); return (
- Пароль должен содерждать минимум 8 символов, 1 заглавная буква и - цифра -
+{t("passInfo")}