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
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-28 06:15:07 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-28 06:15:07 +0300
commit7c21db7a4eb0631b851a5ae65fae23d7423e735b (patch)
treef386bc7d0a579efc6a4b15e2c484314f4f104d7d /app
parenta250be3e205135d2d8310f644d9b650643f406bc (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/edit.html.haml8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/views/projects/edit.html.haml b/app/views/projects/edit.html.haml
index 269c576d882..67ae5a0efa7 100644
--- a/app/views/projects/edit.html.haml
+++ b/app/views/projects/edit.html.haml
@@ -97,9 +97,11 @@
= render 'projects/errors'
= gitlab_ui_form_for @project do |f|
.form-group
- %p
- %span.gl-font-weight-bold= _("Be careful. Renaming a project's repository can have unintended side effects.")
- = _('You will need to update your local repositories to point to the new location.')
+ %ul
+ %li= _("Be careful. Renaming a project's repository can have unintended side effects.")
+ %li= _('You will need to update your local repositories to point to the new location.')
+ - if Feature.enabled?(:renaming_project_with_tags, @project)
+ %li= s_('ContainerRegistry|While the rename is in progress, new uploads to the container registry are blocked. Ongoing uploads may fail and need to be retried.')
- if @project.deployment_platform.present?
%p= _('Your deployment services will be broken, you will need to manually fix the services after renaming.')
= f.label :path, _('Path'), class: 'label-bold'