diff --git a/app/views/admin/settings/authentication_settings/show.html.erb b/app/views/admin/settings/authentication_settings/show.html.erb index c4659022926..d99a6730281 100644 --- a/app/views/admin/settings/authentication_settings/show.html.erb +++ b/app/views/admin/settings/authentication_settings/show.html.erb @@ -52,11 +52,11 @@ See COPYRIGHT and LICENSE files for more details. <%= render Primer::OpenProject::PageHeader.new do |header| - header.with_title { t(:label_authentication_settings) } + header.with_title { t("authentication.login_and_registration") } header.with_breadcrumbs( [{ href: admin_index_path, text: t(:label_administration) }, { href: admin_settings_authentication_path, text: t(:label_authentication) }, - t(:label_authentication_settings)] + t("authentication.login_and_registration")] ) render_tab_header_nav(header, tabs) end diff --git a/config/initializers/menus.rb b/config/initializers/menus.rb index 18519a9a37f..497b954f6cf 100644 --- a/config/initializers/menus.rb +++ b/config/initializers/menus.rb @@ -502,7 +502,7 @@ Redmine::MenuManager.map :admin_menu do |menu| menu.push :authentication_settings, { controller: "/admin/settings/authentication_settings", action: :show }, if: ->(_) { User.current.admin? }, - caption: :label_authentication_settings, + caption: :"authentication.login_and_registration", parent: :authentication menu.push :ldap_authentication, diff --git a/config/locales/en.yml b/config/locales/en.yml index 8cd7517473d..44405e749df 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -112,6 +112,9 @@ en: text: "Individual actions of a user (e.g. updating a work package twice) are aggregated into a single action if their age difference is less than the specified timespan. They will be displayed as a single action within the application. This will also delay notifications by the same amount of time reducing the number of emails being sent and will also affect %{webhook_link} delay." link: "webhook" + authentication: + login_and_registration: "Login and registration" + announcements: show_until: Show until is_active: currently displayed @@ -2571,7 +2574,6 @@ en: label_ldap_auth_source_plural: "LDAP connections" label_attribute_expand_text: "The complete text for '%{attribute}'" label_authentication: "Authentication" - label_authentication_settings: "Authentication settings" label_available_custom_fields_projects: "Available custom fields projects" label_available_global_roles: "Available global roles" label_available_project_attributes: "Available project attributes"