From 72cc46009e891f3104602fd3b73e6ac23576f55d Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Thu, 29 Sep 2022 22:47:30 +0800 Subject: feat: !WIP Implement password reset request fulfillment --- apps/kit/src/lib/i18n/en/index.ts | 3 ++- apps/kit/src/lib/i18n/i18n-types.ts | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'apps/kit/src/lib/i18n') diff --git a/apps/kit/src/lib/i18n/en/index.ts b/apps/kit/src/lib/i18n/en/index.ts index 5a3ccc8..003de0d 100644 --- a/apps/kit/src/lib/i18n/en/index.ts +++ b/apps/kit/src/lib/i18n/en/index.ts @@ -20,7 +20,8 @@ const en: BaseTranslation = { createANewAccount: "create a new account", notMyComputer: "This is not my computer", resetPassword: "Reset password", - createYourNewAccount: "Create your new account" + createYourNewAccount: "Create your new account", + newPassword: "New password" }; export default en; diff --git a/apps/kit/src/lib/i18n/i18n-types.ts b/apps/kit/src/lib/i18n/i18n-types.ts index 3ace345..aedf48b 100644 --- a/apps/kit/src/lib/i18n/i18n-types.ts +++ b/apps/kit/src/lib/i18n/i18n-types.ts @@ -99,6 +99,10 @@ type RootTranslation = { * Create your new account */ createYourNewAccount: string + /** + * New password + */ + newPassword: string } export type NamespaceAppTranslation = { @@ -504,6 +508,10 @@ export type TranslationFunctions = { * Create your new account */ createYourNewAccount: () => LocalizedString + /** + * New password + */ + newPassword: () => LocalizedString app: { nav: { /** -- cgit v1.3