mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
026ea41dee
Signed-off-by: snipe <snipe@snipe.net>
26 lines
889 B
PHP
26 lines
889 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Depreciation class does not exist.',
|
|
'assoc_users' => 'This depreciation is currently associated with one or more models and cannot be deleted. Please delete the models, and then try deleting again. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Depreciation class was not created, please try again. :(',
|
|
'success' => 'Depreciation class created successfully. :)'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Depreciation class was not updated, please try again',
|
|
'success' => 'Depreciation class updated successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this depreciation class?',
|
|
'error' => 'There was an issue deleting the depreciation class. Please try again.',
|
|
'success' => 'The depreciation class was deleted successfully.'
|
|
)
|
|
|
|
);
|