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
|
|
|
|
2018-07-24 19:35:26 -07:00
|
|
|
'does_not_exist' => 'The accessory [:id] does not exist.',
|
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. ',
|
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
'create' => [
|
2016-03-25 01:18:05 -07:00
|
|
|
'error' => 'The accessory was not created, please try again.',
|
2021-06-10 13:15:52 -07:00
|
|
|
'success' => 'The accessory was successfully created.',
|
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
'update' => [
|
2016-03-25 01:18:05 -07:00
|
|
|
'error' => 'The accessory was not updated, please try again',
|
2021-06-10 13:15:52 -07:00
|
|
|
'success' => 'The accessory was updated successfully.',
|
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
'delete' => [
|
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.',
|
2021-06-10 13:15:52 -07:00
|
|
|
'success' => 'The accessory was deleted successfully.',
|
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
'checkout' => [
|
2016-03-25 01:18:05 -07:00
|
|
|
'error' => 'Accessory was not checked out, please try again',
|
|
|
|
'success' => 'Accessory checked out successfully.',
|
2021-06-10 13:15:52 -07:00
|
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.',
|
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
'checkin' => [
|
2016-03-25 01:18:05 -07:00
|
|
|
'error' => 'Accessory was not checked in, please try again',
|
|
|
|
'success' => 'Accessory checked in successfully.',
|
2021-06-10 13:15:52 -07:00
|
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.',
|
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2022-01-13 21:30:35 -08:00
|
|
|
);
|