devise-i18n 1.6.5 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: da98db87a0f11fabf4eeab5ea7c3dd3aef5a0b4d
4
- data.tar.gz: 798c357601a02ab8cc262a9f937a3d8d1cd6b4c2
2
+ SHA256:
3
+ metadata.gz: 1b0f87d991e99d0b72f9160a6abfd777e9e9d47504b9fc3a658316d4490a45b7
4
+ data.tar.gz: 7a0b267c9b32f9a49f09cf59eaa2d0ad5b6b7379e928fcd1c4e222f671db868d
5
5
  SHA512:
6
- metadata.gz: 421c30c5fda8e0f73b735d0b075c8d1cc824f6a329ebbf40bd2d917ea2a6ace97768a5802639e5fbaf9a2e90c69afb55d91859b7593d34f7cf83d906223e0469
7
- data.tar.gz: 9b09b4a2a33fa574f2c6c84d6c30827db65e315ef4bcc00992ec9421d3ca2f052626d782cbebef153ee3615d51bf859945b9bd422c76ed33b1b27ef57afcb163
6
+ metadata.gz: 10885c3bef0672f9b47c55140f3208d14150e8089d89fc7b7012ffeb38bc3e89f268e83f9de67db7ae197a1ddb6552f230d44a92eea2a4992af51c27c6477e9a
7
+ data.tar.gz: acd1131a1ea23dfd471b30cb8f5b11dc232868babf60f132bbe4d46d7a0c23844ec0cc7b8ca4e7c9b05368cc6451d4e8d12114e0760ab1315cc34566e00d782e
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.5
1
+ 1.7.0
@@ -1,4 +1,5 @@
1
1
  <p><%= t('.greeting', recipient: @email) %></p>
2
2
 
3
3
  <p><%= t('.instruction') %></p>
4
+
4
5
  <p><%= link_to t('.action'), confirmation_url(@resource, confirmation_token: @token) %></p>
@@ -9,7 +9,7 @@
9
9
  <% if @minimum_password_length %>
10
10
  <em><%= t('devise.shared.minimum_password_length', count: @minimum_password_length) %></em><br />
11
11
  <% end %>
12
- <%= f.password_field :password, autofocus: true, autocomplete: "off" %>
12
+ <%= f.password_field :password, autofocus: true, autocomplete: "new-password" %>
13
13
  </div>
14
14
 
15
15
  <div class="field">
@@ -1,4 +1,4 @@
1
- <h2><%= t('.title', resource: resource_name.to_s.humanize) %></h2>
1
+ <h2><%= t('.title', resource: resource.model_name.human) %></h2>
2
2
 
3
3
  <%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
4
4
  <%= devise_error_messages! %>
@@ -14,7 +14,7 @@
14
14
 
15
15
  <div class="field">
16
16
  <%= f.label :password %> <i>(<%= t('.leave_blank_if_you_don_t_want_to_change_it') %>)</i><br />
17
- <%= f.password_field :password, autocomplete: "off" %>
17
+ <%= f.password_field :password, autocomplete: "new-password" %>
18
18
  <% if @minimum_password_length %>
19
19
  <br />
20
20
  <em><%= t('devise.shared.minimum_password_length', count: @minimum_password_length) %></em>
@@ -23,12 +23,12 @@
23
23
 
24
24
  <div class="field">
25
25
  <%= f.label :password_confirmation %><br />
26
- <%= f.password_field :password_confirmation, autocomplete: "off" %>
26
+ <%= f.password_field :password_confirmation, autocomplete: "new-password" %>
27
27
  </div>
28
28
 
29
29
  <div class="field">
30
30
  <%= f.label :current_password %> <i>(<%= t('.we_need_your_current_password_to_confirm_your_changes') %>)</i><br />
31
- <%= f.password_field :current_password, autocomplete: "off" %>
31
+ <%= f.password_field :current_password, autocomplete: "current-password" %>
32
32
  </div>
33
33
 
34
34
  <div class="actions">
@@ -13,12 +13,12 @@
13
13
  <% if @minimum_password_length %>
14
14
  <em><%= t('devise.shared.minimum_password_length', count: @minimum_password_length) %></em>
15
15
  <% end %><br />
16
- <%= f.password_field :password, autocomplete: "off" %>
16
+ <%= f.password_field :password, autocomplete: "new-password" %>
17
17
  </div>
18
18
 
19
19
  <div class="field">
20
20
  <%= f.label :password_confirmation %><br />
21
- <%= f.password_field :password_confirmation, autocomplete: "off" %>
21
+ <%= f.password_field :password_confirmation, autocomplete: "new-password" %>
22
22
  </div>
23
23
 
24
24
  <div class="actions">
@@ -8,7 +8,7 @@
8
8
 
9
9
  <div class="field">
10
10
  <%= f.label :password %><br />
11
- <%= f.password_field :password, autocomplete: "off" %>
11
+ <%= f.password_field :password, autocomplete: "current-password" %>
12
12
  </div>
13
13
 
14
14
  <% if devise_mapping.rememberable? -%>
@@ -5,7 +5,11 @@
5
5
  <%= f.full_error :confirmation_token %>
6
6
 
7
7
  <div class="form-inputs">
