2016-03-25 01:18:05 -07:00
< ? php
2022-01-13 21:27:29 -08:00
return array (
2016-03-25 01:18:05 -07:00
2021-12-13 11:28:01 -08:00
'does_not_exist' => 'O acessório [:id] não existe.' ,
2024-01-03 15:12:29 -08:00
'not_found' => 'Esse acessório não foi encontrado.' ,
2016-03-25 01:18:05 -07:00
'assoc_users' => 'Esta acessório tem atualmente :count items alocados a utilizadores. Por favor, devolva-os e tente novamente. ' ,
2022-01-13 21:27:29 -08:00
'create' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Acessório não foi criado, por favor tente novamente.' ,
2022-01-13 21:27:29 -08:00
'success' => 'Acessório criado com sucesso.'
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'update' => array (
2016-03-25 01:18:05 -07:00
'error' => 'Acessório não foi actualizado, por favor tente novamente' ,
2022-01-13 21:27:29 -08:00
'success' => 'Acessório actualizado com sucesso.'
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'delete' => array (
2016-03-28 21:50:00 -07:00
'confirm' => 'Tem a certeza que pretende remover este acessório?' ,
'error' => 'Ocorreu um problema ao remover o acessório. Por favor, tente novamente.' ,
2022-01-13 21:27:29 -08:00
'success' => 'O acessório foi removido com sucesso.'
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'checkout' => array (
2016-03-25 01:18:05 -07:00
'error' => 'O acessório não foi alocado. Por favor, tente novamente' ,
'success' => 'Acessório alocado com sucesso.' ,
2023-08-15 05:21:35 -07:00
'unavailable' => 'O acessório não está disponível para check-out. Verifique a quantidade disponível' ,
2024-07-19 09:47:22 -07:00
'user_does_not_exist' => 'O utilizador é inválido. Por favor, tente novamente.' ,
'checkout_qty' => array (
'lte' => 'There is currently only one available accessory of this type, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.|There are :number_currently_remaining total available accessories, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.' ,
),
2022-01-13 21:27:29 -08:00
),
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
'checkin' => array (
2016-03-25 01:18:05 -07:00
'error' => 'O acessório não foi devolvido. Por favor, tente novamente' ,
'success' => 'Acessório devolvido com sucesso.' ,
2022-01-13 21:27:29 -08:00
'user_does_not_exist' => 'O utilizador é inválido. Por favor, tente novamente.'
)
2016-03-25 01:18:05 -07:00
2022-01-13 21:27:29 -08:00
);