From 4f4064e975c6c1a95c97f37c806e3613364b7ed4 Mon Sep 17 00:00:00 2001 From: Judith Roth Date: Tue, 26 May 2026 15:02:56 +0200 Subject: [PATCH 1/2] [#75362] Inconsistent naming on admin page https://community.openproject.org/wp/75362 Change to plural form so it's consistent with the other menu entries. --- config/locales/en.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/locales/en.yml b/config/locales/en.yml index ea9e79d0d32d..5e83abb6a66a 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -4183,7 +4183,7 @@ en: label_home: "Home" label_subject_or_id: "Subject or ID" label_calendar_subscriptions: "Calendar subscriptions" - label_identifier: "Identifier" + label_identifier: "Identifiers" label_project_identifier: "Project identifier" label_in: "in" label_in_less_than: "in less than" From 66fd9b542530e0d5e2beaf8f15b2c0fb08149d8e Mon Sep 17 00:00:00 2001 From: Judith Roth Date: Tue, 26 May 2026 16:08:23 +0200 Subject: [PATCH 2/2] [#75362] Fix header in project settings https://community.openproject.org/wp/75362 after rename in global settings --- .../projects/settings/general/show_component.html.erb | 2 +- config/locales/en.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/components/projects/settings/general/show_component.html.erb b/app/components/projects/settings/general/show_component.html.erb index 4599126fc761..21242f9a0ce1 100644 --- a/app/components/projects/settings/general/show_component.html.erb +++ b/app/components/projects/settings/general/show_component.html.erb @@ -49,7 +49,7 @@ See COPYRIGHT and LICENSE files for more details. <%= render(Primer::BaseComponent.new(tag: :section, mb: 4)) do %> <%= render(Primer::Beta::Subhead.new) do |component| - component.with_heading(tag: :h3, size: :medium) { t(:label_identifier) } + component.with_heading(tag: :h3, size: :medium) { I18n.t("projects.settings.header_identifier") } end %> <%= diff --git a/config/locales/en.yml b/config/locales/en.yml index 5e83abb6a66a..689b2a0c2e17 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -959,6 +959,7 @@ en: text: "This action will not delete any project the list contains. Are you sure you want to delete this project list?" settings: header_details: Basic details + header_identifier: Identifier header_status: Status header_relations: Project relations button_update_details: Update details