mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -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
53 lines
1.7 KiB
PHP
53 lines
1.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'field' => [
|
|
'invalid' => 'Ce champ n\'existe pas.',
|
|
'already_added' => 'Le champ a déjà été ajouté',
|
|
|
|
'create' => [
|
|
'error' => 'Le champ n\'a pas été créé, veuillez réessayer.',
|
|
'success' => 'Le champ a bien été créé.',
|
|
'assoc_success' => 'Le champ a bien été ajouté au fieldset.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Le champ n\'a pas été actualisé, veuillez réessayer',
|
|
'success' => 'Le champ a bien été actualisé.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Êtes-vous sûr de vouloir supprimer ce champ ?',
|
|
'error' => 'Un problème a eu lien pendant la suppression du champ. Veuillez réessayer.',
|
|
'success' => 'Le champ a bien été supprimé.',
|
|
'in_use' => 'Le champ est actuellement en utilisation.',
|
|
],
|
|
|
|
],
|
|
|
|
'fieldset' => [
|
|
|
|
'does_not_exist' => 'Fieldset n\'existe pas',
|
|
|
|
'create' => [
|
|
'error' => 'Le fieldset n\'a pas pur être créé, veuillez réessayer.',
|
|
'success' => 'Le Fieldset a bien été créé.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Le fieldset n\'a pas été actualisé, veuillez réessayer',
|
|
'success' => 'Le fieldset a bien été actualisé.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Êtes-vous sûr de vouloir supprimer ce fieldset ?',
|
|
'error' => 'Un problème a eu lien pendant la suppression du fieldset. Veuillez réessayer.',
|
|
'success' => 'Le fieldset a bien été supprimé.',
|
|
'in_use' => 'Le fieldset est actuellement utilisé.',
|
|
],
|
|
|
|
],
|
|
|
|
];
|