snipe-it/resources/lang/en/admin/depreciations/message.php

26 lines
889 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
return array(
2016-03-25 01:18:05 -07:00
'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(
2016-03-25 01:18:05 -07:00
'error' => 'Depreciation class was not created, please try again. :(',
'success' => 'Depreciation class created successfully. :)'
),
2016-03-25 01:18:05 -07:00
'update' => array(
2016-03-25 01:18:05 -07:00
'error' => 'Depreciation class was not updated, please try again',
'success' => 'Depreciation class updated successfully.'
),
2016-03-25 01:18:05 -07:00
'delete' => array(
2016-03-25 01:18:05 -07:00
'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.'
)
2016-03-25 01:18:05 -07:00
);