8
- <%= f.input :email, required: true, autofocus: true %>
8
+ <%= f.input :email,
9
+ required: true,
10
+ autofocus: true,
11
+ value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email),
12
+ input_html: { autocomplete: "email" } %>
9
13
  </div>
10
14
 
11
15
  <div class="form-actions">
@@ -7,7 +7,12 @@
7
7
  <%= f.full_error :reset_password_token %>
8
8
 
9
9
  <div class="form-inputs">
10
- <%= f.input :password, label: t(".new_password"), required: true, autofocus: true, hint: (t('devise.shared.minimum_password_length', count: @minimum_password_length) if @minimum_password_length) %>
10
+ <%= f.input :password,
11
+ label: t(".new_password"),
12
+ required: true,
13
+ autofocus: true,
14
+ hint: (t('devise.shared.minimum_password_length', count: @minimum_password_length) if @minimum_password_length),
15
+ input_html: { autocomplete: "new-password" } %>
11
16
  <%= f.input :password_confirmation, label: t(".confirm_new_password"), required: true %>
12
17
  </div>
13
18
 
@@ -4,7 +4,10 @@
4
4
  <%= f.error_notification %>
5
5
 
6
6
  <div class="form-inputs">
7
- <%= f.input :email, required: true, autofocus: true %>
7
+ <%= f.input :email,
8
+ required: true,
9
+ autofocus: true,
10
+ input_html: { autocomplete: "email" } %>
8
11
  </div>
9
12
 
10
13
  <div class="form-actions">
@@ -1,4 +1,4 @@
1
- <h2><%= t(".title", resource: resource_name.to_s.humanize) %></h2>
1
+ <h2><%= t(".title", resource: resource.model_name.human) %></h2>
2
2
 
3
3
  <%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
4
4
  <%= f.error_notification %>
@@ -10,9 +10,17 @@
10
10
  <p><%= t(".currently_waiting_confirmation_for_email", email: resource.unconfirmed_email) %></p>
11
11
  <% end %>
12
12
 
13
- <%= f.input :password, autocomplete: "off", hint: t(".leave_blank_if_you_don_t_want_to_change_it"), required: false %>
14
- <%= f.input :password_confirmation, required: false %>
15
- <%= f.input :current_password, hint: t(".we_need_your_current_password_to_confirm_your_changes"), required: true %>
13
+ <%= f.input :password,
14
+ hint: t(".leave_blank_if_you_don_t_want_to_change_it"),
15
+ required: false
16
+ input_html: { autocomplete: "new-password" } %>
17
+ <%= f.input :password_confirmation,
18
+ required: false,
19
+ input_html: { autocomplete: "new-password" } %>
20
+ <%= f.input :current_password,
21
+ hint: t(".we_need_your_current_password_to_confirm_your_changes"),
22
+ required: true,
23
+ input_html: { autocomplete: "current-password" } %>
16
24
  </div>
17
25
 
18
26
  <div class="form-actions">
@@ -4,9 +4,17 @@
4
4
  <%= f.error_notification %>
5
5
 
6
6
  <div class="form-inputs">
7
- <%= f.input :email, required: true, autofocus: true %>
8
- <%= f.input :password, required: true, hint: (t('devise.shared.minimum_password_length', count: @minimum_password_length) if @minimum_password_length) %>
9
- <%= f.input :password_confirmation, required: true %>
7
+ <%= f.input :email,
8
+ required: true,
9
+ autofocus: true ,
10
+ input_html: { autocomplete: "email" }%>
11
+ <%= f.input :password,
12
+ required: true,
13
+ hint: (t('devise.shared.minimum_password_length', count: @minimum_password_length) if @minimum_password_length),
14
+ input_html: { autocomplete: "new-password" } %>
15
+ <%= f.input :password_confirmation,
16
+ required: true,
17
+ input_html: { autocomplete: "new-password" } %>
10
18
  </div>
11
19
 
12
20
  <div class="form-actions">
@@ -2,8 +2,13 @@
2
2
 
3
3
  <%= simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
4
4
  <div class="form-inputs">
5
- <%= f.input :email, required: false, autofocus: true %>
6
- <%= f.input :password, required: false %>
5
+ <%= f.input :email,
6
+ required: false,
7
+ autofocus: true,
8
+ input_html: { autocomplete: "email" } %>
9
+ <%= f.input :password,
10
+ required: false,
11
+ input_html: { autocomplete: "current-password" } %>
7
12
  <%= f.input :remember_me, as: :boolean if devise_mapping.rememberable? %>
8
13
  </div>
9
14
 
@@ -5,7 +5,10 @@
5
5
  <%= f.full_error :unlock_token %>
6
6
 
7
7
  <div class="form-inputs">
8
- <%= f.input :email, required: true, autofocus: true %>
8
+ <%= f.input :email,
9
+ required: true,
10
+ autofocus: true,
11
+ input_html: { autocomplete: "email" } %>
9
12
  </div>
10
13
 
11
14
  <div class="form-actions">
@@ -8,7 +8,7 @@ de:
8
8
  created_at: Erstellt am
9
9
  current_password: Bisheriges Passwort
10
10
  current_sign_in_at: Aktuelle Anmeldung vom
