mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
25 lines
861 B
PHP
25 lines
861 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Manufacturer does not exist.',
|
|
'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ',
|
|
|
|
'create' => array(
|
|
'error' => 'Manufacturer was not created, please try again.',
|
|
'success' => 'Manufacturer created successfully.'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Manufacturer was not updated, please try again',
|
|
'success' => 'Manufacturer updated successfully.'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this manufacturer?',
|
|
'error' => 'There was an issue deleting the manufacturer. Please try again.',
|
|
'success' => 'The Manufacturer was deleted successfully.'
|
|
)
|
|
|
|
);
|