18 lines
417 B
PHP
18 lines
417 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'success' => [
|
|
'added' => ':type added!',
|
|
'updated' => ':type updated!',
|
|
'deleted' => ':type deleted!',
|
|
],
|
|
'error' => [
|
|
'not_user_company' => 'Error: You are not allowed to manage this company!',
|
|
],
|
|
'warning' => [
|
|
'deleted' => 'Warning: You are not delete :type. Because it has :text',
|
|
],
|
|
|
|
];
|