Refactor the Translations language to seperate their own directory, for easy to maintenable and scalable language

This commit is contained in:
Tola Leng
2025-05-23 20:39:25 +08:00
parent b4bef67220
commit 8910c1355c
40 changed files with 1416 additions and 618 deletions
+23
View File
@@ -0,0 +1,23 @@
import { LoginTranslations } from '../types/login';
export const loginTranslations: LoginTranslations = {
signInToYourAccount: "Sign in to your account",
dontHaveAccount: "Don't have an account?",
createOne: "Create one",
signInWithGoogle: "Sign in with Google",
orContinueWith: "OR",
email: "Email",
password: "Password",
forgot: "Forgot?",
signIn: "Sign In",
signingIn: "Signing in...",
loginSuccessful: "Login successful",
loginSuccessMessage: "You have been logged in successfully.",
loginFailed: "Login failed",
authenticationFailed: "Authentication failed",
bySigningIn: "By signing in, you agree to our",
termsAndConditions: "Terms & Conditions",
and: "and",
privacyPolicy: "Privacy Policy",
};