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