snipe-it/resources/lang/fr/admin/groups/message.php
Laravel Shift 934afa036f Adopt Laravel coding style
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
2021-06-10 20:15:52 +00:00

23 lines
796 B
PHP

<?php
return [
'group_exists' => 'Ce groupe existe déjà!',
'group_not_found' => 'Ce groupe [:id] n\'existe pas.',
'group_name_required' => 'Le champ nom est obligatoire.',
'success' => [
'create' => 'Ce groupe a été créé correctement.',
'update' => 'Ce groupe a été actualisé correctement.',
'delete' => 'Ce groupe a été supprimé correctement.',
],
'delete' => [
'confirm' => 'Etes-vous sûr de vouloir supprimer ce groupe?',
'create' => 'Il y a eu un problème en créant le groupe. Veuillez réessayer.',
'update' => 'Il y a eu un problème en actualisant le groupe. Veuillez réessayer.',
'delete' => 'Il y a eu un problème en supprimant le groupe. Veuillez réessayer.',
],
];