2016-03-25 01:18:05 -07:00
< ? php
2022-01-13 21:30:35 -08:00
return array (
2016-03-25 01:18:05 -07:00
'does_not_exist' => 'Category does not exist.' ,
2016-05-16 21:54:13 -07:00
'assoc_models' => 'This category is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this category and try again. ' ,
'assoc_items' => 'This category is currently associated with at least one :asset_type and cannot be deleted. Please update your :asset_type to no longer reference this category and try again. ' ,
2016-03-25 01:18:05 -07:00
2022-05-24 15:07:14 -07:00
'create' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Category was not created, please try again.' ,
2022-05-24 15:07:14 -07:00
'success' => 'Category created successfully.'
),
2016-03-25 01:18:05 -07:00
2022-05-24 15:07:14 -07:00
'update' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Category was not updated, please try again' ,
2023-01-10 16:15:51 -08:00
'success' => 'Category updated successfully.' ,
'cannot_change_category_type' => 'You cannot change the category type once it has been created' ,
2022-05-24 15:07:14 -07:00
),
2016-03-25 01:18:05 -07:00
2022-05-24 15:07:14 -07:00
'delete' => array (
2016-03-25 01:18:05 -07:00
'confirm' => 'Are you sure you wish to delete this category?' ,
'error' => 'There was an issue deleting the category. Please try again.' ,
2022-05-24 15:07:14 -07:00
'success' => 'The category was deleted successfully.'
)
2016-03-25 01:18:05 -07:00
2022-01-13 21:30:35 -08:00
);