diff --git a/app/Listeners/Update/CreateModuleUpdatedHistory.php b/app/Listeners/Update/CreateModuleUpdatedHistory.php index 5f28ee7b4..c65b9ad8f 100644 --- a/app/Listeners/Update/CreateModuleUpdatedHistory.php +++ b/app/Listeners/Update/CreateModuleUpdatedHistory.php @@ -34,7 +34,7 @@ class CreateModuleUpdatedHistory 'company_id' => $model->company_id, 'module_id' => $model->id, 'version' => $event->new, - 'description' => trans('modules.history.updated', ['module' => $module->getAlias()]), + 'description' => trans('modules.updated_2', ['module' => $module->getAlias()]), ]); } } diff --git a/resources/lang/en-GB/modules.php b/resources/lang/en-GB/modules.php index 95a815669..8634a56d5 100644 --- a/resources/lang/en-GB/modules.php +++ b/resources/lang/en-GB/modules.php @@ -27,7 +27,7 @@ return [ 'installed' => ':module installed', 'uninstalled' => ':module uninstalled', - //'updated' => ':module updated', + 'updated_2' => ':module updated', 'enabled' => ':module enabled', 'disabled' => ':module disabled',