snipe-it/resources/lang/pt-BR/admin/accessories/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

37 lines
1.3 KiB
PHP

<?php
return [
'does_not_exist' => 'Este acessório [:id] não existe.',
'assoc_users' => 'Este acessório tem atualmente :count itens alocado para os usuários. Por favor, verifique em acessórios e e tente novamente. ',
'create' => [
'error' => 'Acessório não criado, Por favor tente novamente.',
'success' => 'Acessório criado com sucesso.',
],
'update' => [
'error' => 'Acessório não atualizado, Por favor tente novamente',
'success' => 'Acessório atualizado com sucesso.',
],
'delete' => [
'confirm' => 'Tem certeza de que deseja excluir este acessório?',
'error' => 'Ocorreu um problema ao remover o acessório. Por favor, tente novamente.',
'success' => 'O acessório foi excluído com sucesso.',
],
'checkout' => [
'error' => 'O acessório não foi alocado, por favor tente novamente',
'success' => 'Acessório alocado com sucesso.',
'user_does_not_exist' => 'Este usuário é inválido. Tente novamente.',
],
'checkin' => [
'error' => 'O acessório não foi devolvido, por favor, tente novamente',
'success' => 'Acessório devolvido com sucesso.',
'user_does_not_exist' => 'Este usuário é inválido. Tente novamente.',
],
];