mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 15:09:40 -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
37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'L\'accessoire [:id] n\'existe pas.',
|
|
'assoc_users' => 'Cet accessoire à présentement des items d\'attribué à des utilisateurs. S\'il vous plaît vérifier l\'accessoire et veuillez réessayer. ',
|
|
|
|
'create' => [
|
|
'error' => 'L\'accessoire n\'a pas été créé, veuillez réessayer.',
|
|
'success' => 'L\'accessoire a bien été créé.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'L\'accessoire n\'a pas été mis-à-jour, veuillez réessayer',
|
|
'success' => 'L\'accessoire a bien été mis-à-jour.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Etes-vous sûr de vouloir supprimer cet accessoire ?',
|
|
'error' => 'Un problème est survenu durant la suppression de l\'accessoire. Merci d\'essayer à nouveau.',
|
|
'success' => 'L\'accessoire a bien été supprimé.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'Cet accessoire n\'est pas attribué. Veuillez réessayer',
|
|
'success' => 'Accessoire attribué correctement.',
|
|
'user_does_not_exist' => 'Cet utilisateur est inexistant. Veuillez réessayer.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'Cet accessoire n\'a pas été dissocié, veuillez réessayer',
|
|
'success' => 'Accessoire dissocié correctement.',
|
|
'user_does_not_exist' => 'Cet utilisateur est inexistant. Veuillez réessayer.',
|
|
],
|
|
|
|
];
|