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 12:50:26 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-04-04 12:50:26 +0300
commit59b5843eb0d329f314a58c074c42ecaa4bd24f25 (patch)
treeab5015540087839c877aa351dd159a87bb0fbec1 /app/controllers/projects/registry
parent008441c49e493b885586ba38993f54bdcb03799c (diff)
Improve wording in registry notifications in the UI
Diffstat (limited to 'app/controllers/projects/registry')
-rw-r--r--app/controllers/projects/registry/repositories_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/projects/registry/repositories_controller.rb b/app/controllers/projects/registry/repositories_controller.rb
index cb1ea45dd04..2e18075d40f 100644
--- a/app/controllers/projects/registry/repositories_controller.rb
+++ b/app/controllers/projects/registry/repositories_controller.rb
@@ -11,10 +11,10 @@ module Projects
def destroy
if image.destroy
redirect_to project_container_registry_path(@project),
- notice: 'Images repository has been removed successfully!'
+ notice: 'Image repository has been removed successfully!'
else
redirect_to project_container_registry_path(@project),
- alert: 'Failed to remove images repository!'
+ alert: 'Failed to remove image repository!'
end
end