diff --git a/src/bundle/Resources/translations/validators.en.xliff b/src/bundle/Resources/translations/validators.en.xliff
index a0952e56ab..198bd5fd97 100644
--- a/src/bundle/Resources/translations/validators.en.xliff
+++ b/src/bundle/Resources/translations/validators.en.xliff
@@ -6,6 +6,86 @@
The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.
+
+
+ Provided address does not exist
+ key: js.error.address_not_found
+
+
+
+ {fieldName} field is required
+ key: js.error.empty.field
+
+
+
+ A valid email address is required
+ key: js.error.invalid_email
+
+
+
+ {fieldName}: Cannot upload. File exceeds file size limit.
+ key: js.error.invalid_file_size
+
+
+
+ A valid URL is required
+ key: js.error.invalid_url
+
+
+
+ {fieldName} field has invalid values
+ key: js.error.invalid_value
+
+
+
+ {fieldName} value should be less than or equal to {maxValue}
+ key: js.error.is_greater
+
+
+
+ {fieldName} value should be greater than or equal to {minValue}
+ key: js.error.is_less
+
+
+
+ {fieldName} value should be a float number
+ key: js.error.is_not_float
+
+
+
+ {fieldName} value should be an integer
+ key: js.error.is_not_integer
+
+
+
+ Passwords do not match
+ key: js.error.not_same_passwords
+
+
+
+ {fieldName} field value is out of range. The value has to be between {min} and {max}
+ key: js.error.out_of_range_value
+
+
+
+ Please, provide latitude value in the Latitude field
+ key: js.error.provide_latitude_value
+
+
+
+ Please, provide longitude value in the Longitude field
+ key: js.error.provide_longitude_value
+
+
+
+ {fieldName} value should be less than or equal to {maxLength} characters
+ key: js.error.too_long
+
+
+
+ {fieldName} value should be greater than or equal to {minLength} characters
+ key: js.error.too_short
+ Define a Subtree or Section limitation
diff --git a/src/bundle/Resources/views/layout.html.twig b/src/bundle/Resources/views/layout.html.twig
index 6d6fe02575..4d4a4a059f 100644
--- a/src/bundle/Resources/views/layout.html.twig
+++ b/src/bundle/Resources/views/layout.html.twig
@@ -7,24 +7,24 @@