Skip to content

Commit fd03f9e

Browse files
committed
Added missing full stop "." on registrations.updated_but_not_signed_in.
1 parent 45b831c commit fd03f9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ en:
4444
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."
4545
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."
4646
updated: "Your account has been updated successfully."
47-
updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again"
47+
updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again."
4848
sessions:
4949
signed_in: "Signed in successfully."
5050
signed_out: "Signed out successfully."

test/integration/registerable_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def user_sign_up
189189
fill_in 'current password', with: '12345678'
190190
click_button 'Update'
191191

192-
assert_contain 'Your account has been updated successfully, but since your password was changed, you need to sign in again'
192+
assert_contain 'Your account has been updated successfully, but since your password was changed, you need to sign in again.'
193193
assert_equal new_user_session_path, @request.path
194194
refute warden.authenticated?(:user)
195195
end

0 commit comments

Comments
 (0)