Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix successfully typo #5394

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ en:
success_notice: "%{handle} was added as an unconfirmed owner. Ownership access will be enabled after the user clicks on the confirmation mail sent to their email."
update:
update_current_user_role: Can't update your own Role
success_notice: "%{handle} was succesfully updated."
success_notice: "%{handle} was successfully updated."
destroy:
removed_notice: "%{owner_name} was removed from the owners successfully"
failed_notice: Can't remove the only owner of the gem
Expand Down Expand Up @@ -798,7 +798,7 @@ en:
delete_failed: "Could not delete credential"
delete: Delete
confirm: Are you sure you want to delete this credential?
saved: Security device succesfully created
saved: Security device successfully created
form:
new_device: Register a new security device
nickname: Nickname
Expand Down
2 changes: 1 addition & 1 deletion test/functional/owners_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ class OwnersControllerTest < ActionController::TestCase
should redirect_to("rubygem show") { rubygem_owners_path(@rubygem.slug) }

should "set success notice flash" do
assert_equal "#{@maintainer.name} was succesfully updated.", flash[:notice]
assert_equal "#{@maintainer.name} was successfully updated.", flash[:notice]
end

should "downgrade the ownership to a maintainer role" do
Expand Down
Loading