diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-12-21 17:15:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 17:15:57 +0100 |
commit | e9328c09940369251c17ada855a15e8f33801984 (patch) | |
tree | bd8d097b76644a8e064e2349f7b4fed8341c162b /apps/dashboard | |
parent | cd596f00cdd125a3db9e294c5c4e08fb89aa557d (diff) | |
parent | cead9a4f456b6d371230c59d21790104b5b55d17 (diff) | |
download | nextcloud-server-e9328c09940369251c17ada855a15e8f33801984.tar.gz nextcloud-server-e9328c09940369251c17ada855a15e8f33801984.zip |
Merge pull request #42413 from nextcloud/backport/42381/stable28
[stable28] enh(dashboard): changed h1 to say Dashboard instead of Nextcloud
Diffstat (limited to 'apps/dashboard')
-rw-r--r-- | apps/dashboard/lib/Controller/DashboardController.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/dashboard/lib/Controller/DashboardController.php b/apps/dashboard/lib/Controller/DashboardController.php index e72fde4b7bd..e7a1a71ccd4 100644 --- a/apps/dashboard/lib/Controller/DashboardController.php +++ b/apps/dashboard/lib/Controller/DashboardController.php @@ -10,6 +10,7 @@ declare(strict_types=1); * @author Morris Jobke <hey@morrisjobke.de> * @author Roeland Jago Douma <roeland@famdouma.nl> * @author Kate Döen <kate.doeen@nextcloud.com> + * @author Eduardo Morales <eduardo.morales@nextcloud.com> * * @license GNU AGPL version 3 or any later version * @@ -42,6 +43,7 @@ use OCP\Dashboard\IWidget; use OCP\Dashboard\RegisterWidgetEvent; use OCP\EventDispatcher\IEventDispatcher; use OCP\IConfig; +use OCP\IL10N; use OCP\IRequest; #[IgnoreOpenAPI] @@ -55,6 +57,8 @@ class DashboardController extends Controller { private $dashboardManager; /** @var IConfig */ private $config; + /** @var IL10N */ + private $l10n; /** @var string */ private $userId; @@ -65,6 +69,7 @@ class DashboardController extends Controller { IEventDispatcher $eventDispatcher, IManager $dashboardManager, IConfig $config, + IL10N $l10n, $userId ) { parent::__construct($appName, $request); @@ -73,6 +78,7 @@ class DashboardController extends Controller { $this->eventDispatcher = $eventDispatcher; $this->dashboardManager = $dashboardManager; $this->config = $config; + $this->l10n = $l10n; $this->userId = $userId; } @@ -117,6 +123,7 @@ class DashboardController extends Controller { $response = new TemplateResponse('dashboard', 'index', [ 'id-app-content' => '#app-dashboard', 'id-app-navigation' => null, + 'pageTitle' => $this->l10n->t('Dashboard'), ]); // For the weather widget we should allow the geolocation |