2018-03-22 20:01:45 -07:00
< ? php
2022-01-13 21:27:29 -08:00
return array (
2018-03-22 20:01:45 -07:00
'does_not_exist' => 'Depreciation class does not exist.' ,
'assoc_users' => 'This depreciation is currently associated with one or more models and cannot be deleted. Please delete the models, and then try deleting again. ' ,
2022-01-13 21:27:29 -08:00
'create' => array (
2018-03-22 20:01:45 -07:00
'error' => 'Depreciation class was not created, please try again. :(' ,
2022-01-13 21:27:29 -08:00
'success' => 'Depreciation class created successfully. :)'
),
2018-03-22 20:01:45 -07:00
2022-01-13 21:27:29 -08:00
'update' => array (
2018-03-22 20:01:45 -07:00
'error' => 'Depreciation class was not updated, please try again' ,
2022-01-13 21:27:29 -08:00
'success' => 'Depreciation class updated successfully.'
),
2018-03-22 20:01:45 -07:00
2022-01-13 21:27:29 -08:00
'delete' => array (
2018-03-22 20:01:45 -07:00
'confirm' => 'Are you sure you wish to delete this depreciation class?' ,
'error' => 'There was an issue deleting the depreciation class. Please try again.' ,
2022-01-13 21:27:29 -08:00
'success' => 'The depreciation class was deleted successfully.'
)
2018-03-22 20:01:45 -07:00
2022-01-13 21:27:29 -08:00
);