Frontend: Rename "Inactive Projects" to "Dormant Projects"
See https://gitlab.com/gitlab-org/gitlab/-/issues/526759 for more context. We have ambiguous usage of the term `inactive projects` which may lead to confusion as the same term refers to different states in different contexts. 1. **Delete inactive projects feature**: Refers to projects with no recent activities, but they are not archived or deleted 2. **Inactive projects tab**: Lists archived projects and projects pending deletion To resolve this, we plan to keep (2) as is and replace (1) to use the term "Dormant Projects" instead. ## Implementation Guide > Ensure that the "inactive projects" that we're refactoring is actually related to dormant projects. Not to be confused with the inactive project tab and features meant to categorize archived and marked for deletion projects. Refactor reference of "inactive project" to "dormant project" in the following directory/files: 1. [app/assets/javascripts/admin/application_settings/inactive_project_deletion/*](https://gitlab.com/gitlab-org/gitlab/-/tree/e2cc01271d6499bd4e188ff95a98120428a26c50/app/assets/javascripts/admin/application_settings/inactive_project_deletion) 2. [spec/frontend/admin/application_settings/inactive_project_deletion/components/form_spec.js](https://gitlab.com/gitlab-org/gitlab/blob/8d25c5a321b38f459de5c21227ae130d8ce7eaa9/spec/frontend/admin/application_settings/inactive_project_deletion/components/form_spec.js) 3. [~~app/assets/javascripts/groups/components/empty_states/inactive_projects_empty_state.vue~~](https://gitlab.com/gitlab-org/gitlab/blob/5cb0140b4510fb1ae99c8fadb246b125dd598abe/app/assets/javascripts/groups/components/empty_states/inactive_projects_empty_state.vue) 4. [app/views/admin/application_settings/_repository_check.html.haml](https://gitlab.com/gitlab-org/gitlab/blob/4caee1cbd1399a5b0f1683e0b2925aad01c1c98f/app/views/admin/application_settings/_repository_check.html.haml#L33-L35) 5. Update the [Configure inactive project deletion](https://gitlab.com/gitlab-org/gitlab/blob/965f72cfa2949d90a436effea391902ad30b1b06/doc/administration/inactive_project_deletion.md#configure-inactive-project-deletion) documentation accordingly.
issue