11
- current_sign_in_ip: IP aktueller Anmeldung
11
+ current_sign_in_ip: IP der aktuellen Anmeldung
12
12
  email: E-Mail
13
13
  encrypted_password: Verschlüsseltes Passwort
14
14
  failed_attempts: Fehlversuche
@@ -29,34 +29,34 @@ de:
29
29
  user: Benutzer
30
30
  devise:
31
31
  confirmations:
32
- confirmed: Ihre E-Mail Adresse wurde erfolgreich bestätigt.
32
+ confirmed: Ihre E-Mail-Adresse wurde erfolgreich bestätigt.
33
33
  new:
34
34
  resend_confirmation_instructions: Anleitung zur Bestätigung noch mal schicken
35
35
  send_instructions: Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
36
36
  send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Sie Ihre Registrierung bestätigen können.
37
37
  failure:
38
38
  already_authenticated: Sie sind bereits angemeldet.
39
- inactive: Ihr Account ist nicht aktiv.
39
+ inactive: Ihr Konto ist nicht aktiv.
40
40
  invalid: "%{authentication_keys} oder Passwort ungültig."
41
- last_attempt: Sie haben noch einen Versuch, bis Ihr Account gesperrt wird.
42
- locked: Ihr Account ist gesperrt.
41
+ last_attempt: Sie haben noch einen Versuch, bis Ihr Konto gesperrt wird.
42
+ locked: Ihr Konto ist gesperrt.
43
43
  not_found_in_database: "%{authentication_keys} oder Passwort ungültig."
44
44
  timeout: Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an.
45
45
  unauthenticated: Sie müssen sich anmelden oder registrieren, bevor Sie fortfahren können.
46
- unconfirmed: Sie müssen Ihren Account bestätigen, bevor Sie fortfahren können.
46
+ unconfirmed: Sie müssen Ihr Konto bestätigen, bevor Sie fortfahren können.
47
47
  mailer:
48
48
  confirmation_instructions:
49
49
  action: Mein Konto bestätigen
50
50
  greeting: Willkommen %{recipient}!
51
51
  instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu bestätigen:'
52
- subject: Anleitung zur Bestätigung Ihres Accounts
52
+ subject: Anleitung zur Bestätigung Ihres Kontos
53
53
  email_changed:
54
54
  greeting: Hallo %{recipient}!
55
- message: Wir schreiben Ihnen, um Sie darüber zu informieren, dass Ihre E-Mail zu %{email} geändert wurde.
56
- subject: E-Mail geändert
55
+ message: Wir schreiben Ihnen, um Sie darüber zu informieren, dass Ihre E-Mail-Adresse zu %{email} geändert wurde.
56
+ subject: E-Mail-Adresse geändert
57
57
  password_change:
58
58
  greeting: Hallo %{recipient}!
59
- message: Wir kontaktieren Sie, um Ihnen mitzuteilen, dass Ihr Passwort geändert wurde.
59
+ message: Wir schreiben Ihnen, um Sie darüber zu informieren, dass Ihr Passwort geändert wurde.
60
60
  subject: Passwort geändert
61
61
  reset_password_instructions:
62
62
  action: Passwort ändern
@@ -70,10 +70,10 @@ de:
70
70
  greeting: Hallo %{recipient}!
71
71
  instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu entsperren:'
72
72
  message: Ihr Konto wurde aufgrund einer großen Anzahl von fehlgeschlagenen Anmeldeversuchen gesperrt.
73
- subject: Anleitung für die Account-Freischaltung
73
+ subject: Anleitung für die Konto-Freischaltung
74
74
  omniauth_callbacks:
75
- failure: Sie konnten nicht mit Ihrem %{kind}-Account angemeldet werden, weil "%{reason}".
76
- success: Sie haben sich erfolgreich mit Ihrem %{kind}-Account angemeldet.
75
+ failure: Sie konnten nicht mit Ihrem %{kind}-Konto angemeldet werden, weil "%{reason}".
76
+ success: Sie haben sich erfolgreich mit Ihrem %{kind}-Konto angemeldet.
77
77
  passwords:
78
78
  edit:
79
79
  change_my_password: "Ändere mein Passwort"
@@ -89,22 +89,22 @@ de:
89
89
  updated: Ihr Passwort wurde geändert. Sie sind jetzt angemeldet.
90
90
  updated_not_active: Ihr Passwort wurde geändert.
91
91
  registrations:
92
- destroyed: Ihr Account wurde gelöscht.
92
+ destroyed: Ihr Konto wurde gelöscht.
93
93
  edit:
94
94
  are_you_sure: Sind Sie sicher?
95
95
  cancel_my_account: Konto löschen
96
96
  currently_waiting_confirmation_for_email: Warte auf Bestätigung von %{email}.
97
97
  leave_blank_if_you_don_t_want_to_change_it: freilassen, wenn Sie das nicht ändern wollen
98
98
  title: "%{resource} bearbeiten"
99
- unhappy: Unglücklich?
99
+ unhappy: Unzufrieden?
100
100
  update: Aktualisieren
101
101
  we_need_your_current_password_to_confirm_your_changes: wir benötigen Ihr aktuelles Passwort, um die Änderung zu bestätigen
102
102
  new:
103
103
  sign_up: Registrieren
