anadea-identity 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +174 -0
  4. data/Rakefile +10 -0
  5. data/app/assets/images/facebook.png +0 -0
  6. data/app/assets/images/google_oauth2.png +0 -0
  7. data/app/assets/images/twitter.png +0 -0
  8. data/app/controllers/identity/base_controller.rb +5 -0
  9. data/app/controllers/identity/omniauth_callbacks_controller.rb +24 -0
  10. data/app/controllers/identity/users_controller.rb +58 -0
  11. data/app/models/identity/role.rb +16 -0
  12. data/app/models/identity/user.rb +47 -0
  13. data/app/views/devise/confirmations/new.html.erb +23 -0
  14. data/app/views/devise/mailer/confirmation_instructions.html.erb +6 -0
  15. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  16. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  17. data/app/views/devise/passwords/edit.html.erb +28 -0
  18. data/app/views/devise/passwords/new.html.erb +21 -0
  19. data/app/views/devise/registrations/edit.html.erb +34 -0
  20. data/app/views/devise/registrations/new.html.erb +28 -0
  21. data/app/views/devise/sessions/new.html.erb +31 -0
  22. data/app/views/devise/shared/_links.erb +25 -0
  23. data/app/views/devise/unlocks/new.html.erb +20 -0
  24. data/app/views/identity/users/edit.html.erb +70 -0
  25. data/app/views/identity/users/index.html.erb +55 -0
  26. data/config/locales/ca.yml +59 -0
  27. data/config/locales/de.yml +110 -0
  28. data/config/locales/en.yml +111 -0
  29. data/config/locales/es-AR.yml +51 -0
  30. data/config/locales/es-ES.yml +59 -0
  31. data/config/locales/es.yml +51 -0
  32. data/config/locales/fr.yml +51 -0
  33. data/config/locales/hu.yml +59 -0
  34. data/config/locales/it.yml +51 -0
  35. data/config/locales/nl.yml +59 -0
  36. data/config/locales/pl.yml +57 -0
  37. data/config/locales/pt-BR.yml +51 -0
  38. data/config/locales/ru.yml +56 -0
  39. data/config/locales/tr.yml +51 -0
  40. data/config/locales/zh-CN.yml +57 -0
  41. data/config/locales/zh-TW.yml +57 -0
  42. data/config/routes.rb +5 -0
  43. data/db/migrate/20150402142437_devise_create_identity_users.rb +42 -0
  44. data/db/migrate/20150402152859_rolify_create_identity_roles.rb +19 -0
  45. data/lib/anadea/identity.rb +1 -0
  46. data/lib/generators/identity/locales_generator.rb +8 -0
  47. data/lib/generators/identity/views_generator.rb +8 -0
  48. data/lib/identity.rb +50 -0
  49. data/lib/identity/admin/user.rb +89 -0
  50. data/lib/identity/devise_config.rb +31 -0
  51. data/lib/identity/engine.rb +21 -0
  52. data/lib/identity/version.rb +3 -0
  53. data/lib/identity/view_helper.rb +22 -0
  54. data/lib/tasks/whoami_tasks.rake +4 -0
  55. metadata +157 -0
