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' => 'Consumable does not exist.',
|
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'create' => array(
|
2018-03-22 20:01:45 -07:00
|
|
|
'error' => 'Consumable was not created, please try again.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'success' => 'Consumable 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' => 'Consumable was not updated, please try again',
|
2022-01-13 21:27:29 -08:00
|
|
|
'success' => 'Consumable 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 consumable?',
|
|
|
|
'error' => 'There was an issue deleting the consumable. Please try again.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'success' => 'The consumable was deleted successfully.'
|
|
|
|
),
|
2018-03-22 20:01:45 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'checkout' => array(
|
2018-03-22 20:01:45 -07:00
|
|
|
'error' => 'Consumable was not checked out, please try again',
|
|
|
|
'success' => 'Consumable checked out successfully.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.'
|
|
|
|
),
|
2018-03-22 20:01:45 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
'checkin' => array(
|
2018-03-22 20:01:45 -07:00
|
|
|
'error' => 'Consumable was not checked in, please try again',
|
|
|
|
'success' => 'Consumable checked in successfully.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.'
|
|
|
|
)
|
2018-03-22 20:01:45 -07:00
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
|
|
|
|
);
|