54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
const en = {
|
|
hello: "hello!",
|
|
search: "Search...",
|
|
username: "Username",
|
|
email: "Email",
|
|
password: "Password",
|
|
confirmPassword: "Confirm password",
|
|
submit: "Submit",
|
|
|
|
createPost: "Write post",
|
|
|
|
profile: "Profile",
|
|
yourBlogs: "Your blogs",
|
|
|
|
signIn: "Log in",
|
|
signOut: "Sign out",
|
|
|
|
capsLogWarning: "CapsLock is on",
|
|
|
|
registerForm: "Register",
|
|
loginForm: "Log in",
|
|
|
|
alreadyRegistered: "Already registered?",
|
|
|
|
suggestRegister: "Don't have an account?",
|
|
register: "Register",
|
|
now: "now!",
|
|
|
|
logIn: "Log in",
|
|
|
|
updatePost: "Update",
|
|
|
|
byPressingTheButton: "By pressing the submit button you agree with our",
|
|
termsOfService: "Terms Of Service",
|
|
|
|
discover: "Discover something new...",
|
|
|
|
home: "Home",
|
|
following: "Following",
|
|
|
|
errors: {
|
|
enterUsername: "Please enter your username",
|
|
enterEmail: "Please enter your email",
|
|
invalidEmail: "Please enter correct email",
|
|
enterPassword: "Please enter your password",
|
|
passwordsMismatch: "Passwords must be the same",
|
|
invalidLoginData: "Invalid username or password",
|
|
invalidRegisterData: "Invalid register data",
|
|
unauthorized: "You need to be authorized to do that",
|
|
},
|
|
};
|
|
|
|
export default en;
|