diff --git a/src/locales/de/auth.json b/src/locales/de/auth.json
new file mode 100644
index 00000000..c60fc00d
--- /dev/null
+++ b/src/locales/de/auth.json
@@ -0,0 +1,15 @@
+{
+ "login": {
+ "INVALID_LOGIN": "Ungültige E-Mail oder Telefonnummer",
+ "INVALID_PASSWORD": "Ungültiges Passwort"
+ },
+ "register": {
+ "REGISTRATION_DISABLED": "Neue Nutzer können sich nicht mehr registrieren",
+ "INVITE_ONLY": "Du musst eingeladen werden, um dich zu registrieren",
+ "EMAIL_INVALID": "Ungültige E-Mail Adresse",
+ "EMAIL_ALREADY_REGISTERED": "Es existiert bereits ein Account mit dieser E-Mail Adresse",
+ "DATE_OF_BIRTH_UNDERAGE": "Du musst mindestens {{years}} Jahre alt sein",
+ "CONSENT_REQUIRED": "Du musst den AGB's und Datenschutzbestimmungen zustimmen",
+ "USERNAME_TOO_MANY_USERS": "Es haben bereits zu viele Nutzer den gleichen Nutzernamen"
+ }
+}
\ No newline at end of file
diff --git a/src/locales/de/common.json b/src/locales/de/common.json
new file mode 100644
index 00000000..36c24671
--- /dev/null
+++ b/src/locales/de/common.json
@@ -0,0 +1,18 @@
+{
+ "field": {
+ "BASE_TYPE_REQUIRED": "Dieses Feld ist erforderlich",
+ "BASE_TYPE_STRING": "Dieses Feld muss ein Text sein",
+ "BASE_TYPE_NUMBER": "Dieses Feld muss eine Nummer sein",
+ "BASE_TYPE_BIGINT": "Dieses Feld muss eine Nummer sein",
+ "BASE_TYPE_BOOLEAN": "Diese Feld muss true oder false sein",
+ "BASE_TYPE_CHOICES": "Dieses Feld muss ({{types}}) sein",
+ "BASE_TYPE_CLASS": "Dieses Feld muss ein {{type}} sein",
+ "BASE_TYPE_OBJECT": "Dieses Feld muss ein Objekt sein",
+ "BASE_TYPE_ARRAY": "Dieses Feld muss ein Array sein",
+ "UNKOWN_FIELD": "Unbekannter Wert: {{key}}",
+ "BASE_TYPE_CONSTANT": "Dieses Feld muss {{value}} sein",
+ "EMAIL_TYPE_INVALID_EMAIL": "Keine gültige E-Mail Adresse",
+ "DATE_TYPE_PARSE": "Ungültiges Datum {{date}}, muss dem ISO8601 Standard entsprechen",
+ "BASE_TYPE_BAD_LENGTH": "Muss {{length}} lang sein"
+ }
+}
\ No newline at end of file
diff --git a/src/locales/en/auth.json b/src/locales/en/auth.json
new file mode 100644
index 00000000..ea5633df
--- /dev/null
+++ b/src/locales/en/auth.json
@@ -0,0 +1,15 @@
+{
+ "login": {
+ "INVALID_LOGIN": "Invalid E-Mail or Phone",
+ "INVALID_PASSWORD": "Invalid Password"
+ },
+ "register": {
+ "REGISTRATION_DISABLED": "New user registration is disabled",
+ "INVITE_ONLY": "You must be invited to register",
+ "EMAIL_INVALID": "Invalid Email",
+ "EMAIL_ALREADY_REGISTERED": "Email is already registered",
+ "DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} or older",
+ "CONSENT_REQUIRED": "You must agree to Terms of Service and Privacy Policy.",
+ "USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
+ }
+}
\ No newline at end of file
diff --git a/src/locales/en/common.json b/src/locales/en/common.json
new file mode 100644
index 00000000..7a0254fc
--- /dev/null
+++ b/src/locales/en/common.json
@@ -0,0 +1,18 @@
+{
+ "field": {
+ "BASE_TYPE_REQUIRED": "This field is required",
+ "BASE_TYPE_STRING": "This field must be a string",
+ "BASE_TYPE_NUMBER": "This field must be a number",
+ "BASE_TYPE_BIGINT": "This field must be a bigint",
+ "BASE_TYPE_BOOLEAN": "This field must be a boolean",
+ "BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
+ "BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
+ "BASE_TYPE_OBJECT": "This field must be a object",
+ "BASE_TYPE_ARRAY": "This field must be an array",
+ "UNKOWN_FIELD": "Unkown key: {{key}}",
+ "BASE_TYPE_CONSTANT": "This field must be {{value}}",
+ "EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
+ "DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
+ "BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
+ }
+}
\ No newline at end of file
|