diff --git a/framework/core/src/Foundation/ApplicationInfoProvider.php b/framework/core/src/Foundation/ApplicationInfoProvider.php index 794378de54..c15c6de0ee 100644 --- a/framework/core/src/Foundation/ApplicationInfoProvider.php +++ b/framework/core/src/Foundation/ApplicationInfoProvider.php @@ -119,7 +119,7 @@ public function getSchedulerStatus(): string // 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'); } /**