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' => 'Consumable does not exist.',
|
|
|
|
|
2021-06-10 13:15:52 -07:00
|
|
|
'create' => [
|
2016-03-25 01:18:05 -07:00
|
|
|
'error' => 'Consumable was not created, please try again.',
|
2021-06-10 13:15:52 -07:00
|
|
|
'success' => 'Consumable created successfully.',
|
|
|
|
],
|
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' => 'Consumable was not updated, please try again',
|
2021-06-10 13:15:52 -07:00
|
|
|
'success' => 'Consumable 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 consumable?',
|
|
|
|
'error' => 'There was an issue deleting the consumable. Please try again.',
|
2021-06-10 13:15:52 -07:00
|
|
|
'success' => 'The consumable 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' => 'Consumable was not checked out, please try again',
|
|
|
|
'success' => 'Consumable 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' => 'Consumable was not checked in, please try again',
|
|
|
|
'success' => 'Consumable 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
|
|
|
);
|