2016-03-25 01:18:05 -07:00
< ? php
2022-01-13 21:27:29 -08:00
return array (
2016-03-25 01:18:05 -07:00
2020-11-09 14:52:11 -08:00
'does_not_exist' => 'The accessory [:id] does not exist.' ,
2023-11-27 06:43:16 -08:00
'not_found' => 'That accessory was not found.' ,
2016-03-25 01:18:05 -07:00
'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ' ,
2022-01-13 21:27:29 -08:00
'create' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Accessory was not created, please try again.' ,
2022-01-13 21:27:29 -08:00
'success' => 'Accessory created successfully.'
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'update' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Accessory was not updated, please try again' ,
2022-01-13 21:27:29 -08:00
'success' => 'Accessory updated successfully.'
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'delete' => array (
2016-03-25 01:18:05 -07:00
'confirm' => 'Are you sure you wish to delete this accessory?' ,
'error' => 'There was an issue deleting the accessory. Please try again.' ,
2022-01-13 21:27:29 -08:00
'success' => 'The accessory was deleted successfully.'
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'checkout' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Accessory was not checked out, please try again' ,
'success' => 'Accessory checked out successfully.' ,
2023-04-06 19:21:33 -07:00
'unavailable' => 'Accessory is not available for checkout. Check quantity available' ,
2024-07-19 09:47:22 -07:00
'user_does_not_exist' => 'That user is invalid. Please try again.' ,
'checkout_qty' => array (
'lte' => 'There is currently only one available accessory of this type, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.|There are :number_currently_remaining total available accessories, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.' ,
),
2022-01-13 21:27:29 -08:00
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'checkin' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Accessory was not checked in, please try again' ,
'success' => 'Accessory checked in successfully.' ,
2022-01-13 21:27:29 -08:00
'user_does_not_exist' => 'That user is invalid. Please try again.'
)
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
);