104
104
  signed_up: Sie haben sich erfolgreich registriert.
105
- signed_up_but_inactive: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account noch nicht aktiviert ist.
106
- signed_up_but_locked: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Account gesperrt ist.
107
- signed_up_but_unconfirmed: Sie erhalten in wenigen Minuten eine E-Mail mit einem Link für die Bestätigung der Registrierung. Klicken Sie auf den Link um Ihren Account zu aktivieren.
105
+ signed_up_but_inactive: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Konto noch nicht aktiviert ist.
106
+ signed_up_but_locked: Sie haben sich erfolgreich registriert. Wir konnten Sie jedoch nicht anmelden, weil Ihr Konto gesperrt ist.
107
+ signed_up_but_unconfirmed: Sie erhalten in wenigen Minuten eine E-Mail mit einem Link für die Bestätigung der Registrierung. Klicken Sie auf den Link um Ihr Konto zu aktivieren.
108
108
  update_needs_confirmation: Ihre Daten wurden aktualisiert, aber Sie müssen Ihre neue E-Mail-Adresse bestätigen. Sie erhalten in wenigen Minuten eine E-Mail, mit der Sie die Änderung Ihrer E-Mail-Adresse abschließen können.
109
109
  updated: Ihre Daten wurden aktualisiert.
110
110
  sessions:
@@ -128,9 +128,9 @@ de:
128
128
  unlocks:
129
129
  new:
130
130
  resend_unlock_instructions: Anleitung zum Entsperren noch mal schicken
131
- send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihren Account entsperren können.
132
- send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Anleitung, wie Sie Ihren Account entsperren können.
133
- unlocked: Ihr Account wurde entsperrt. Bitte melden Sie sich an, um fortzufahren.
131
+ send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihr Konto entsperren können.
132
+ send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail, mit der Anleitung, wie Sie Ihr Konto entsperren können.
133
+ unlocked: Ihr Konto wurde entsperrt. Bitte melden Sie sich an, um fortzufahren.
134
134
  errors:
135
135
  messages:
136
136
  already_confirmed: wurde bereits bestätigt, bitte versuchen Sie, sich anzumelden
@@ -26,7 +26,9 @@ en-GB:
26
26
  unlock_token: Unlock token
27
27
  updated_at:
28
28
  models:
29
- user: User
29
+ user:
30
+ one: User
31
+ other: Users
30
32
  devise:
31
33
  confirmations:
32
34
  confirmed: Your account was successfully confirmed.
@@ -26,7 +26,9 @@ en:
26
26
  unlock_token: Unlock token
27
27
  updated_at: Updated at
28
28
  models:
29
- user: User
29
+ user:
30
+ one: User
31
+ other: Users
30
32
  devise:
31
33
  confirmations:
32
34
  confirmed: Your email address has been successfully confirmed.
@@ -52,7 +54,7 @@ en:
52
54
  subject: Confirmation instructions
53
55
  email_changed:
54
56
  greeting: Hello %{recipient}!
55
- message: We're contacting you to notify you that your email is being changed to %{email}.
57
+ message: We're contacting you to notify you that your email has been changed to %{email}.
56
58
  subject: Email Changed
57
59
  password_change:
58
60
  greeting: Hello %{recipient}!
@@ -61,7 +63,7 @@ en:
61
63
  reset_password_instructions:
62
64
  action: Change my password
63
65
  greeting: Hello %{recipient}!
64
- instruction: Someone has requested a link to change your password, and you can do this through the link below.
66
+ instruction: Someone has requested a link to change your password. You can do this through the link below.
65
67
  instruction_2: If you didn't request this, please ignore this email.
66
68
  instruction_3: Your password won't change until you access the link above and create a new one.
67
69
  subject: Reset password instructions
@@ -69,7 +71,7 @@ en:
69
71
  action: Unlock my account
70
72
  greeting: Hello %{recipient}!
71
73
  instruction: 'Click the link below to unlock your account:'
72
- message: Your account has been locked due to an excessive amount of unsuccessful sign in attempts.
74
+ message: Your account has been locked due to an excessive number of unsuccessful sign in attempts.
73
75
  subject: Unlock instructions
74
76
  omniauth_callbacks:
75
77
  failure: Could not authenticate you from %{kind} because "%{reason}".
@@ -26,7 +26,9 @@ es-MX:
26
26
  unlock_token: Autentificador de desbloqueo
27
27
  updated_at: Fecha de actualización
28
28
  models:
29
- user: Usuario
29
+ user:
30
+ one: Usuario
31
+ other: Usuarios
30
32
  devise:
31
33
  confirmations:
32
34
  confirmed: Se ha confirmado la dirección de correo electrónico correctamente.
@@ -37,10 +39,10 @@ es-MX:
37
39
  failure:
38
40
  already_authenticated: Ya has iniciado sesión.
39
41
  inactive: Tu cuenta aún no ha sido activada.
40
- invalid:
42
+ invalid: "%{authentication_keys} o password inválido(s)"
41
43
  last_attempt: Tienes un intento más antes de que tu cuenta sea bloqueada.
42
44
  locked: Tu cuenta está bloqueada.
