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,11 @@
<?php
return array(
'checkout' => 'Kasutaja saab tellimuse',
'consumable_name' => 'Kuluvahendi nimi',
'create' => 'Loo tarbitav',
'item_no' => 'Objekti nr',
'remaining' => 'Alles',
'total' => 'Kokku',
'update' => 'Muuda kuluvahendit',
);

View File

@ -0,0 +1,37 @@
<?php
return array(
'does_not_exist' => 'Kuluvahendit pole olemas.',
'create' => array(
'error' => 'Kuluvahendit ei loodud, proovi uuesti.',
'success' => 'Kuluvahendi loomine õnnestus.'
),
'update' => array(
'error' => 'Kuluvahendit ei muudetud, proovi uuesti',
'success' => 'Kuluvahendi muutmine õnnestus.'
),
'delete' => array(
'confirm' => 'Kas oled kindel, et soovid selle kuluvahendi kustutada?',
'error' => 'Kuluvahendi kustutamisel tekkis probleem. Palun proovi uuesti.',
'success' => 'Kuluvahendi kustutamine õnnestus.'
),
'checkout' => array(
'error' => 'Tarbitavat ei kontrollitud, proovige uuesti',
'success' => 'Tarbitav kontrollitud edukalt.',
'user_does_not_exist' => 'See kasutaja ei sobi. Palun proovi uuesti.',
'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ',
),
'checkin' => array(
'error' => 'Tarbitavat ei märgitud, proovige uuesti',
'success' => 'Tarbitav kontrollitud edukalt.',
'user_does_not_exist' => 'See kasutaja ei sobi. Palun proovi uuesti.'
)
);

View File

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