devise-i18n 1.8.0 → 1.9.2
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 +32 -2
- data/VERSION +1 -1
- data/app/views/devise/passwords/edit.html.erb +1 -1
- data/lib/generators/devise/templates/simple_form_for/passwords/edit.html.erb +4 -1
- data/rails/locales/cs.yml +13 -13
- data/rails/locales/de-CH.yml +15 -13
- data/rails/locales/de.yml +10 -8
- data/rails/locales/en.yml +1 -1
- data/rails/locales/es-CO.yml +142 -0
- data/rails/locales/es-MX.yml +3 -3
- data/rails/locales/es.yml +5 -5
- data/rails/locales/fa.yml +1 -1
- data/rails/locales/fr.yml +2 -2
- data/rails/locales/he.yml +30 -28
- data/rails/locales/id.yml +9 -9
- data/rails/locales/it.yml +2 -2
- data/rails/locales/ja.yml +2 -2
- data/rails/locales/km.yml +140 -0
- data/rails/locales/ko.yml +6 -6
- data/rails/locales/mk.yml +146 -0
- data/rails/locales/nb.yml +9 -7
- data/rails/locales/pl.yml +1 -1
- data/rails/locales/pt-BR.yml +10 -10
- data/rails/locales/ru.yml +3 -3
- data/rails/locales/sv.yml +1 -1
- data/rails/locales/tr.yml +38 -38
- data/rails/locales/zh-CN.yml +17 -17
- data/rails/locales/zh-TW.yml +19 -19
- metadata +12 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abd6d983f698a740e7cf966321793f6c89af0ba6092f6b33a73139cea66d540b
|
4
|
+
data.tar.gz: 8bee2de329d3519c71a017fe52b3119e83398c6b6d29fee122c0088003fd6037
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46b556d05dbb75d51d8591e2f5bd3765e86968aa74a52fc99e15b710f5bbd235347a63271539b4309e6c4f89f5bbecea719ad8cb707c096d9b6745cc432a88e6
|
7
|
+
data.tar.gz: c6d6bdb0c2fbbdab68a8853396ece59f41534929dad9741c4fedf6e88d6cd8a0d3ae221e896312373bd618a25faccfa3006aba48cb6c9d57feb2ed960b1785de
|
data/README.md
CHANGED
@@ -13,9 +13,37 @@ Add to your Gemfile:
|
|
13
13
|
gem 'devise-i18n'
|
14
14
|
```
|
15
15
|
|
16
|
-
Assuming you have _not_ previously generated Devise's views into your project, that's all you need to do. If you _have_ previously done this, you will need to regenerate your views (see
|
16
|
+
Assuming you have _not_ previously generated Devise's views into your project, that's all you need to do. If you _have_ previously done this, you will need to regenerate your views (see "Customizing views" below) and then reapply whatever customizations that made you do this in the first place.
|
17
17
|
|
18
|
-
|
18
|
+
## Setting your locale
|
19
|
+
|
20
|
+
You will need to set a locale in your application as described in the [Rails Internationalization Guide](https://guides.rubyonrails.org/i18n.html).
|
21
|
+
|
22
|
+
If you are setting the locale per request (because your application supports multiple locales), the suggested code in that guide (using `I18n.with_locale` inside an `around_action`) will not work properly with devise-i18n. Due to [a bug in warden](https://github.com/wardencommunity/warden/issues/180), some error messages will not be translated. Instead, you can set the locale in a `before_action`:
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
before_action do
|
26
|
+
I18n.locale = :es # Or whatever logic you use to choose.
|
27
|
+
end
|
28
|
+
```
|
29
|
+
|
30
|
+
or in middleware:
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
class LocaleMiddleware
|
34
|
+
def initialize(app)
|
35
|
+
@app = app
|
36
|
+
end
|
37
|
+
|
38
|
+
def call(env)
|
39
|
+
I18n.locale = :es # Or whatever logic you use to choose.
|
40
|
+
status, headers, body = @app.call(env)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
```
|
44
|
+
```ruby
|
45
|
+
config.middleware.use ::LocaleMiddleware
|
46
|
+
```
|
19
47
|
|
20
48
|
## Customizing views
|
21
49
|
|
@@ -26,6 +54,8 @@ rails g devise:i18n:views
|
|
26
54
|
```
|
27
55
|
You should only do this if you really need to, though, because doing this will make it so that you won't get the updated views should they change in a future version of devise-i18n. To "uncustomize" the views, just delete them, and your app will go back to grabbing devise-i18n's default views.
|
28
56
|
|
57
|
+
If you have ```simple_form``` in your Gemfile, this command will generate the corresponding views using the simple_form form builder.
|
58
|
+
|
29
59
|
## Scoped views
|
30
60
|
|
31
61
|
If you need to use scoped views (for example, if you have different ones for users and admins), you can include the scope in this command.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.2
|
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
<div class="field">
|
16
16
|
<%= f.label :password_confirmation, t('.confirm_new_password') %><br />
|
17
|
-
<%= f.password_field :password_confirmation, autocomplete: "
|
17
|
+
<%= f.password_field :password_confirmation, autocomplete: "new-password" %>
|
18
18
|
</div>
|
19
19
|
|
20
20
|
<div class="actions">
|
@@ -13,7 +13,10 @@
|
|
13
13
|
autofocus: true,
|
14
14
|
hint: (t('devise.shared.minimum_password_length', count: @minimum_password_length) if @minimum_password_length),
|
15
15
|
input_html: { autocomplete: "new-password" } %>
|
16
|
-
<%= f.input :password_confirmation,
|
16
|
+
<%= f.input :password_confirmation,
|
17
|
+
label: t(".confirm_new_password"),
|
18
|
+
required: true,
|
19
|
+
input_html: { autocomplete: "new-password" } %>
|
17
20
|
</div>
|
18
21
|
|
19
22
|
<div class="form-actions">
|
data/rails/locales/cs.yml
CHANGED
@@ -32,13 +32,13 @@ cs:
|
|
32
32
|
confirmed: Vaše e-mailová adresa byla úspěšně potvrzena.
|
33
33
|
new:
|
34
34
|
resend_confirmation_instructions: Opět poslat instrukce pro potvrzení
|
35
|
-
send_instructions: Za několik minut obdržíte e-mail s instrukcemi k potvrzení
|
36
|
-
send_paranoid_instructions: Pokud
|
35
|
+
send_instructions: Za několik minut obdržíte e-mail s instrukcemi k potvrzení Vašeho účtu.
|
36
|
+
send_paranoid_instructions: Pokud Váš e-mail existuje v naší databázi, za několik minut obdržíte e-mail s pokyny o tom, jak potvrdit svůj účet.
|
37
37
|
failure:
|
38
38
|
already_authenticated: Jste již přihlášen(a).
|
39
39
|
inactive: Váš účet ještě nebyl aktivován.
|
40
40
|
invalid: Neplatné %{authentication_keys} nebo heslo.
|
41
|
-
last_attempt: Máte ještě jeden pokus než bude
|
41
|
+
last_attempt: Máte ještě jeden pokus než bude Váš účet uzamčen.
|
42
42
|
locked: Váš účet je uzamčen.
|
43
43
|
not_found_in_database: Neplatné %{authentication_keys} nebo heslo.
|
44
44
|
timeout: Vaše relace vypršela, přihlaste se znovu, pak budete moct pokračovat.
|
@@ -56,12 +56,12 @@ cs:
|
|
56
56
|
subject: E-mail změněn
|
57
57
|
password_change:
|
58
58
|
greeting: Ahoj %{recipient}!
|
59
|
-
message: Dáváme vám
|
59
|
+
message: Dáváme vám vědět, že Vaše heslo bylo změněno.
|
60
60
|
subject: Heslo změněno
|
61
61
|
reset_password_instructions:
|
62
62
|
action: Změna hesla
|
63
63
|
greeting: Ahoj %{recipient}!
|
64
|
-
instruction: Někdo si vyžádal odkaz pro změnu
|
64
|
+
instruction: Někdo si vyžádal odkaz pro změnu Vašeho hesla. Změnu můžete provést pomocí odkazu níže.
|
65
65
|
instruction_2: Pokud jste si toto nevyžádali, ignorujte tento e-mail.
|
66
66
|
instruction_3: Vaše heslo se nezmění dokud neotevřete výše uvedený odkaz a nevytvoříte si nové heslo.
|
67
67
|
subject: Instrukce k nastavení nového hesla
|
@@ -77,7 +77,7 @@ cs:
|
|
77
77
|
passwords:
|
78
78
|
edit:
|
79
79
|
change_my_password: Změnit mé heslo
|
80
|
-
change_your_password: Změna
|
80
|
+
change_your_password: Změna Vašeho hesla
|
81
81
|
confirm_new_password: Potvrdit nové heslo
|
82
82
|
new_password: Nové heslo
|
83
83
|
new:
|
@@ -85,7 +85,7 @@ cs:
|
|
85
85
|
send_me_reset_password_instructions: Poslat instrukce pro obnovení hesla
|
86
86
|
no_token: Na tuto stránku se nelze dostat jinak než z e-mailu pro resetování hesla. Pokud jste přišli z takového e-mailu, přesvědčte se že jste použili celou URL adresu.
|
87
87
|
send_instructions: Za několik minut obdržíte e-mail s instrukcemi pro nastavení nového hesla.
|
88
|
-
send_paranoid_instructions: Pokud
|
88
|
+
send_paranoid_instructions: Pokud Vaše e-mailová adresa existuje v naší databázi, za několik minut obdržíte e-mail s instrukcemi pro nastavení nového hesla.
|
89
89
|
updated: Vaše heslo bylo změněno. Nyní jste přihlášen(a).
|
90
90
|
updated_not_active: Vaše heslo bylo změněno.
|
91
91
|
registrations:
|
@@ -98,14 +98,14 @@ cs:
|
|
98
98
|
title: Upravit %{resource}
|
99
99
|
unhappy: Nejste zde šťastni?
|
100
100
|
update: Aktualizovat
|
101
|
-
we_need_your_current_password_to_confirm_your_changes:
|
101
|
+
we_need_your_current_password_to_confirm_your_changes: Vaše současné heslo je nutné pro potvrzení změn.
|
102
102
|
new:
|
103
103
|
sign_up: Zaregistrovat se
|
104
104
|
signed_up: Vítejte! Úspěšně jste se zaregistroval(a).
|
105
|
-
signed_up_but_inactive: Úspěšně jste se zaregistroval(a). Bohužel se nemůžete přihlásit, protože
|
106
|
-
signed_up_but_locked: Úspěšně jste se zaregistroval(a). Bohužel se nemůžete přihlásit, protože
|
107
|
-
signed_up_but_unconfirmed: Byl vám zaslán potvrzovací e-mail. Pro dokončení klikněte na aktivační odkaz zaslaný na
|
108
|
-
update_needs_confirmation: Úspěšně jste aktualizovali svůj účet, ale ještě musíte ověřit svou novou e-mailovou adresu. Zkontrolujte svou schránku a klikněte na odkaz pro dokončení ověření
|
105
|
+
signed_up_but_inactive: Úspěšně jste se zaregistroval(a). Bohužel se nemůžete přihlásit, protože Váš účet ještě není aktivován.
|
106
|
+
signed_up_but_locked: Úspěšně jste se zaregistroval(a). Bohužel se nemůžete přihlásit, protože Váš účet je zamknutý.
|
107
|
+
signed_up_but_unconfirmed: Byl vám zaslán potvrzovací e-mail. Pro dokončení klikněte na aktivační odkaz zaslaný na Váš e-mail.
|
108
|
+
update_needs_confirmation: Úspěšně jste aktualizovali svůj účet, ale ještě musíte ověřit svou novou e-mailovou adresu. Zkontrolujte svou schránku a klikněte na odkaz pro dokončení ověření Vaší nové e-mailové adresy.
|
109
109
|
updated: Váš účet byl úspěšně aktualizován.
|
110
110
|
updated_but_not_signed_in:
|
111
111
|
sessions:
|
@@ -131,7 +131,7 @@ cs:
|
|
131
131
|
new:
|
132
132
|
resend_unlock_instructions: Znovu odeslat instrukce pro odblokování
|
133
133
|
send_instructions: Za několik minut obdržíte e-mail s instrukcemi, jak odemknout svůj účet.
|
134
|
-
send_paranoid_instructions: Pokud
|
134
|
+
send_paranoid_instructions: Pokud Váš e-mail existuje v naší databázi, za několik minut obdržíte e-mail s instrukcemi pro odemknutí účtu.
|
135
135
|
unlocked: Váš účet byl úspěšně odblokován.
|
136
136
|
errors:
|
137
137
|
messages:
|
data/rails/locales/de-CH.yml
CHANGED
@@ -7,24 +7,24 @@ de-CH:
|
|
7
7
|
confirmed_at: Bestätigt am
|
8
8
|
created_at: Erstellt am
|
9
9
|
current_password: Bisheriges Passwort
|
10
|
-
current_sign_in_at:
|
11
|
-
current_sign_in_ip:
|
10
|
+
current_sign_in_at: Aktuelle Anmeldung vom
|
11
|
+
current_sign_in_ip: IP der aktuellen Anmeldung
|
12
12
|
email: E-Mail
|
13
|
-
encrypted_password:
|
13
|
+
encrypted_password: Verschlüsseltes Passwort
|
14
14
|
failed_attempts: Fehlversuche
|
15
15
|
last_sign_in_at: Letzte Anmeldung am
|
16
16
|
last_sign_in_ip: IP der letzten Anmeldung
|
17
17
|
locked_at: Gesperrt am
|
18
18
|
password: Passwort
|
19
19
|
password_confirmation: Passwortbestätigung
|
20
|
-
remember_created_at:
|
20
|
+
remember_created_at: Angemeldet bleiben vom
|
21
21
|
remember_me: Angemeldet bleiben
|
22
22
|
reset_password_sent_at: Passwort-Zurücksetzen-E-Mail gesendet am
|
23
23
|
reset_password_token: Passwort-Zurücksetzen-Token
|
24
24
|
sign_in_count: Anzahl Anmeldungen
|
25
|
-
unconfirmed_email:
|
25
|
+
unconfirmed_email: Unbestätigte E-Mail-Adresse
|
26
26
|
unlock_token: Entsperrungs-Token
|
27
|
-
updated_at:
|
27
|
+
updated_at: Aktualisiert am
|
28
28
|
models:
|
29
29
|
user: Benutzer
|
30
30
|
devise:
|
@@ -37,10 +37,10 @@ de-CH:
|
|
37
37
|
failure:
|
38
38
|
already_authenticated: Sie sind bereits angemeldet.
|
39
39
|
inactive: Ihr Account ist nicht aktiv.
|
40
|
-
invalid:
|
40
|
+
invalid: "%{authentication_keys} oder Passwort ungültig."
|
41
41
|
last_attempt: Sie haben noch einen Versuch, bis Ihr Account gesperrt wird.
|
42
42
|
locked: Ihr Account ist gesperrt.
|
43
|
-
not_found_in_database:
|
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
46
|
unconfirmed: Sie müssen Ihren Account bestätigen, bevor Sie fortfahren können.
|
@@ -51,9 +51,9 @@ de-CH:
|
|
51
51
|
instruction: 'Folgen Sie dem untenstehenden Link, um Ihr Konto zu bestätigen:'
|
52
52
|
subject: Anleitung zur Bestätigung Ihres Accounts
|
53
53
|
email_changed:
|
54
|
-
greeting:
|
55
|
-
message:
|
56
|
-
subject:
|
54
|
+
greeting: Hallo %{recipient}!
|
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
59
|
message: Wir kontaktieren Sie, um Ihnen mitzuteilen, dass Ihr Passwort geändert wurde.
|
@@ -107,7 +107,7 @@ de-CH:
|
|
107
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.
|
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
|
-
updated_but_not_signed_in:
|
110
|
+
updated_but_not_signed_in: Ihre Daten wurden aktualisiert, aber da sich Ihr Passwort geändert hat, müssen Sie sich erneut anmelden
|
111
111
|
sessions:
|
112
112
|
already_signed_out: Erfolgreich abgemeldet.
|
113
113
|
new:
|
@@ -125,7 +125,9 @@ de-CH:
|
|
125
125
|
Anmelden
|
126
126
|
sign_in_with_provider: Mit %{provider} anmelden
|
127
127
|
sign_up: Registrieren
|
128
|
-
minimum_password_length:
|
128
|
+
minimum_password_length:
|
129
|
+
one: "(mindestens %{count} Zeichen)"
|
130
|
+
other: "(mindestens %{count} Zeichen)"
|
129
131
|
unlocks:
|
130
132
|
new:
|
131
133
|
resend_unlock_instructions: Anleitung zum Entsperren noch mal schicken
|
data/rails/locales/de.yml
CHANGED
@@ -26,7 +26,9 @@ de:
|
|
26
26
|
unlock_token: Entsperrungs-Token
|
27
27
|
updated_at: Aktualisiert am
|
28
28
|
models:
|
29
|
-
user:
|
29
|
+
user:
|
30
|
+
one: Benutzer
|
31
|
+
other: Benutzer
|
30
32
|
devise:
|
31
33
|
confirmations:
|
32
34
|
confirmed: Ihre E-Mail-Adresse wurde erfolgreich bestätigt.
|
@@ -36,12 +38,12 @@ de:
|
|
36
38
|
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
39
|
failure:
|
38
40
|
already_authenticated: Sie sind bereits angemeldet.
|
39
|
-
inactive: Ihr Konto ist nicht aktiv.
|
41
|
+
inactive: Ihr Konto ist noch nicht aktiv.
|
40
42
|
invalid: "%{authentication_keys} oder Passwort ungültig."
|
41
43
|
last_attempt: Sie haben noch einen Versuch, bis Ihr Konto gesperrt wird.
|
42
44
|
locked: Ihr Konto ist gesperrt.
|
43
45
|
not_found_in_database: "%{authentication_keys} oder Passwort ungültig."
|
44
|
-
timeout: Ihre Sitzung ist abgelaufen
|
46
|
+
timeout: Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.
|
45
47
|
unauthenticated: Sie müssen sich anmelden oder registrieren, bevor Sie fortfahren können.
|
46
48
|
unconfirmed: Sie müssen Ihr Konto bestätigen, bevor Sie fortfahren können.
|
47
49
|
mailer:
|
@@ -85,11 +87,11 @@ de:
|
|
85
87
|
send_me_reset_password_instructions: Schicken Sie mir die Anleitung, mein Passwort zurückzusetzen
|
86
88
|
no_token: Sie können sich nicht auf dieser Seite anmelden, wenn Sie nicht von einer Passwort-Zurücksetzen-E-Mail kommen. Wenn Sie von solch einer E-Mail kommen, überprüfen Sie bitte, ob Sie die gesamte URL verwendet haben.
|
87
89
|
send_instructions: Sie erhalten in wenigen Minuten eine E-Mail mit der Anleitung, wie Sie Ihr Passwort zurücksetzen können.
|
88
|
-
send_paranoid_instructions: Falls Ihre E-Mail-Adresse in unserer Datenbank existiert, erhalten Sie in wenigen Minuten eine E-Mail
|
90
|
+
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 Passwort zurücksetzen können.
|
89
91
|
updated: Ihr Passwort wurde geändert. Sie sind jetzt angemeldet.
|
90
|
-
updated_not_active: Ihr Passwort wurde geändert.
|
92
|
+
updated_not_active: Ihr Passwort wurde erfolgreich geändert.
|
91
93
|
registrations:
|
92
|
-
destroyed: Ihr Konto wurde gelöscht.
|
94
|
+
destroyed: Ihr Konto wurde gelöscht. Wir hoffen, dass wir Sie bald wiedersehen.
|
93
95
|
edit:
|
94
96
|
are_you_sure: Sind Sie sicher?
|
95
97
|
cancel_my_account: Konto löschen
|
@@ -107,7 +109,7 @@ de:
|
|
107
109
|
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
110
|
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
111
|
updated: Ihre Daten wurden aktualisiert.
|
110
|
-
updated_but_not_signed_in:
|
112
|
+
updated_but_not_signed_in: Ihre Daten wurden aktualisiert, aber da sich Ihr Passwort geändert hat, müssen Sie sich erneut anmelden
|
111
113
|
sessions:
|
112
114
|
already_signed_out: Erfolgreich abgemeldet.
|
113
115
|
new:
|
@@ -134,7 +136,7 @@ de:
|
|
134
136
|
unlocked: Ihr Konto wurde entsperrt. Bitte melden Sie sich an, um fortzufahren.
|
135
137
|
errors:
|
136
138
|
messages:
|
137
|
-
already_confirmed: wurde bereits bestätigt
|
139
|
+
already_confirmed: wurde bereits bestätigt; bitte versuchen Sie, sich anzumelden
|
138
140
|
confirmation_period_expired: musste innerhalb von %{period} bestätigt werden, bitte neu anfordern.
|
139
141
|
expired: ist abgelaufen, bitte neu anfordern
|
140
142
|
not_found: nicht gefunden
|
data/rails/locales/en.yml
CHANGED
@@ -107,7 +107,7 @@ en:
|
|
107
107
|
signed_up_but_inactive: You have signed up successfully. However, we could not sign you in because your account is not yet activated.
|
108
108
|
signed_up_but_locked: You have signed up successfully. However, we could not sign you in because your account is locked.
|
109
109
|
signed_up_but_unconfirmed: A message with a confirmation link has been sent to your email address. Please follow the link to activate your account.
|
110
|
-
update_needs_confirmation: You updated your account successfully, but we need to verify your new email address. Please check your email and follow the
|
110
|
+
update_needs_confirmation: You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address.
|
111
111
|
updated: Your account has been updated successfully.
|
112
112
|
updated_but_not_signed_in: Your account has been updated successfully, but since your password was changed, you need to sign in again
|
113
113
|
sessions:
|
@@ -0,0 +1,142 @@
|
|
1
|
+
es-CO:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
user:
|
5
|
+
confirmation_sent_at: Confirmación enviada a
|
6
|
+
confirmation_token: 'Código de confirmación
|
7
|
+
|
8
|
+
'
|
9
|
+
confirmed_at: Confirmado en
|
10
|
+
created_at: Creado en
|
11
|
+
current_password: Contraseña actual
|
12
|
+
current_sign_in_at:
|
13
|
+
current_sign_in_ip:
|
14
|
+
email:
|
15
|
+
encrypted_password:
|
16
|
+
failed_attempts:
|
17
|
+
last_sign_in_at:
|
18
|
+
last_sign_in_ip:
|
19
|
+
locked_at:
|
20
|
+
password:
|
21
|
+
password_confirmation:
|
22
|
+
remember_created_at:
|
23
|
+
remember_me:
|
24
|
+
reset_password_sent_at:
|
25
|
+
reset_password_token:
|
26
|
+
sign_in_count:
|
27
|
+
unconfirmed_email:
|
28
|
+
unlock_token:
|
29
|
+
updated_at:
|
30
|
+
models:
|
31
|
+
user:
|
32
|
+
devise:
|
33
|
+
confirmations:
|
34
|
+
confirmed:
|
35
|
+
new:
|
36
|
+
resend_confirmation_instructions:
|
37
|
+
send_instructions:
|
38
|
+
send_paranoid_instructions:
|
39
|
+
failure:
|
40
|
+
already_authenticated:
|
41
|
+
inactive:
|
42
|
+
invalid:
|
43
|
+
last_attempt:
|
44
|
+
locked:
|
45
|
+
not_found_in_database:
|
46
|
+
timeout:
|
47
|
+
unauthenticated:
|
48
|
+
unconfirmed:
|
49
|
+
mailer:
|
50
|
+
confirmation_instructions:
|
51
|
+
action:
|
52
|
+
greeting:
|
53
|
+
instruction:
|
54
|
+
subject:
|
55
|
+
email_changed:
|
56
|
+
greeting:
|
57
|
+
message:
|
58
|
+
subject:
|
59
|
+
password_change:
|
60
|
+
greeting:
|
61
|
+
message:
|
62
|
+
subject:
|
63
|
+
reset_password_instructions:
|
64
|
+
action:
|
65
|
+
greeting:
|
66
|
+
instruction:
|
67
|
+
instruction_2:
|
68
|
+
instruction_3:
|
69
|
+
subject:
|
70
|
+
unlock_instructions:
|
71
|
+
action:
|
72
|
+
greeting:
|
73
|
+
instruction:
|
74
|
+
message:
|
75
|
+
subject:
|
76
|
+
omniauth_callbacks:
|
77
|
+
failure:
|
78
|
+
success:
|
79
|
+
passwords:
|
80
|
+
edit:
|
81
|
+
change_my_password:
|
82
|
+
change_your_password:
|
83
|
+
confirm_new_password:
|
84
|
+
new_password:
|
85
|
+
new:
|
86
|
+
forgot_your_password:
|
87
|
+
send_me_reset_password_instructions:
|
88
|
+
no_token:
|
89
|
+
send_instructions:
|
90
|
+
send_paranoid_instructions:
|
91
|
+
updated:
|
92
|
+
updated_not_active:
|
93
|
+
registrations:
|
94
|
+
destroyed:
|
95
|
+
edit:
|
96
|
+
are_you_sure:
|
97
|
+
cancel_my_account:
|
98
|
+
currently_waiting_confirmation_for_email:
|
99
|
+
leave_blank_if_you_don_t_want_to_change_it:
|
100
|
+
title:
|
101
|
+
unhappy:
|
102
|
+
update:
|
103
|
+
we_need_your_current_password_to_confirm_your_changes:
|
104
|
+
new:
|
105
|
+
sign_up:
|
106
|
+
signed_up:
|
107
|
+
signed_up_but_inactive:
|
108
|
+
signed_up_but_locked:
|
109
|
+
signed_up_but_unconfirmed:
|
110
|
+
update_needs_confirmation:
|
111
|
+
updated:
|
112
|
+
updated_but_not_signed_in:
|
113
|
+
sessions:
|
114
|
+
already_signed_out:
|
115
|
+
new:
|
116
|
+
sign_in:
|
117
|
+
signed_in:
|
118
|
+
signed_out:
|
119
|
+
shared:
|
120
|
+
links:
|
121
|
+
back:
|
122
|
+
didn_t_receive_confirmation_instructions:
|
123
|
+
didn_t_receive_unlock_instructions:
|
124
|
+
forgot_your_password:
|
125
|
+
sign_in:
|
126
|
+
sign_in_with_provider:
|
127
|
+
sign_up:
|
128
|
+
minimum_password_length:
|
129
|
+
unlocks:
|
130
|
+
new:
|
131
|
+
resend_unlock_instructions:
|
132
|
+
send_instructions:
|
133
|
+
send_paranoid_instructions:
|
134
|
+
unlocked:
|
135
|
+
errors:
|
136
|
+
messages:
|
137
|
+
already_confirmed:
|
138
|
+
confirmation_period_expired:
|
139
|
+
expired:
|
140
|
+
not_found:
|
141
|
+
not_locked:
|
142
|
+
not_saved:
|