43
- not_found_in_database:
45
+ not_found_in_database: "%{authentication_keys} o password inválido(s)"
44
46
  timeout: Tu sesión expiró. Por favor, inicia sesión nuevamente para continuar.
45
47
  unauthenticated: Tienes que iniciar sesión o registrarte para poder continuar.
46
48
  unconfirmed: Tienes que confirmar tu cuenta para poder continuar.
@@ -51,9 +53,9 @@ es-MX:
51
53
  instruction: 'Se puede confirmar el correo electrónico de la cuenta a través de este enlace:'
52
54
  subject: Instrucciones de confirmación
53
55
  email_changed:
54
- greeting:
55
- message:
56
- subject:
56
+ greeting: Hola %{recipient}!
57
+ message: Te estamos contactando para notificarte que tu email ha cambiado a %{email}
58
+ subject: El email cambió
57
59
  password_change:
58
60
  greeting: "¡Hola, %{recipient}!"
59
61
  message: Le estamos contactando para notificarle que su contraseña ha cambiado
@@ -122,7 +124,9 @@ es-MX:
122
124
  sign_in: Iniciar sesión
123
125
  sign_in_with_provider: Iniciar sesión con %{provider}
124
126
  sign_up: Registrarse
125
- minimum_password_length:
127
+ minimum_password_length:
128
+ one: "(Mínimo %{count} caracter)"
129
+ other: "(Minimo %{count} caracteres)"
126
130
  unlocks:
127
131
  new:
128
132
  resend_unlock_instructions: Reenviar instrucciones para desbloquear la cuenta
@@ -26,7 +26,9 @@ es:
26
26
  unlock_token: Código de desbloqueo
27
27
  updated_at: Actualizado en
28
28
  models:
29
- user: Usuario
29
+ user:
30
+ one: Usuario
31
+ other: Usuarios
30
32
  devise:
31
33
  confirmations:
32
34
  confirmed: Tu cuenta ha sido confirmada satisfactoriamente.
@@ -47,29 +47,29 @@ fr:
47
47
  mailer:
48
48
  confirmation_instructions:
49
49
  action: Confirmer mon courriel
50
- greeting: Bienvenue %{recipient}!
51
- instruction: 'Vous pouvez confirmer votre courriel grâce au lien ci-dessous:'
50
+ greeting: Bienvenue %{recipient} !
51
+ instruction: 'Vous pouvez confirmer votre courriel grâce au lien ci-dessous :'
52
52
  subject: Instructions de confirmation
53
53
  email_changed:
54
- greeting: Bonjour %{recipient}!
54
+ greeting: Bonjour %{recipient} !
55
55
  message: Nous vous contactons pour vous notifier que votre adresse de courriel a été changée en %{email}.
56
56
  subject: Courriel modifié
57
57
  password_change:
58
- greeting: Bonjour %{recipient}!
58
+ greeting: Bonjour %{recipient} !
59
59
  message: Nous vous contactons pour vous notifier que votre mot de passe a été modifié.
60
- subject: Mot de passe modifié.
60
+ subject: Mot de passe modifié
61
61
  reset_password_instructions:
62
62
  action: Changer mon mot de passe
63
- greeting: Bonjour %{recipient}!
63
+ greeting: Bonjour %{recipient} !
64
64
  instruction: 'Quelqu''un a demandé un lien pour changer votre mot de passe, le voici :'
65
65
  instruction_2: Si vous n'avez pas émis cette demande, merci d'ignorer ce courriel.
66
66
  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.
67
67
  subject: Instructions pour changer le mot de passe
68
68
  unlock_instructions:
69
69
  action: Débloquer mon compte
70
- greeting: Bonjour %{recipient}!
71
- instruction: 'Suivez ce lien pour débloquer votre compte:'
72
- message: Votre compte a été bloqué suite à un nombre d'essais de connexions manquées trop important
70
+ greeting: Bonjour %{recipient} !
71
+ instruction: 'Suivez ce lien pour débloquer votre compte :'
72
+ message: Votre compte a été bloqué suite à un nombre d'essais de connexions manquées trop important.
73
73
  subject: Instructions pour déverrouiller le compte
74
74
  omniauth_callbacks:
75
75
  failure: 'Nous ne pouvons pas vous authentifier depuis %{kind} pour la raison suivante : ''%{reason}''.'
@@ -96,7 +96,7 @@ fr:
96
96
  currently_waiting_confirmation_for_email: 'Confirmation en attente pour: %{email}'
97
97
  leave_blank_if_you_don_t_want_to_change_it: laissez ce champ vide pour le laisser inchangé
98
98
  title: "Éditer %{resource}"
99
- unhappy: 'Pas content '
99
+ unhappy: 'Pas content ?'
100
100
  update: Modifier
101
101
  we_need_your_current_password_to_confirm_your_changes: nous avons besoin de votre mot de passe actuel pour valider ces modifications
102
102
  new:
@@ -26,14 +26,16 @@ it:
26
26
  unlock_token: Token di sblocco
27
27
  updated_at: Aggiornato il
28
28
  models:
29
- user: Utente
29
+ user:
30
+ one: Utente
31
+ other: Utenti
30
32
  devise:
31
33
  confirmations:
32
34
  confirmed: Il tuo account è stato correttamente confermato.
