This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,16 @@
<?php
return array(
'component_name' => 'Nome Componente',
'checkin' => 'Checkin Componente',
'checkout' => 'Checkout Componente',
'cost' => 'Prezzo d\'acquisto',
'create' => 'Crea Componente',
'edit' => 'Modifica Componente',
'date' => 'Data di acquisto',
'order' => 'Numero Ordine',
'remaining' => 'Rimanenti',
'total' => 'Totale',
'update' => 'Aggiorna Componente',
'checkin_limit' => 'La quantità in ingresso deve essere uguale o inferiore di :assigned_qty'
);

View File

@ -0,0 +1,37 @@
<?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.',
'unavailable' => 'Non ci sono abbastanza componenti: rimangono :remaining , servono :requested ',
),
'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.'
)
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'title' => 'Nome Componente',
);