2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
2016-05-16 21:54:13 -07:00
|
|
|
'does_not_exist' => 'Il Componente non esiste.',
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
'create' => array(
|
2016-05-16 21:54:13 -07:00
|
|
|
'error' => 'Il Componente non è stato creato, riprova.',
|
|
|
|
'success' => 'Componente creato correttamente.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'update' => array(
|
2016-05-16 21:54:13 -07:00
|
|
|
'error' => 'Il Componente non è stato aggiornato, riprova',
|
|
|
|
'success' => 'Componente aggiornato correttamente.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'delete' => array(
|
2016-05-16 21:54:13 -07:00
|
|
|
'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.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'checkout' => array(
|
|
|
|
'error' => 'Component was not checked out, please try again',
|
|
|
|
'success' => 'Component checked out successfully.',
|
|
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.'
|
|
|
|
),
|
|
|
|
|
|
|
|
'checkin' => array(
|
|
|
|
'error' => 'Component was not checked in, please try again',
|
|
|
|
'success' => 'Component checked in successfully.',
|
|
|
|
'user_does_not_exist' => 'That user is invalid. Please try again.'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
);
|