diff --git a/doc/user/project/file_lock.md b/doc/user/project/file_lock.md
index d6351483b60e4a7b2b90f32299e5013b38da0f9b..b83feda0c96f1b02a19e203a86af00752863c200 100644
--- a/doc/user/project/file_lock.md
+++ b/doc/user/project/file_lock.md
@@ -221,7 +221,7 @@ To view the user who locked the file (if it was not you), hover over the button.
 To view and remove file locks:
 
 1. On the top bar, select **Main menu > Projects** and find your project.
-1. On the left sidebar, select **Repository > Locked Files**.
+1. On the left sidebar, select **Repository > Locked files**.
 
 This list shows all the files locked either through LFS or GitLab UI.
 
diff --git a/ee/lib/ee/sidebars/projects/menus/repository_menu.rb b/ee/lib/ee/sidebars/projects/menus/repository_menu.rb
index 8e2412d8caa65f2bf13d0c8aaa68c1d73cce74a2..add09bbe61bc7e0d368fe50e69cdb18e3e74c071 100644
--- a/ee/lib/ee/sidebars/projects/menus/repository_menu.rb
+++ b/ee/lib/ee/sidebars/projects/menus/repository_menu.rb
@@ -24,7 +24,7 @@ def file_locks_menu_item
             end
 
             ::Sidebars::MenuItem.new(
-              title: _('Locked Files'),
+              title: _('Locked files'),
               link: project_path_locks_path(context.project),
               active_routes: { controller: :path_locks },
               item_id: :file_locks
diff --git a/ee/spec/features/projects/path_locks_spec.rb b/ee/spec/features/projects/path_locks_spec.rb
index 03c94291e79cc51e99718a19c1975a555f9055ed..dbc5407a6282f1ecaf797472c5a4dcdae15e69cd 100644
--- a/ee/spec/features/projects/path_locks_spec.rb
+++ b/ee/spec/features/projects/path_locks_spec.rb
@@ -72,7 +72,7 @@
   it 'managing of lock list' do
     create :path_lock, path: 'encoding', user: user, project: project
 
-    click_link "Locked Files"
+    click_link "Locked files"
 
     within '.locks' do
       expect(page).to have_content('encoding')
diff --git a/ee/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb b/ee/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb
index c9344c197bd200851e4d33357f853e3d2294b5c5..295de0812c41f6026b25f1110f37a9cc97c41245 100644
--- a/ee/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb
+++ b/ee/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb
@@ -36,7 +36,7 @@
 
         render
 
-        expect(rendered).to have_link('Locked Files', href: project_path_locks_path(project))
+        expect(rendered).to have_link('Locked files', href: project_path_locks_path(project))
       end
     end
   end
diff --git a/locale/gitlab.pot b/locale/gitlab.pot
index bddcc828c9a35357650b100953a674918eda6957..4089e69c0b741311e0e02e59271fc29738677aed 100644
--- a/locale/gitlab.pot
+++ b/locale/gitlab.pot
@@ -25730,9 +25730,6 @@ msgstr ""
 msgid "Locked"
 msgstr ""
 
-msgid "Locked Files"
-msgstr ""
-
 msgid "Locked by %{fileLockUserName}"
 msgstr ""
 
diff --git a/qa/qa/ee/page/project/sub_menus/repository.rb b/qa/qa/ee/page/project/sub_menus/repository.rb
index 359cfcfb14fe8a1dffa7dff3423f2a51852aa9ec..eb75a2840eb1d7820f6df33faedd59dbf7b329ab 100644
--- a/qa/qa/ee/page/project/sub_menus/repository.rb
+++ b/qa/qa/ee/page/project/sub_menus/repository.rb
@@ -17,7 +17,7 @@ def self.prepended(base)
             def go_to_repository_locked_files
               hover_repository do
                 within_submenu do
-                  click_element(:sidebar_menu_item_link, menu_item: 'Locked Files')
+                  click_element(:sidebar_menu_item_link, menu_item: 'Locked files')
                 end
               end
             end
diff --git a/spec/support/shared_contexts/navbar_structure_context.rb b/spec/support/shared_contexts/navbar_structure_context.rb
index 831cd87382b7d08c24d318a731a8445a0fc76134..e67dbd87aa9c1b56ab3f7b9ece4199c4466c1b3a 100644
--- a/spec/support/shared_contexts/navbar_structure_context.rb
+++ b/spec/support/shared_contexts/navbar_structure_context.rb
@@ -37,7 +37,7 @@
           _('Contributor statistics'),
           _('Graph'),
           _('Compare revisions'),
-          (_('Locked Files') if Gitlab.ee?)
+          (_('Locked files') if Gitlab.ee?)
         ]
       },
       {