33
35
  new:
34
36
  resend_confirmation_instructions: Invia di nuovo le istruzioni per la conferma
35
37
  send_instructions: Riceverai un messaggio email con le istruzioni per confermare il tuo account entro qualche minuto.
36
- send_paranoid_instructions: Se la tua e-mail esiste nel nostro database, riceverai un messaggio email con le istruzioni per confermare il tuo account entro qualche minuto.
38
+ send_paranoid_instructions: Se la tua email esiste nel nostro database, riceverai un messaggio email con le istruzioni per confermare il tuo account entro qualche minuto.
37
39
  failure:
38
40
  already_authenticated: Hai già effettuato l'accesso.
39
41
  inactive: Il tuo account non è stato ancora attivato.
@@ -85,11 +87,11 @@ it:
85
87
  send_me_reset_password_instructions: Inviami le istruzioni per resettare la password
86
88
  no_token: Puoi accedere a questa pagina solamente dalla email di reset della password. Se vieni dalla email controlla di aver inserito l'url completo riportato nella email.
87
89
  send_instructions: Riceverai un messaggio email con le istruzioni per reimpostare la tua password entro qualche minuto.
88
- send_paranoid_instructions: Se la tua e-mail esiste nel nostro database, riceverai un messaggio email contentente un link per il ripristino della password
90
+ send_paranoid_instructions: Se la tua email esiste nel nostro database, riceverai un messaggio email contentente un link per il ripristino della password
89
91
  updated: La tua password è stata cambiata. Ora sei collegato.
90
92
  updated_not_active: La tua password è stata cambiata.
91
93
  registrations:
92
- destroyed: Arrivederci! L'account è stato cancellato. Speriamo di rivederci presto.
94
+ destroyed: Arrivederci! L'account è stato cancellato. Speriamo di rivederti presto.
93
95
  edit:
94
96
  are_you_sure: Sei sicuro?
95
97
  cancel_my_account: Rimuovi il mio account
@@ -129,7 +131,7 @@ it:
129
131
  new:
130
132
  resend_unlock_instructions: Invia di nuovo le istruzioni per lo sblocco
131
133
  send_instructions: Riceverai un messaggio email con le istruzioni per sbloccare il tuo account entro qualche minuto.
132
- send_paranoid_instructions: Se la tua e-mail esiste nel nostro database, riceverai un messaggio email con le istruzioni per sbloccare il tuo account entro qualche minuto.
134
+ send_paranoid_instructions: Se la tua email esiste nel nostro database, riceverai un messaggio email con le istruzioni per sbloccare il tuo account entro qualche minuto.
133
135
  unlocked: Il tuo account è stato correttamente sbloccato. Ora sei collegato.
134
136
  errors:
135
137
  messages:
@@ -51,9 +51,9 @@ ja:
51
51
  instruction: "以下のリンクをクリックし、メールアドレスの確認手続を完了させてください。"
52
52
  subject: "メールアドレス確認メール"
53
53
  email_changed:
54
- greeting:
55
- message:
56
- subject:
54
+ greeting: "こんにちは、%{recipient}様。"
55
+ message: "あなたのメール変更(%{email})のお知らせいたします。"
56
+ subject: "メール変更完了。"
57
57
  password_change:
58
58
  greeting: "%{recipient}様"
59
59
  message: "パスワードが再設定されたことを通知します。"
@@ -2,31 +2,33 @@ pt:
2
2
  activerecord:
3
3
  attributes:
4
4
  user:
5
- confirmation_sent_at:
6
- confirmation_token:
7
- confirmed_at:
8
- created_at:
9
- current_password:
10
- current_sign_in_at:
11
- current_sign_in_ip:
12
- email:
13
- encrypted_password:
14
- failed_attempts:
15
- last_sign_in_at:
16
- last_sign_in_ip:
17
- locked_at:
18
- password:
19
- password_confirmation:
20
- remember_created_at:
5
+ confirmation_sent_at: Confirmação enviada em
6
+ confirmation_token: Código de confirmação
7
+ confirmed_at: Confirmado em
8
+ created_at: Criado em
9
+ current_password: Palavra-passe atual
10
+ current_sign_in_at: Entrada atual em
11
+ current_sign_in_ip: Entrada atual com IP
12
+ email: Email
13
+ encrypted_password: Palavra-passe cifrada
14
+ failed_attempts: Tentativas falhadas
15
+ last_sign_in_at: "Última entrada em"
16
+ last_sign_in_ip: "Última entrada com IP"
17
+ locked_at: Bloqueado em
18
+ password: Palavra-passe
19
+ password_confirmation: Confirmar palavra-passe
20
+ remember_created_at: Lembrança criada em
21
21
  remember_me: Lembrar-se de mim
22
- reset_password_sent_at:
23
- reset_password_token:
24
- sign_in_count:
25
- unconfirmed_email:
26
- unlock_token:
27
- updated_at:
22
+ reset_password_sent_at: Recuperação de palavra-passe enviada em
23
+ reset_password_token: Código para recuperar palavra-passe
24
+ sign_in_count: Número de entradas
25
+ unconfirmed_email: Email não confirmado
26
+ unlock_token: Código de desbloqueio
27
+ updated_at: Atualizado em
28
28
  models:
