mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
ddfa5776c5
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();` I'll try to fix it. :( FML Signed-off-by: snipe <snipe@snipe.net>
20 lines
800 B
PHP
20 lines
800 B
PHP
<?php
|
|
|
|
return [
|
|
'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' => [
|
|
'error' => 'Company was not created, please try again.',
|
|
'success' => 'Company created successfully.',
|
|
],
|
|
'update' => [
|
|
'error' => 'Company was not updated, please try again',
|
|
'success' => 'Company updated successfully.',
|
|
],
|
|
'delete' => [
|
|
'confirm' => 'Ertu viss um að þú viljir afskrá þetta fyrirtæki?',
|
|
'error' => 'There was an issue deleting the company. Please try again.',
|
|
'success' => 'The Company was deleted successfully.',
|
|
],
|
|
];
|