ajout app

This commit is contained in:
2024-04-17 20:22:30 +02:00
parent cc017cfc5e
commit f9d05a2fd3
8025 changed files with 729805 additions and 0 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',
);