2019-12-06 12:03:04 -08:00
< ? php
2022-01-13 21:27:29 -08:00
return array (
2019-12-06 12:03:04 -08:00
'does_not_exist' => 'Manufacturer does not exist.' ,
'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ' ,
2022-01-13 21:27:29 -08:00
'create' => array (
2019-12-06 12:03:04 -08:00
'error' => 'Manufacturer was not created, please try again.' ,
2022-01-13 21:27:29 -08:00
'success' => 'Manufacturer created successfully.'
),
2019-12-06 12:03:04 -08:00
2022-01-13 21:27:29 -08:00
'update' => array (
2019-12-06 12:03:04 -08:00
'error' => 'Manufacturer was not updated, please try again' ,
2022-01-13 21:27:29 -08:00
'success' => 'Manufacturer updated successfully.'
),
2019-12-06 12:03:04 -08:00
2022-01-13 21:27:29 -08:00
'restore' => array (
2019-12-06 12:03:04 -08:00
'error' => 'Manufacturer was not restored, please try again' ,
2022-01-13 21:27:29 -08:00
'success' => 'Manufacturer restored successfully.'
),
2019-12-06 12:03:04 -08:00
2022-01-13 21:27:29 -08:00
'delete' => array (
2019-12-06 12:03:04 -08:00
'confirm' => 'Are you sure you wish to delete this manufacturer?' ,
'error' => 'There was an issue deleting the manufacturer. Please try again.' ,
2022-01-13 21:27:29 -08:00
'success' => 'The Manufacturer was deleted successfully.'
)
2019-12-06 12:03:04 -08:00
2022-01-13 21:27:29 -08:00
);