29
- user:
29
+ user:
30
+ one: Utilizador
31
+ other: Utilizadores
30
32
  devise:
31
33
  confirmations:
32
34
  confirmed: A sua conta foi confirmada com sucesso.
@@ -36,13 +38,13 @@ pt:
36
38
  send_paranoid_instructions: Se o seu email existir na nossa base de dados, irá receber dentro de alguns minutos um email com instruções para confirmar a sua conta.
37
39
  failure:
38
40
  already_authenticated: Já se encontra autenticado.
39
- inactive: A sua conta ainda não foi activada.
40
- invalid:
41
+ inactive: A sua conta ainda não foi ativada.
42
+ invalid: "%{authentication_keys} ou palavra-passe inválidos."
41
43
  last_attempt: Tem mais uma tentativa antes da sua conta ser bloqueada.
42
44
  locked: A sua conta está bloqueada.
43
- not_found_in_database:
45
+ not_found_in_database: "%{authentication_keys} ou palavra-passe inválidos."
44
46
  timeout: A sua sessão expirou, por favor autentique-se novamente para continuar.
45
- unauthenticated: Antes de continuar tem de se autenticar ou efectuar um registo.
47
+ unauthenticated: Antes de continuar tem de se autenticar ou efetuar um registo.
46
48
  unconfirmed: Tem de confirmar a sua conta antes de continuar.
47
49
  mailer:
48
50
  confirmation_instructions:
@@ -51,17 +53,17 @@ pt:
51
53
  instruction: 'Pode confirmar a sua conta através do link:'
52
54
  subject: Instruções de confirmação
53
55
  email_changed:
54
- greeting:
55
- message:
56
- subject:
56
+ greeting: Olá %{recipient}!
57
+ message: Estamos a entrar em contacto para notificar que o seu endereço de email foi alterado para %{email}.
58
+ subject: Endereço de email alterado
57
59
  password_change:
58
- greeting:
59
- message:
60
- subject:
60
+ greeting: Olá %{recipient}!
61
+ message: Estamos a entrar em contacto para notificar que a sua palavra-passe foi alterada.
62
+ subject: Palavra-passe alterada
61
63
  reset_password_instructions:
62
- action: Repor a minha senha
64
+ action: Repor a minha palavra-passe
63
65
  greeting: Olá %{recipient}!
64
- instruction: Foi efectuado um pedido para repor a sua palavra-passe. Para o fazer click no link abaixo.
66
+ instruction: Foi efetuado um pedido para repor a sua palavra-passe. Para prosseguir clique no link abaixo.
65
67
  instruction_2: Se não fez este pedido, por favor ignore este e-mail.
66
68
  instruction_3: A sua palavra-passe só será alterada quando aceder ao link abaixo para a alterar.
67
69
  subject: Instruções de recuperação de palavra-passe
@@ -76,16 +78,16 @@ pt:
76
78
  success: A sua conta foi autenticada por %{kind} com sucesso.
77
79
  passwords:
78
80
  edit:
79
- change_my_password:
80
- change_your_password:
81
- confirm_new_password:
82
- new_password:
81
+ change_my_password: Alterar a minha palavra-passe
82
+ change_your_password: Altere a sua palavra-passe
83
+ confirm_new_password: Confirme a nova palavra-passe
84
+ new_password: Nova palavra-passe
83
85
  new:
84
- forgot_your_password: Esqueceu a sua senha?
85
- send_me_reset_password_instructions: Enviar-me instruções para repor a senha
86
- no_token: Não pode aceder a esta página sem vir do email de redefinição da senha. Se vem dum email para redefinir a senha, por favor certifique-se que usou o URL completo que foi enviado.
86
+ forgot_your_password: Esqueceu a sua palavra-passe?
87
+ send_me_reset_password_instructions: Enviar-me instruções para repor a palavra-passe
88
+ no_token: Não pode aceder a esta página sem vir do email de recuperação da palavra-passe. Se vem de um email para recuperar a palavra-passe, por favor certifique-se que usou o URL completo que foi enviado.
87
89
  send_instructions: Dentro de alguns minutos irá receber um email com instruções de reinicialização da palavra-passe.
88
- send_paranoid_instructions: Se o seu e-mail existir na nossa base de dados, irá receber dentro de alguns minutos um e-mail com instruções para recuperar a sua senha.
90
+ send_paranoid_instructions: Se o seu e-mail existir na nossa base de dados, irá receber dentro de alguns minutos um e-mail com instruções para recuperar a sua palavra-passe.
89
91
  updated: A sua palavra-passe foi alterada com sucesso. Agora está autenticado.
90
92
  updated_not_active: A sua password foi alterada com sucesso.
91
93
  registrations:
@@ -93,49 +95,51 @@ pt:
93
95
  edit:
94
96
  are_you_sure: Tem a certeza?
95
97
  cancel_my_account: Cancelar a minha conta
96
- currently_waiting_confirmation_for_email:
98
+ currently_waiting_confirmation_for_email: 'A aguardar a confirmação de: %{email}'
97
99
  leave_blank_if_you_don_t_want_to_change_it: deixe em branco caso não queira alterar
98
100
  title: Editar %{resource}
