2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
2016-07-29 14:32:31 -07:00
|
|
|
'does_not_exist' => 'Komponentas \'%s\' neegzistuoja.',
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
'create' => array(
|
2016-07-29 14:32:31 -07:00
|
|
|
'error' => 'Komponentas nebuvo sukurtas, prašome bandyti vėl.',
|
|
|
|
'success' => 'Komponentas sėkmingai sukurtas.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'update' => array(
|
|
|
|
'error' => 'Component was not updated, please try again',
|
|
|
|
'success' => 'Component updated successfully.'
|
|
|
|
),
|
|
|
|
|
|
|
|
'delete' => array(
|
2016-07-29 14:32:31 -07:00
|
|
|
'confirm' => 'Ar tikrai norite ištrinti šį komponentą?',
|
2016-03-25 01:18:05 -07:00
|
|
|
'error' => 'There was an issue deleting the component. Please try again.',
|
2016-10-25 12:30:52 -07:00
|
|
|
'success' => 'Komponentas ištrintas sėkmingai.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'checkout' => array(
|
|
|
|
'error' => 'Component was not checked out, please try again',
|
|
|
|
'success' => 'Component checked out successfully.',
|
2016-10-25 12:30:52 -07:00
|
|
|
'user_does_not_exist' => 'Šis naudotojas neteisingas. Prašome bandykite dar kartą.'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'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.'
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
);
|