@@ -0,0 +1,111 @@
1
+ en:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: "Resend confirmation instructions"
6
+ confirmed: "Your account was successfully confirmed."
7
+ send_instructions: "You will receive an email with instructions about how to confirm your account in a few minutes."
8
+ send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes."
9
+ failure:
10
+ already_authenticated: "You are already signed in."
11
+ inactive: "Your account is not activated yet."
12
+ invalid: "Invalid email or password."
13
+ invalid_token: "Invalid authentication token."
14
+ locked: "Your account is locked."
15
+ not_found_in_database: "Invalid email or password."
16
+ timeout: "Your session expired. Please sign in again to continue."
17
+ unauthenticated: "You need to sign in or sign up before continuing."
18
+ unconfirmed: "You have to confirm your account before continuing."
19
+ mailer:
20
+ confirmation_instructions:
21
+ action: "Confirm my account"
22
+ greeting: "Welcome %{recipient}!"
23
+ instruction: "You can confirm your account email through the link below:"
24
+ subject: "Confirmation instructions"
25
+ reset_password_instructions:
26
+ action: "Change my password"
27
+ greeting: "Hello %{recipient}!"
28
+ instruction: "Someone has requested a link to change your password, and you can do this through the link below."
29
+ instruction_2: "If you didn't request this, please ignore this email."
30
+ instruction_3: "Your password won't change until you access the link above and create a new one."
31
+ subject: "Reset password instructions"
32
+ unlock_instructions:
33
+ action: "Unlock my account"
34
+ greeting: "Hello %{recipient}!"
35
+ instruction: "Click the link below to unlock your account:"
36
+ message: "Your account has been locked due to an excessive amount of unsuccessful sign in attempts."
37
+ subject: "Unlock Instructions"
38
+ omniauth_callbacks:
39
+ failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
40
+ success: "Successfully authenticated from %{kind} account."
41
+ passwords:
42
+ new:
43
+ forgot_your_password: "Forgot your password?"
44
+ send_me_reset_password_instructions: "Send me reset password instructions"
45
+ edit:
46
+ change_your_password: "Change your password"
47
+ new_password: "New password"
48
+ confirm_new_password: "Confirm new password"
49
+ change_my_password: "Change my password"
50
+ no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
51
+ send_instructions: "You will receive an email with instructions about how to reset your password in a few minutes."
52
+ send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
53
+ updated: "Your password was changed successfully. You are now signed in."
54
+ updated_not_active: "Your password was changed successfully."
55
+ registrations:
56
+ edit:
57
+ are_you_sure: "Are you sure?"
58
+ cancel_my_account: "Cancel my account"
59
+ leave_blank_if_you_don_t_want_to_change_it: "leave blank if you dont want to change it"
60
+ title: "Edit %{resource}"
61
+ we_need_your_current_password_to_confirm_your_changes: "we need your current password to confirm your changes"
62
+ update: "Update"
63
+ unhappy: "Unhappy"
64
+ new:
65
+ sign_up: "Sign up"
66
+ destroyed: "Bye! Your account was successfully cancelled. We hope to see you again soon."
67
+ signed_up: "Welcome! You have signed up successfully."
68
+ signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
69
+ signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
70
+ signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please open the link to activate your account."
71
+ update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address."
72
+ updated: "You updated your account successfully."
73
+ sessions:
74
+ signed_in: "Signed in successfully."
75
+ signed_out: "Signed out successfully."
76
+ new:
77
+ sign_in: "Sign in"
78
+ shared:
79
+ links:
80
+ didn_t_receive_confirmation_instructions: "Didn't receive confirmation instructions?"
81
+ didn_t_receive_unlock_instructions: "Didn't receive unlock instructions?"
82
+ forgot_your_password: "Forgot your password?"
83
+ sign_in: "Sign in"
84
+ sign_out: "Sign out"
85
+ sign_in_with_provider: "Sign in with %{provider}"
86
+ sign_up: "Sign up"
87
+ unlocks:
88
+ new:
89
+ resend_unlock_instructions: "Resend unlock instructions"
90
+ send_instructions: "You will receive an email with instructions about how to unlock your account in a few minutes."
91
+ send_paranoid_instructions: "If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."
92
+ unlocked: "Your account has been unlocked successfully. Please sign in to continue."
93
+ errors:
94
+ messages:
95
+ already_confirmed: "was already confirmed, please try signing in"
96
+ confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
97
+ expired: "has expired, please request a new one"
98
+ not_found: "not found"
99
+ not_locked: "was not locked"
100
+ not_saved:
101
+ one: "1 error prohibited this %{resource} from being saved:"
102
+ other: "%{count} errors prohibited this %{resource} from being saved:"
103
+ activerecord:
104
+ models:
105
+ user: "User"
106
+ attributes:
107
+ user:
108
+ current_sign_in_at: "Signed in at"
109
+ email: "Email"
110
+ password: "Password"
111
+ last_sign_in_at: "Last signed in at"
@@ -0,0 +1,51 @@
1
+ es-AR:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Reenviar instrucciones de confirmación
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmar mi cuenta
9
+ greeting: Bienvenido %{recipient}!
10
+ instruction: ! 'Puedes confirmar tu cuenta a través del siguiente enlace:'
11
+ subject: Instrucciones de confirmación
12
+ reset_password_instructions:
13
+ action: Cambiar mi contraseña
14
+ greeting: Hola %{recipient}!
15
+ instruction: Alguien ha solicitado cambiar tu contraseña, puedes hacerlo a través del siguiente enlace.
16
+ instruction_2: Si no solicitaste esto, por favor ignora este e-mail.
17
+ instruction_3: Tu contraseña no cambiará hasta que accedas al siguiente enlace y crees una nueva.
18
+ subject: Instrucciones para cambiar tu contraseña
19
+ unlock_instructions:
20
+ action: Desbloquear mi cuenta
21
+ greeting: Hola %{recipient}!
22
+ instruction: ! 'Haz click en el siguiente enlace para desbloquear tu contraseña:'
23
+ message: Tu cuenta ha sido bloqueada debido a un excesivo número de intentos inválidos de acceso.
24
+ subject: Instrucciones de desbloqueo
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Olvidaste tu contraseña?
28
+ send_me_reset_password_instructions: Enviar instrucciones para resetear la contraseña
29
+ registrations:
30
+ edit:
31
+ are_you_sure: Estás seguro/a?
32
+ cancel_my_account: Cancelar mi cuenta
33
+ leave_blank_if_you_don_t_want_to_change_it: deja en blanco si no deseas cambiarla
34
+ title: Editar %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: necesitamos tu contraseña actual para confirmar tus cambios
36
+ new:
37
+ sign_up: Registrarse
38
+ sessions:
39
+ new:
40
+ sign_in: Ingresar
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: No recibiste instrucciones de confirmación?
44
+ didn_t_receive_unlock_instructions: No recibiste instrucciones de desbloqueo?
45
+ forgot_your_password: Olvidaste tu contraseña?
46
+ sign_in: Ingresar
47
+ sign_in_with_provider: Ingresar con %{provider}
48
+ sign_up: Registrarse
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Reenviar instrucciones de desbloqueo
@@ -0,0 +1,59 @@
1
+ es:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Reenviar instrucciones de confirmación
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmar mi cuenta
9
+ greeting: ¡Bienvenid@ %{recipient}!
10
+ instruction: ! 'Puedes confirmar el email de tu cuenta a través de este enlace:'
11
+ subject: Instrucciones de confirmación
12
+ reset_password_instructions:
13
+ action: Cambiar mi contraseña
14
+ greeting: ¡Hola %{recipient}!
15
+ instruction: Alguien ha solicitado un enlace para cambiar tu contraseña, lo que se puede realizar con el siguiente enlace.
16
+ instruction_2: Si tú no lo has solicitado, por favor ignora este email.
17
+ instruction_3: Tu contraseña no será cambiada hasta que accedas al enlace y crees una nueva.
18
+ subject: Instrucciones para resetear la contraseña
19
+ unlock_instructions:
20
+ action: Desbloquear mi cuenta
21
+ greeting: ¡Hola %{recipient}!
22
+ instruction: ! 'Haz click en el siguiente enlace para desbloquear tu cuenta:'
23
+ message: Tu cuenta se ha bloqueado debido a una cantidad excesiva de intentos fallidos para acceder.
24
+ subject: Instrucciones de desbloqueo
25
+ passwords:
26
+ new:
27
+ forgot_your_password: ¿Olvidaste tu contraseña?
28
+ send_me_reset_password_instructions: Enviar las instrucciones para resetear mi contraseña
29
+ edit:
30
+ change_your_password: Cambiar tu contraseña
31
+ new_password: Nueva contraseña
32
+ confirm_new_password: Confirmar nueva contraseña
33
+ change_my_password: Cambiar mi contraseña
34
+ registrations:
35
+ edit:
36
+ are_you_sure: ¿Estás segur@?
37
+ cancel_my_account: Cancelar mi cuenta
38
+ leave_blank_if_you_don_t_want_to_change_it: déjalo en blanco si no lo quieres cambiar
39
+ title: Editar %{resource}
40
+ we_need_your_current_password_to_confirm_your_changes: necesitamos tu contraseña actual para confirmar los cambios
41
+ update: Actualizar
42
+ cancel_my_account: Cancelar mi cuenta
43
+ unhappy: Descontento
44
+ new:
45
+ sign_up: Registrarse
46
+ sessions:
47
+ new:
48
+ sign_in: Iniciar sesión
49
+ shared:
50
+ links:
51
+ didn_t_receive_confirmation_instructions: ¿No has recibido las instrucciones de confirmación?
52
+ didn_t_receive_unlock_instructions: ¿No has recibido las instrucciones de desbloqueo?
53
+ forgot_your_password: ¿Olvidaste tu contraseña?
54
+ sign_in: Iniciar sesión
55
+ sign_in_with_provider: Iniciar sesión con %{provider}
56
+ sign_up: Registrarse
57
+ unlocks:
58
+ new:
59
+ resend_unlock_instructions: Reenviar instrucciones de desbloqueo
@@ -0,0 +1,51 @@
1
+ es:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Reenviar instrucciones de confirmación
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmar mi cuenta
9
+ greeting: ¡Bienvenido %{recipient}!
10
+ instruction: ! 'Usted puede confirmar el correo electrónico de su cuenta a través de este enlace:'
11
+ subject: Instrucciones de confirmación
12
+ reset_password_instructions:
13
+ action: Cambiar mi contraseña
14
+ greeting: ¡Hola %{recipient}!
15
+ instruction: Alguien ha solicitado un enlace para cambiar su contraseña, lo que se puede realizar con el siguiente enlace.
16
+ instruction_2: Si usted no lo ha solicitado, por favor ignore este correo electrónico.
17
+ instruction_3: Su contraseña no será cambiada hasta que usted acceda el enlace y cree uno nuevo.
18
+ subject: Instrucciones para resetear contraseña
19
+ unlock_instructions:
20
+ action: Desbloquear mi cuenta
21
+ greeting: ¡Hola %{recipient}!
22
+ instruction: ! 'Haga click en el siguiente enlace para desbloquear su cuenta:'
23
+ message: Su cuenta ha sido bloqueada debido a una cantidad excesiva de intentos infructuosos para ingresar.
24
+ subject: Instrucciones de desbloqueo
25
+ passwords:
26
+ new:
27
+ forgot_your_password: ¿Ha olvidado su contraseña?
28
+ send_me_reset_password_instructions: Envíeme las instrucciones para resetear mi contraseña
29
+ registrations:
30
+ edit:
31
+ are_you_sure: ¿Está usted seguro?
32
+ cancel_my_account: Anular mi cuenta
33
+ leave_blank_if_you_don_t_want_to_change_it: dejar en blanco si no desea cambiarlo
34
+ title: Editar %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: necesitamos su contraseña actual para confirmar los cambios
36
+ new:
37
+ sign_up: Registrarse
38
+ sessions:
39
+ new:
40
+ sign_in: Iniciar sésion
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: ¿No ha recibido las instrucciones de confirmación?
44
+ didn_t_receive_unlock_instructions: No ha recibido instrucciones para desbloquear?
45
+ forgot_your_password: ¿Ha olvidado su contraseña?
46
+ sign_in: Iniciar sésion
47
+ sign_in_with_provider: Iniciar sésion con %{provider}
48
+ sign_up: Registrarse
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Reenviar instrucciones para desbloquear
@@ -0,0 +1,51 @@
1
+ fr:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Renvoyer les instructions de confirmation
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Confirmer mon email
9
+ greeting: Bienvenue %{recipient}!
10
+ instruction: ! 'Vous pouvez confirmer votre email grâce au lien ci-dessous:'
11
+ subject: Instructions pour confirmer votre compte
12
+ reset_password_instructions:
13
+ action: Changer mon mot de passe
14
+ greeting: Bonjour %{recipient}!
15
+ instruction: ! 'Quelqu''un a demandé un lien pour changer votre mot de passe, le voici :'
16
+ instruction_2: Si vous n'avez pas émis cette demande, merci d'ignore cet email.
17
+ instruction_3: Votre mot de passe ne changera pas tant que vous n'aurez pas cliqué sur ce lien et renseigné un nouveau mot de passe.
18
+ subject: Instructions pour réinitialiser votre mot de passe
19
+ unlock_instructions:
20
+ action: Débloquer mon compte
21
+ greeting: Bonjour %{recipient}!
22
+ instruction: ! 'Suivez ce lien pour débloquer votre compte:'
23
+ message: Votre compte a été bloqué suite à un nombre d'essais de connexions manqués trop important
24
+ subject: Instructions pour débloquer votre compte
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Mot de passe oublié ?
28
+ send_me_reset_password_instructions: Envoyez-moi des instructions pour réinitialiser mon mot de passe
29
+ registrations:
30
+ edit:
31
+ are_you_sure: Êtes-vous sûr ?!
32
+ cancel_my_account: Supprimer mon compte
33
+ leave_blank_if_you_don_t_want_to_change_it: laissez ce champ vide pour le laisser inchangé
34
+ title: Éditer %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: nous avons besoin de votre mot de passe actuel pour valider ces modifications
36
+ new:
37
+ sign_up: Inscription
38
+ sessions:
39
+ new:
40
+ sign_in: Connexion
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: Vous n'avez pas reçu le mail de confirmation ?
44
+ didn_t_receive_unlock_instructions: Vous n'avez pas reçu le mail de débloquage ?
45
+ forgot_your_password: Mot de passe oublié ?
46
+ sign_in: Connexion
47
+ sign_in_with_provider: Connexion avec %{provider}
48
+ sign_up: Inscription
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Renvoyer les instructions de débloquage
@@ -0,0 +1,59 @@
1
+ hu:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Megerősítő levél újraküldése
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Fiók megerősítése
9
+ greeting: Kedves %{reciipient}!
10
+ instruction: ! 'A fiók megerősítéséhez rá kell kattintani az alábbi linkre:'
11
+ subject: A fiók megerősítéséhez szükséges teendők
12
+ reset_password_instructions:
13
+ action: Jelszó megváltoztatása
14
+ greeting: Kedves %{recipient}!
15
+ instruction: Ön, vagy valaki más az ön nevében jelszóváltoztatást kérvényezett, mely a lenti linkre kattintva lehetséges.
16
+ instruction_2: Amennyiben ön nem kezdeményezte a jelszavának megváltoztatását, kérem hagyja figyelmen kívül ezt a levelet.
17
+ instruction_3: Amennyiben nem kattint az alábbi linkre, jelszava továbbra is ugyanaz marad, mint eddig.
18
+ subject: A jelszó megváltoztatásához szükséges teendők
19
+ unlock_instructions:
20
+ action: Zárolás feloldása
21
+ greeting: Kedves %{recipient}!
22
+ instruction: ! 'A zárolás feloldásához az alábbi linkre kell kattintani:'
23
+ message: A felhasználói fiókja zárolva lett túl sok sikertelen belépési kísérlet miatt.
24
+ subject: Fiókzárolás feloldásához szükséges teendők
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Elfelejtette a jelszavát?
28
+ send_me_reset_password_instructions: Jelszóviszaállítási teendők küldése
29
+ edit:
30
+ change_your_password: Jelszó megváltoztatása
31
+ new_password: Új jelszó
32
+ confirm_new_password: Jelszó megerősítése
33
+ change_my_password: Jelszó megváltoztatása
34
+ registrations:
35
+ edit:
36
+ are_you_sure: Biztos benne?
37
+ cancel_my_account: Fiók megszüntetése
38
+ leave_blank_if_you_don_t_want_to_change_it: csak változás esetén kitöltendő
39
+ title: "%{resource} módosítása"
40
+ we_need_your_current_password_to_confirm_your_changes: a változtatás végrehajtásához szükséges a jelenlegi jelszó
41
+ update: Módosítás
42
+ cancel_my_account: Fiók megszüntetése
43
+ unhappy: Szomorú
44
+ new:
45
+ sign_up: Regisztráció
46
+ sessions:
47
+ new:
48
+ sign_in: Belépés
49
+ shared:
50
+ links:
51
+ didn_t_receive_confirmation_instructions: Nem kapta meg a megerősítő levelet?
52
+ didn_t_receive_unlock_instructions: Nem kapta meg a feloldáshoz a levelet?
53
+ forgot_your_password: Elfelejtette a jelszavát?
54
+ sign_in: Belépés
55
+ sign_in_with_provider: "%{provider} belépés"
56
+ sign_up: Regisztráció
57
+ unlocks:
58
+ new:
59
+ resend_unlock_instructions: Feloldási teendők újraküldése
@@ -0,0 +1,51 @@
1
+ it:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Invia di nuovo le istruzioni per la conferma
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Conferma il mio account
9
+ greeting: Benvenuto %{recipient}!
10
+ instruction: ! 'Puoi confermare il tuo account cliccando sul link qui sotto:'
11
+ subject: Istruzioni per la conferma
12
+ reset_password_instructions:
13
+ action: Cambia la mia password
14
+ greeting: Ciao %{recipient}!
15
+ instruction: Qualcuno ha richiesto di resettare la tua password, se lo vuoi davvero puoi farlo cliccando sul link qui sotto.
16
+ instruction_2: Se non sei stato tu ad effettuare questa richiesta puoi ignorare questa mail.
17
+ instruction_3: La tua password non cambierà finchè non accederai al link sopra.
18
+ subject: Istruzioni per resettare la password
19
+ unlock_instructions:
20
+ action: Sblocca il mio account
21
+ greeting: Ciao %{recipient}!
22
+ instruction: ! 'Clicca sul link qui sotto per sbloccare il tuo account:'
23
+ message: Il tuo account è stato bloccato a seguito di un numero eccessivo di tentativi di accesso falliti.
24
+ subject: Istruzioni per lo sblocco
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Password dimenticata?
28
+ send_me_reset_password_instructions: Inviami le istruzioni per resettare la password
29
+ registrations:
30
+ edit:
31
+ are_you_sure: Sei sicuro?
32
+ cancel_my_account: Rimuovi il mio account
33
+ leave_blank_if_you_don_t_want_to_change_it: lascia in bianco se non vuoi cambiarla
34
+ title: Modifica %{resource}
35
+ we_need_your_current_password_to_confirm_your_changes: abbiamo bisogno della tua password attuale per confermare i cambiamenti
36
+ new:
37
+ sign_up: Registrati
38
+ sessions:
39
+ new:
40
+ sign_in: Accedi
41
+ shared:
42
+ links:
43
+ didn_t_receive_confirmation_instructions: Non hai ricevuto le istruzioni per la conferma?
44
+ didn_t_receive_unlock_instructions: Non hai ricevuto le istruzioni per lo sblocco?
45
+ forgot_your_password: Password dimenticata?
46
+ sign_in: Accedi
47
+ sign_in_with_provider: Accedi con %{provider}
48
+ sign_up: Registrati
49
+ unlocks:
50
+ new:
51
+ resend_unlock_instructions: Invia di nuovo le istruzioni per lo sblocco
@@ -0,0 +1,59 @@
1
+ nl:
2
+ devise:
3
+ confirmations:
4
+ new:
5
+ resend_confirmation_instructions: Verstuur bevestiging-instructies opnieuw
6
+ mailer:
7
+ confirmation_instructions:
8
+ action: Bevestig mijn account
9
+ greeting: Welkom %{recipient}!
10
+ instruction: ! 'U kunt uw email bevestigen via onderstaande link:'
11
+ subject: Bevestiging-instructies
12
+ reset_password_instructions:
13
+ action: Verander mijn wachtwoord
14
+ greeting: Hallo %{recipient}!
15
+ instruction: Iemand heeft een link gevraagd om uw wachtwoord te wijzigen; dit kan via onderstaande link.
16
+ instruction_2: Als u dit niet heeft gedaan, negeer deze mail alstublieft.
17
+ instruction_3: Uw wachtwoord zal niet wijzigen totdat u bovenstaande link heeft gevolgd en een nieuw wachtwoord heeft aangevraagd.
18
+ subject: Reset wachtwoord instructies
19
+ unlock_instructions:
20
+ action: Ontgrendel mijn account
21
+ greeting: Hallo %{recipient}!
22
+ instruction: ! 'U kunt uw account ontgrendelen via onderstaande link:'
23
+ message: Uw account is vergrendeld wegens te veel mislukte pogingen in te loggen.
24
+ subject: Ontgrendel instructies
25
+ passwords:
26
+ new:
27
+ forgot_your_password: Wachtwoord vergeten?
28
+ send_me_reset_password_instructions: Stuur me wachtwoord reset instructies
29
+ edit:
30
+ change_your_password: Wijzig uw wachtwoord
31
+ new_password: Nieuw wachtwoord
32
+ confirm_new_password: Bevestig nieuw wachtwoord
33
+ change_my_password: Verander mijn wachtwoord
34
+ registrations:
35
+ edit:
36
+ are_you_sure: Weet u het zeker?
37
+ cancel_my_account: Annuleer mijn account
38
+ leave_blank_if_you_don_t_want_to_change_it: laat leeg als u het niet wilt wijzigen
39
+ title: Bewerk %{resource}
40
+ we_need_your_current_password_to_confirm_your_changes: we hebben uw huidige wachtwoord nodig om uw veranderingen te bevestigen
41
+ update: Bijwerken
42
+ cancel_my_account: Annuleer mijn account
43
+ unhappy: Niet blij
44
+ new:
45
+ sign_up: Maak account aan
46
+ sessions:
47
+ new:
48
+ sign_in: Inloggen
49
+ shared:
50
+ links:
51
+ didn_t_receive_confirmation_instructions: Geen bevestigingsmail ontvangen?
52
+ didn_t_receive_unlock_instructions: Geen ontgrendel-instructies ontvangen?
53
+ forgot_your_password: Wachtwoord vergeten?
54
+ sign_in: Inloggen
55
+ sign_in_with_provider: Inloggen met %{provider}
56
+ sign_up: Maak account aan
57
+ unlocks:
58
+ new:
59
+ resend_unlock_instructions: Verstuur ontgrendel-instructies opnieuw