From 0da069ba9fe0ba2c742998f5fc7a7cc94eeb239e Mon Sep 17 00:00:00 2001 From: Robert Korulczyk Date: Thu, 16 Feb 2023 17:33:37 +0100 Subject: [PATCH] Fix translation key for scheduler dashboard. (#3736) --- framework/core/src/Foundation/ApplicationInfoProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Foundation/ApplicationInfoProvider.php b/framework/core/src/Foundation/ApplicationInfoProvider.php index 794378de5..c15c6de0e 100644 --- a/framework/core/src/Foundation/ApplicationInfoProvider.php +++ b/framework/core/src/Foundation/ApplicationInfoProvider.php @@ -119,7 +119,7 @@ class ApplicationInfoProvider // If the schedule has not run in the last 5 minutes, mark it as inactive. return Carbon::parse($status) > Carbon::now()->subMinutes(5) ? $this->translator->trans('core.admin.dashboard.status.scheduler.active') - : $this->translator->trans('core.admin.status.scheduler.inactive'); + : $this->translator->trans('core.admin.dashboard.status.scheduler.inactive'); } /**