diff --git a/Resources/translations/Login.en.yml b/Resources/translations/Login.en.yml
new file mode 100644
index 0000000..c7e3a44
--- /dev/null
+++ b/Resources/translations/Login.en.yml
@@ -0,0 +1,13 @@
+login.login: "Login"
+login.username: "Username"
+login.password: "Password"
+login.submit: "Login"
+login.bad_credentials: "Bad credentials"
+login.service_down: 'Authentication service down'
+login.incorrect_credentialas: 'Incorrect username or password for %username%'
+login.class_not_supported: 'Instances of "%class%" are not supported.'
+login.method_not_supported: 'This method is not soported'
+login.incorrect_facebookid: 'Incorrect facebookId'
+login.facebookid_not_empty: 'The facebookId cannot be empty.'
+login.password_not_empty: 'The password cannot be empty.'
+login.username_not_empty: 'The username cannot be empty.'
\ No newline at end of file
diff --git a/Resources/translations/Login.es.yml b/Resources/translations/Login.es.yml
new file mode 100644
index 0000000..eb95790
--- /dev/null
+++ b/Resources/translations/Login.es.yml
@@ -0,0 +1,6 @@
+login.login: "Autenticar"
+login.username: "Nombre de usuario"
+login.password: "Contraseña"
+login.submit: "Autenticar"
+login.bad_credentials: "Usuario o contraseña incorrecto"
+login.service_down: 'Servicio de autenticación no disponible'
\ No newline at end of file
diff --git a/Resources/views/Secured/login.html.twig b/Resources/views/Secured/login.html.twig
index 0592ac3..4319d55 100755
--- a/Resources/views/Secured/login.html.twig
+++ b/Resources/views/Secured/login.html.twig
@@ -1,27 +1,29 @@
{% extends "ChateaSecureBundle::layout.html.twig" %}
+{% trans_default_domain 'Login' %}
+
{% block body %}
- Login
+ {{ "login.login" | trans }}
{% if error %}
- {{ error.message }}
+ {{ error }}
{% endif %}