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' => 'Komponendi nimi',
'checkin' => 'Checkin Component',
'checkout' => 'Checkout Component',
'cost' => 'Ostuhind',
'create' => 'Uus komponent',
'edit' => 'Muuda komponenti',
'date' => 'Ostu kuupäev',
'order' => 'Tellimuse number',
'remaining' => 'Alles',
'total' => 'Kokku',
'update' => 'Muuda komponenti',
'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' => 'Komponenti pole olemas.',
'create' => array(
'error' => 'Komponenti ei loodud, proovi uuesti.',
'success' => 'Komponendi loomine õnnestus.'
),
'update' => array(
'error' => 'Komponenti ei värskendatud, proovige uuesti',
'success' => 'Komponendi muutmine õnnestus.'
),
'delete' => array(
'confirm' => 'Kas oled kindel, et soovid selle komponendi kustutada?',
'error' => 'Komponendi kustutamisel tekkis probleem. Palun proovi uuesti.',
'success' => 'Komponendi kustutamine õnnestus.'
),
'checkout' => array(
'error' => 'Komponenti ei kontrollitud, palun proovige uuesti',
'success' => 'Komponent on edukalt välja võetud.',
'user_does_not_exist' => 'Vale kasutaja. Palun proovi uuesti.',
'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ',
),
'checkin' => array(
'error' => 'Komponent ei olnud märgitud, palun proovige uuesti',
'success' => 'Komponent on edukalt registreeritud.',
'user_does_not_exist' => 'Vale kasutaja. Palun proovi uuesti.'
)
);

View File

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