From 85e5dfc8cfb924d9f795a311f2e00f7ee0930062 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 18 Apr 2025 03:45:04 +0000 Subject: [PATCH] Issue 14890: Translate page titles --- src/App/Page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Page.php b/src/App/Page.php index a9fc9674a0..623f464086 100644 --- a/src/App/Page.php +++ b/src/App/Page.php @@ -198,7 +198,7 @@ class Page implements ArrayAccess ) { // Default title: current module called if (empty($this->page['title']) && $args->getModuleName()) { - $this->page['title'] = ucfirst($args->getModuleName()); + $this->page['title'] = $l10n->t(ucfirst($args->getModuleName())); } // Prepend the sitename to the page title