mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
32 lines
1.5 KiB
PHP
32 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Status Label does not exist.',
|
|
'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ',
|
|
|
|
'create' => [
|
|
'error' => 'Status Label was not created, please try again.',
|
|
'success' => 'Status Label created successfully.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Status Label was not updated, please try again',
|
|
'success' => 'Status Label updated successfully.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Are you sure you wish to delete this Status Label?',
|
|
'error' => 'There was an issue deleting the Status Label. Please try again.',
|
|
'success' => 'The Status Label was deleted successfully.',
|
|
],
|
|
|
|
'help' => [
|
|
'undeployable' => 'These assets cannot be assigned to anyone.',
|
|
'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of <i class="fa fa-circle text-blue"></i> <strong>Deployed</strong>.',
|
|
'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.',
|
|
'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.',
|
|
],
|
|
|
|
];
|