diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-25 12:30:31 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-25 12:30:31 -0400 |
commit | 7e2e42379cb40a500eb8a236c05788eb3e84d141 (patch) | |
tree | 784dfe04f81b034889b96b5c251923da7e6f3a1e /config/locales | |
parent | 275218aeaf24d4f9d58589cf68ec6647f0a65050 (diff) | |
download | thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.tar.gz thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.tar.bz2 thoughts-7e2e42379cb40a500eb8a236c05788eb3e84d141.zip |
Added logging in and logging out
Diffstat (limited to 'config/locales')
-rw-r--r-- | config/locales/devise.en.yml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/config/locales/devise.en.yml b/config/locales/devise.en.yml new file mode 100644 index 0000000..0b8f130 --- /dev/null +++ b/config/locales/devise.en.yml | |||
@@ -0,0 +1,64 @@ | |||
1 | # Additional translations at https://github.com/plataformatec/devise/wiki/I18n | ||
2 | |||
3 | en: | ||
4 | devise: | ||
5 | confirmations: | ||
6 | confirmed: "Your email address has been successfully confirmed." | ||
7 | send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes." | ||
8 | send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address 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 %{authentication_keys} or password." | ||
13 | locked: "Your account is locked." | ||
14 | last_attempt: "You have one more attempt before your account is locked." | ||
15 | not_found_in_database: "Invalid %{authentication_keys} 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 email address before continuing." | ||
19 | mailer: | ||
20 | confirmation_instructions: | ||
21 | subject: "Confirmation instructions" | ||
22 | reset_password_instructions: | ||
23 | subject: "Reset password instructions" | ||
24 | unlock_instructions: | ||
25 | subject: "Unlock instructions" | ||
26 | email_changed: | ||
27 | subject: "Email Changed" | ||
28 | password_change: | ||
29 | subject: "Password Changed" | ||
30 | omniauth_callbacks: | ||
31 | failure: "Could not authenticate you from %{kind} because \"%{reason}\"." | ||
32 | success: "Successfully authenticated from %{kind} account." | ||
33 | passwords: | ||
34 | 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." | ||
35 | send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." | ||
36 | 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." | ||
37 | updated: "Your password has been changed successfully. You are now signed in." | ||
38 | updated_not_active: "Your password has been changed successfully." | ||
39 | registrations: | ||
40 | destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon." | ||
41 | signed_up: "Welcome! You have signed up successfully." | ||
42 | signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." | ||
43 | signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." | ||
44 | 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." | ||
45 | update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address." | ||
46 | updated: "Your account has been updated successfully." | ||
47 | sessions: | ||
48 | signed_in: "Signed in successfully." | ||
49 | signed_out: "Signed out successfully." | ||
50 | already_signed_out: "Signed out successfully." | ||
51 | unlocks: | ||
52 | send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes." | ||
53 | send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes." | ||
54 | unlocked: "Your account has been unlocked successfully. Please sign in to continue." | ||
55 | errors: | ||
56 | messages: | ||
57 | already_confirmed: "was already confirmed, please try signing in" | ||
58 | confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" | ||
59 | expired: "has expired, please request a new one" | ||
60 | not_found: "not found" | ||
61 | not_locked: "was not locked" | ||
62 | not_saved: | ||
63 | one: "1 error prohibited this %{resource} from being saved:" | ||
64 | other: "%{count} errors prohibited this %{resource} from being saved:" | ||