mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
af2e407543
Signed-off-by: snipe <snipe@snipe.net>
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Component does not exist.',
|
|
|
|
'create' => [
|
|
'error' => 'Component was not created, please try again.',
|
|
'success' => 'Component created successfully.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Component was not updated, please try again',
|
|
'success' => 'Component updated successfully.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Are you sure you wish to delete this component?',
|
|
'error' => 'There was an issue deleting the component. Please try again.',
|
|
'success' => 'The component was deleted successfully.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'Component was not checked out, please try again',
|
|
'success' => 'Component checked out successfully.',
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'Component was not checked in, please try again',
|
|
'success' => 'Component checked in successfully.',
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.',
|
|
],
|
|
|
|
);
|