From: Michael Date: Fri, 18 Apr 2025 03:45:04 +0000 (+0000) Subject: Issue 14890: Translate page titles X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=85e5dfc8cfb924d9f795a311f2e00f7ee0930062;p=friendica.git Issue 14890: Translate page titles --- 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