24 lines
740 B
TypeScript
24 lines
740 B
TypeScript
|
|
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",
|
|
};
|