snipe-it/resources/lang/pt-PT/admin/consumables/message.php
snipe ddfa5776c5 Updated language strings
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();`

I'll try to fix it. :(

FML

Signed-off-by: snipe <snipe@snipe.net>
2022-01-13 21:27:29 -08:00

37 lines
1.2 KiB
PHP

<?php
return array(
'does_not_exist' => 'O consumível não existe.',
'create' => array(
'error' => 'Não foi possível criar o consumível. Por favor, tente novamente.',
'success' => 'Consumível criado com sucesso.'
),
'update' => array(
'error' => 'Consumível não atualizado. Por favor, tente novamente',
'success' => 'Consumível atualizado com sucesso.'
),
'delete' => array(
'confirm' => 'Tem a certeza que deseja remover este consumível?',
'error' => 'Ocorreu um problema ao remover o consumível. Por favor, tente novamente.',
'success' => 'Consumível removido com sucesso.'
),
'checkout' => array(
'error' => 'O consumível não foi alocado. Por favor, tente novamente',
'success' => 'Consumível alocado com sucesso.',
'user_does_not_exist' => 'O utilizador é inválido. Por favor, tente novamente.'
),
'checkin' => array(
'error' => 'O consumível não foi devolvido. Por favor, tente novamente',
'success' => 'Consumível devolvido com sucesso.',
'user_does_not_exist' => 'O utilizador é inválido. Por favor, tente novamente.'
)
);