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' => 'Heiti íhlutar',
'checkin' => 'Checkin Component',
'checkout' => 'Checkout Component',
'cost' => 'Innkaupsverð',
'create' => 'Skrá íhlut',
'edit' => 'Breyta íhluti',
'date' => 'Innkaups dagsetning',
'order' => 'Pöntunarnúmer',
'remaining' => 'Eftir',
'total' => 'Samtals',
'update' => 'Uppfæra íhlut',
'checkin_limit' => 'Amount checked in must be equal to or less than :assigned_qty'
);

View File

@ -0,0 +1,37 @@
<?php
return array(
'does_not_exist' => 'Component does not exist.',
'create' => array(
'error' => 'Component was not created, please try again.',
'success' => 'Component created successfully.'
),
'update' => array(
'error' => 'Component was not updated, please try again',
'success' => 'Component updated successfully.'
),
'delete' => array(
'confirm' => 'Are you sure you wish to delete this component?',
'error' => 'There was an issue deleting the component. Please try again.',
'success' => 'The component was deleted successfully.'
),
'checkout' => array(
'error' => 'Component was not checked out, please try again',
'success' => 'Component checked out successfully.',
'user_does_not_exist' => 'Notandinn er ónothæfur. Vinsamlegast reyndu aftur.',
'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ',
),
'checkin' => array(
'error' => 'Component was not checked in, please try again',
'success' => 'Component checked in successfully.',
'user_does_not_exist' => 'Þessi notandi er ónothæfur, vinsamlegast reyndu aftur.'
)
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'title' => 'Heiti íhlutar',
);