1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import type { BaseTranslation } from "../i18n-types";
const en: BaseTranslation = {
or: "Or",
emailAddress: "Email address",
password: "Password",
pageNotFound: "Page not found",
noInternet: "It seems like your device does not have a internet connection, please check your connection.",
reset: "Reset",
of: "{0} of {1}",
isRequired: "{0} is required",
submit: "Submit",
success: "Success",
tryAgainSoon: "Try again soon",
unexpectedError: "An unexpected error occured",
requestAPasswordReset: "Request a password reset",
signIntoYourAccount: "sign into your account",
requestSentMessage: "If we find your email address in our systems, you will receive an email with instructions on how to set a new password for your account.",
signIn: "Sign In",
createANewAccount: "create a new account",
notMyComputer: "This is not my computer",
resetPassword: "Reset password",
createYourNewAccount: "Create your new account"
};
export default en;
|