mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 06:59:41 -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
26 lines
1,002 B
PHP
26 lines
1,002 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'La categoria non esiste.',
|
|
'assoc_models' => 'Questa categoria è attualmente associata ad almeno un modello pertanto non può essere eliminata. Aggiorna i tuoi modelli e riprova. ',
|
|
'assoc_items' => 'Questa categoria è attualmente associata ad almeno un :asset_type pertanto non può essere eliminata. Aggiorna il tuo :asset_type e riprova. ',
|
|
|
|
'create' => [
|
|
'error' => 'La categoria non è stata creata, si prega di riprovare.',
|
|
'success' => 'Categoria creata con successo.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'La categoria non è stata aggiornata, si prega di riprovare',
|
|
'success' => 'Categoria aggiornata con successo.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Sei sicuro di voler cancellare questa categoria?',
|
|
'error' => 'Si è verificato un problema cercando di eliminare la categoria. Riprova.',
|
|
'success' => 'La categoria è stata eliminata con successo.',
|
|
],
|
|
|
|
];
|