99
- unhappy:
100
- update:
101
- we_need_your_current_password_to_confirm_your_changes: precisamos da sua senha actual para confirmar as alterações
101
+ unhappy: Descontente?
102
+ update: Atualizar
103
+ we_need_your_current_password_to_confirm_your_changes: precisamos da sua palavra-passe atual para confirmar as alterações
102
104
  new:
103
105
  sign_up: Criar Conta
104
- signed_up: Bemvindo! A autenticação foi efectuada com sucesso.
106
+ signed_up: Bemvindo! A autenticação foi efetuada com sucesso.
105
107
  signed_up_but_inactive: Registou-se com sucesso. No entanto, não podemos iniciar a sua sessão porque ainda não confirmou a sua conta.
106
108
  signed_up_but_locked: Registou-se com sucesso. No entanto, não podemos iniciar a sua sessão porque a sua conta encontra-se bloqueada.
107
- signed_up_but_unconfirmed: Foi enviado um email com um link para confirmar o seu email. Por favor abra o link para activar a sua conta.
108
- update_needs_confirmation: A sua conta foi actualizada com sucesso, mas precisamos de confirmar o seu email. Por favor veja o seu email e clique no link para finalizar a confirmação do seu email.
109
- updated: A sua conta foi actualizada com sucesso.
109
+ signed_up_but_unconfirmed: Foi enviado um email com um link para confirmar o seu email. Por favor abra o link para ativar a sua conta.
110
+ update_needs_confirmation: A sua conta foi atualizada com sucesso, mas precisamos de confirmar o seu email. Por favor veja o seu email e clique no link para finalizar a confirmação do seu email.
111
+ updated: A sua conta foi atualizada com sucesso.
110
112
  sessions:
111
113
  already_signed_out: Sessão terminada com sucesso.
112
114
  new:
113
115
  sign_in: Entrar
114
- signed_in: Autenticação efectuada com sucesso.
116
+ signed_in: Autenticação efetuada com sucesso.
115
117
  signed_out: Saiu da sessão com sucesso.
116
118
  shared:
117
119
  links:
118
- back:
120
+ back: Voltar
119
121
  didn_t_receive_confirmation_instructions: Não recebeu instruções de confirmação?
120
122
  didn_t_receive_unlock_instructions: Não recebeu instruções de desbloqueio?
121
123
  forgot_your_password: Esqueceu a palavra-passe?
122
124
  sign_in: Login
123
125
  sign_in_with_provider: Entrar com %{provider}
124
126
  sign_up: Criar conta
125
- minimum_password_length:
127
+ minimum_password_length:
128
+ one: "(mínimo de %{count} carácter)"
129
+ other: "(mínimo de %{count} caracteres)"
126
130
  unlocks:
127
131
  new:
128
- resend_unlock_instructions: Renviar instruções de desbloqueio
132
+ resend_unlock_instructions: Reenviar instruções de desbloqueio
129
133
  send_instructions: Dentro de alguns minutos irá receber um email com as instruções para desbloquear a sua conta.
130
134
  send_paranoid_instructions: Se a sua conta existir, irá receber dentro de alguns minutos um email com instruções para a desbloquear.
131
135
  unlocked: A sua conta foi desbloqueada com sucesso. Por favor autentique-se para continuar.
132
136
  errors:
133
137
  messages:
134
- already_confirmed: já foi confirmado, por favor tente efectuar a autenticação
138
+ already_confirmed: já foi confirmado, por favor tente efetuar a autenticação
135
139
  confirmation_period_expired: necessitava de confirmação até %{period}, por favor faça um novo pedido
136
140
  expired: expirou, por favor solicite um novo
137
141
  not_found: não foi encontrado
138
142
  not_locked: não foi bloqueado
139
143
  not_saved:
140
- one: '1 erro impediu %{resource} de ser gravado:'
144
+ one: "%{count} erro impediu %{resource} de ser gravado:"
141
145
  other: "%{count} erros impediram %{resource} de ser gravado:"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.5
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Dell
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2018-09-26 00:00:00.000000000 Z
13
+ date: 2018-11-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: devise
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: '4.4'
21
+ version: '4.5'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: '4.4'
28
+ version: '4.5'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: rspec
31
31
  requirement: !ruby/object:Gem::Requirement
@@ -40,6 +40,20 @@ dependencies:
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: 2.8.0
43
+ - !ruby/object:Gem::Dependency
44
+ name: rspec-rails
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
43
57
  - !ruby/object:Gem::Dependency
44
58
  name: bundler
45
59
  requirement: !ruby/object:Gem::Requirement
@@ -110,6 +124,20 @@ dependencies:
110
124
  - - ">="
111
125
  - !ruby/object:Gem::Version
112
126
  version: '0'
127
+ - !ruby/object:Gem::Dependency
128
+ name: activemodel
129
+ requirement: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
113
141
  description: Translations for the devise gem
114
142
  email: chris@tigrish.com
115
143
  executables: []
@@ -231,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
231
259
  version: '0'
232
260
  requirements: []
233
261
  rubyforge_project:
234
- rubygems_version: 2.6.8
262
+ rubygems_version: 2.7.6
235
263
  signing_key:
236
264
  specification_version: 4
237
265
  summary: Translations for the devise gem