revise_auth 0.4.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +120 -7
- data/app/controllers/revise_auth/email_controller.rb +3 -3
- data/app/controllers/revise_auth/password_controller.rb +2 -2
- data/app/controllers/revise_auth/password_resets_controller.rb +5 -7
- data/app/controllers/revise_auth/registrations_controller.rb +4 -4
- data/app/controllers/revise_auth/sessions_controller.rb +1 -1
- data/app/views/revise_auth/mailer/confirm_email.html.erb +4 -4
- data/app/views/revise_auth/mailer/password_reset.html.erb +3 -4
- data/app/views/revise_auth/password_resets/edit.html.erb +3 -3
- data/app/views/revise_auth/password_resets/new.html.erb +4 -2
- data/app/views/revise_auth/registrations/edit.html.erb +13 -13
- data/app/views/revise_auth/registrations/new.html.erb +5 -3
- data/app/views/revise_auth/sessions/new.html.erb +4 -6
- data/app/views/revise_auth/shared/_links.html.erb +15 -0
- data/config/i18n-tasks.yml +161 -0
- data/config/locales/cs.yml +68 -0
- data/config/locales/de.yml +66 -14
- data/config/locales/el.yml +66 -14
- data/config/locales/en.yml +66 -16
- data/config/locales/es.yml +68 -0
- data/config/locales/fr.yml +66 -14
- data/config/locales/nl.yml +67 -15
- data/config/locales/pt.yml +66 -14
- data/config/locales/tr.yml +66 -14
- data/config/locales/zh-TW.yml +66 -14
- data/lib/generators/revise_auth/model_generator.rb +16 -30
- data/lib/generators/revise_auth/templates/README +4 -1
- data/lib/generators/revise_auth/templates/initializer.rb +5 -0
- data/lib/revise_auth/authentication.rb +1 -1
- data/lib/revise_auth/model.rb +8 -3
- data/lib/revise_auth/test/helpers.rb +16 -0
- data/lib/revise_auth/version.rb +1 -1
- data/lib/revise_auth.rb +10 -0
- metadata +12 -7
- data/lib/tasks/revise_auth_tasks.rake +0 -4
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
cs:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
10
|
+
revise_auth:
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: Vaši e-mailovou adresu nelze potvrdit.
|
14
|
+
email_confirmed: Vaše e-mailová adresa byla úspěšně potvrzena.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Potvrzující e-mail byl odeslán na adresu %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Vaše aktuální heslo je nesprávné. Zkuste to prosím znovu.
|
30
|
+
password_changed: Vaše heslo bylo úspěšně změněno.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: E-mail s pokyny pro obnovení hesla byl odeslán.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: Odkaz pro obnovení hesla je neplatný.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Váš účet byl smazán.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Účet byl úspěšně aktualizován.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Neplatný e-mail nebo heslo.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Pro pokračování se zaregistruje nebo přihlaste
|
data/config/locales/de.yml
CHANGED
@@ -1,16 +1,68 @@
|
|
1
|
+
---
|
1
2
|
de:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
2
10
|
revise_auth:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: Email Adresse kann nicht bestätigt werden.
|
14
|
+
email_confirmed: Deine Email wurde erfogreich bestätigt.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Eine Bestätigungsemail wurde versandt an %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Das Passwort ist ungültig. Bitte versuche es erneut.
|
30
|
+
password_changed: Dein Passwort wurde erfolgreich geändert.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: An email with password reset instructions has been sent if that account exists.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: The provided password reset link is invalid.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Dein Account wurde gelöscht.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Account wurde erfolgreich aktualisiert.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Ungültige Email oder Passwort.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Registrieren oder anmelden um fortzufahren.
|
data/config/locales/el.yml
CHANGED
@@ -1,16 +1,68 @@
|
|
1
|
+
---
|
1
2
|
el:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
2
10
|
revise_auth:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: Δεν είναι δυνατή η επιβεβαίωση της διεύθυνσης email.
|
14
|
+
email_confirmed: Η διεύθυνση email σας επιβεβαιώθηκε επιτυχώς.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Ένα email επιβεβαίωσης έχει σταλεί στο %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Ο τρέχων κωδικός πρόσβασής σας είναι λανθασμένος. Παρακαλώ δοκιμάστε ξανά.
|
30
|
+
password_changed: Ο κωδικός πρόσβασής σας άλλαξε με επιτυχία.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: An email with password reset instructions has been sent if that account exists.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: The provided password reset link is invalid.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Ο λογαριασμός σας έχει διαγραφεί.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Ο λογαριασμός σας έχει ενημερωθεί επιτυχώς.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Μη έγκυρο email ή κωδικός πρόσβασης.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Εγγραφείτε ή συνδεθείτε για να συνεχίσετε.
|
data/config/locales/en.yml
CHANGED
@@ -1,18 +1,68 @@
|
|
1
|
+
---
|
1
2
|
en:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
2
10
|
revise_auth:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: Unable to confirm email address.
|
14
|
+
email_confirmed: Your email address has been successfully confirmed.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: A confirmation email has been sent to %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Your current password is incorrect. Please try again.
|
30
|
+
password_changed: Your password has been changed successfully.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: An email with password reset instructions has been sent if that account exists.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: The provided password reset link is invalid.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Your account has been deleted.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Account updated successfully.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Invalid email or password.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Sign up or log in to continue.
|
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
es:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Contraseña
|
8
|
+
password_challenge: Contraseña actual
|
9
|
+
password_confirmation: Confirmar contraseña
|
10
|
+
revise_auth:
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: No es posible confirmar la dirección de email.
|
14
|
+
email_confirmed: Tu dirección de email ha sido confirmada exitosamente.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Un email de confirmación ha sido enviado a %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirmar mi cuenta
|
20
|
+
confirm_below: 'Podés confirmar el email de tu cuenta mediante el siguiente enlace:'
|
21
|
+
expiration_notice: Este enlace expirará en 24 horas.
|
22
|
+
welcome: Bienvenido %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: Este enlace expirará en 1 hora.
|
25
|
+
reset_password: Resetear mi contraseña
|
26
|
+
reset_password_below: Recibimos una solicitud de reseteo de contraseña para tu cuenta. Si fuiste vos, visitá el siguiente enlace para finalizar. Si no fuiste vos, podés ignorar este correo.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Tu contraseña actual es incorrecta. Por favor intenta nuevamente.
|
30
|
+
password_changed: Tu contraseña ha sido actualizada exitosamente.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: Ha sido enviado un email de reseteo de contraseña si esa cuenta existe.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: El enlace de reseteo de contraseña es inválido.
|
36
|
+
reset_password: Resetear contraseña
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Enviar instrucciones para resetear la contraseña
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Tu cuenta ha sido eliminada.
|
42
|
+
edit:
|
43
|
+
change_email_address: Cambiar dirección de correo
|
44
|
+
change_password: Cambiar contraseña
|
45
|
+
confirm: Estás seguro?
|
46
|
+
confirmation_instructions: Para cambiar tu dirección de email, enviaremos un email de confirmación a tu nueva dirección para completar el cambio.
|
47
|
+
current_email_address: 'Tu dirección de correo es: %{email}.'
|
48
|
+
delete_account: Eliminar mi cuenta
|
49
|
+
new_email: Nuevo email
|
50
|
+
new_password: Nueva contraseño
|
51
|
+
profile: Perfil
|
52
|
+
save: Guardar cambios
|
53
|
+
waiting_confirmation: Esperando confirmación de %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Registrate
|
56
|
+
update:
|
57
|
+
account_updated: Cuenta actualizada exitosamente.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Email o contraseña inválidas.
|
61
|
+
new:
|
62
|
+
log_in: Iniciar sesión
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Iniciar sesión
|
66
|
+
reset_password: Resetear contraseña
|
67
|
+
sign_up: Registrate
|
68
|
+
sign_up_or_login: Registrate o inicia sesión para continuar.
|
data/config/locales/fr.yml
CHANGED
@@ -1,16 +1,68 @@
|
|
1
|
+
---
|
1
2
|
fr:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
2
10
|
revise_auth:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: Impossible de confirmer votre adresse email.
|
14
|
+
email_confirmed: Votre adresse email vient d'être confirmé.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Un email de confirmation vient d'être envoyé à %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Mot de passe incorrect. Merci de réessayer
|
30
|
+
password_changed: Votre mot de passe a été mis à jour avec succès.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: An email with password reset instructions has been sent if that account exists.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: The provided password reset link is invalid.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Votre compte a été supprimé.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Votre compte a été mis à jour.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Email ou mot de passe incorrect.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Vous devez être connecté ou vous enregistrer pour continuer.
|
data/config/locales/nl.yml
CHANGED
@@ -1,16 +1,68 @@
|
|
1
|
+
---
|
1
2
|
nl:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
10
|
+
revise_auth:
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: E-mailadres bevestigen niet mogelijk.
|
14
|
+
email_confirmed: Uw e-mailadres is succesvol bevestigd.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Er is een bevestigingsmail verzonden naar %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: Uw huidige wachtwoord is onjuist. Probeer het opnieuw.
|
30
|
+
password_changed: Uw wachtwoord is succesvol gewijzigd.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: An email with password reset instructions has been sent if that account exists.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: The provided password reset link is invalid.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: Uw account is verwijderd.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Account succesvol bijgewerkt.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Ongeldige e-mail of wachtwoord.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Aanmelden of inloggen om door te gaan.
|
data/config/locales/pt.yml
CHANGED
@@ -1,16 +1,68 @@
|
|
1
|
+
---
|
1
2
|
pt:
|
3
|
+
activerecord:
|
4
|
+
attributes:
|
5
|
+
user:
|
6
|
+
email: Email
|
7
|
+
password: Password
|
8
|
+
password_challenge: Current password
|
9
|
+
password_confirmation: Password confirmation
|
2
10
|
revise_auth:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
email:
|
12
|
+
show:
|
13
|
+
email_confirm_failed: Não foi possível confirmar o endereço de email.
|
14
|
+
email_confirmed: O seu endereço de email foi modificado com sucesso.
|
15
|
+
update:
|
16
|
+
confirmation_email_sent: Um email de confirmação foi enviado para %{email}.
|
17
|
+
mailer:
|
18
|
+
confirm_email:
|
19
|
+
confirm: Confirm my account
|
20
|
+
confirm_below: 'You can confirm your account email through the link below:'
|
21
|
+
expiration_notice: This link will expire in 24 hours.
|
22
|
+
welcome: Welcome %{email}!
|
23
|
+
password_reset:
|
24
|
+
expiration_notice: This link will expire in 1 hour.
|
25
|
+
reset_password: Reset my password
|
26
|
+
reset_password_below: We've received a password reset request for your login. If this was you just visit the link below to finish up. If it wasn't you, you can simply ignore this email.
|
27
|
+
password:
|
28
|
+
update:
|
29
|
+
incorrect_password: A sua password atual está incorreta. Por favor tente de novo.
|
30
|
+
password_changed: A sua password foi alterada com sucesso.
|
31
|
+
password_resets:
|
32
|
+
create:
|
33
|
+
password_reset_sent: An email with password reset instructions has been sent if that account exists.
|
34
|
+
edit:
|
35
|
+
invalid_password_link: The provided password reset link is invalid.
|
36
|
+
reset_password: Reset password
|
37
|
+
new:
|
38
|
+
send_password_reset_instructions: Send Password Reset Instructions
|
39
|
+
registrations:
|
40
|
+
destroy:
|
41
|
+
account_deleted: A sua conta foi removida.
|
42
|
+
edit:
|
43
|
+
change_email_address: Change Email Address
|
44
|
+
change_password: Change Password
|
45
|
+
confirm: Are you sure?
|
46
|
+
confirmation_instructions: To change your email, we will send a confirmation email to your new address to complete the change.
|
47
|
+
current_email_address: 'Your email address is: %{email}.'
|
48
|
+
delete_account: Delete my account
|
49
|
+
new_email: New Email
|
50
|
+
new_password: New password
|
51
|
+
profile: Profile
|
52
|
+
save: Save Changes
|
53
|
+
waiting_confirmation: Waiting for confirmation of %{email}.
|
54
|
+
new:
|
55
|
+
sign_up: Sign up
|
56
|
+
update:
|
57
|
+
account_updated: Conta atualizada com sucesso.
|
58
|
+
sessions:
|
59
|
+
create:
|
60
|
+
invalid_email_or_password: Email ou password inválidos.
|
61
|
+
new:
|
62
|
+
log_in: Log in
|
63
|
+
shared:
|
64
|
+
links:
|
65
|
+
log_in: Log in
|
66
|
+
reset_password: Reset your password
|
67
|
+
sign_up: Sign up
|
68
|
+
sign_up_or_login: Registe-se ou clique em entrar para continuar.
|