snipe-it/resources/lang/it/admin/components/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' => 'Il Componente non esiste.',
'create' => array(
'error' => 'Il Componente non è stato creato, riprova.',
'success' => 'Componente creato correttamente.'
),
'update' => array(
'error' => 'Il Componente non è stato aggiornato, riprova',
'success' => 'Componente aggiornato correttamente.'
),
'delete' => array(
'confirm' => 'Sei sicuro di voler eliminare questo Componente?',
'error' => 'Si è verificato un problema durante l\'eliminazione del componente. Riprova.',
'success' => 'Il componente è stato eliminato correttamente.'
),
'checkout' => array(
'error' => 'Il Componente non è stato controllato, si prega di riprovare',
'success' => 'Componente controllato con successo.',
'user_does_not_exist' => 'Questo utente non è valido. Riprova.'
),
'checkin' => array(
'error' => 'Il Componente non è stato controllato, si prega di riprovare',
'success' => 'Componente controllato con successo.',
'user_does_not_exist' => 'Questo utente non è valido. Riprova.'
)
);