Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-04 14:02:52 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-04 14:02:52 +0300
commitf60820ed0345513d43a1fd9a8b93caf4d39756f4 (patch)
treea85d4cfd73b7ccbcde3ebc9208f3278b961f2fc1 /app/controllers/projects/registry
parentcb2ce8452fe2e9e156add5ccfe8fd2ec5cda9ace (diff)
Fix wording in registry tags controller notifications
Diffstat (limited to 'app/controllers/projects/registry')
-rw-r--r--app/controllers/projects/registry/tags_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/projects/registry/tags_controller.rb b/app/controllers/projects/registry/tags_controller.rb
index aab130787e9..138f9d14ee1 100644
--- a/app/controllers/projects/registry/tags_controller.rb
+++ b/app/controllers/projects/registry/tags_controller.rb
@@ -6,10 +6,10 @@ module Projects
def destroy
if tag.delete
redirect_to project_container_registry_path(@project),
- notice: 'Tag removed successfull!'
+ notice: 'Registry tag has been removed successfully!'
else
redirect_to project_container_registry_path(@project),
- alert: 'Failed to remove repository tag!'
+ alert: 'Failed to remove registry tag!'
end
end