mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
22 lines
841 B
PHP
22 lines
841 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Department does not exist.',
|
|
'assoc_users' => 'This department is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this department and try again. ',
|
|
'create' => array(
|
|
'error' => 'Department was not created, please try again.',
|
|
'success' => 'Department created successfully.'
|
|
),
|
|
'update' => array(
|
|
'error' => 'Department was not updated, please try again',
|
|
'success' => 'Department updated successfully.'
|
|
),
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this department?',
|
|
'error' => 'There was an issue deleting the department. Please try again.',
|
|
'success' => 'El departamento ha sido borrado exitosamente'
|
|
)
|
|
|
|
);
|