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' => 'Sastāvdaļas nosaukums',
'checkin' => 'Reģistrēšanās sastāvdaļa',
'checkout' => 'Checkout komponentu',
'cost' => 'Iegādes izmaksas',
'create' => 'Izveidot komponentu',
'edit' => 'Rediģēt komponentu',
'date' => 'Pirkuma datums',
'order' => 'Pasūtījuma numurs',
'remaining' => 'Atlikušais',
'total' => 'Kopā',
'update' => 'Atjaunināt komponents',
'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' => 'Komponents neeksistē.',
'create' => array(
'error' => 'Komponents nav izveidots, lūdzu, mēģiniet vēlreiz.',
'success' => 'Komponents tika veiksmīgi izveidots.'
),
'update' => array(
'error' => 'Komponents nav atjaunināts, lūdzu, mēģiniet vēlreiz',
'success' => 'Komponents ir veiksmīgi atjaunināts.'
),
'delete' => array(
'confirm' => 'Vai tiešām vēlaties dzēst šo komponentu?',
'error' => 'Radās problēma, izdzēšot komponentu. Lūdzu mēģiniet vēlreiz.',
'success' => 'Komponents tika veiksmīgi dzēsts.'
),
'checkout' => array(
'error' => 'Komponents netika pārbaudīts, lūdzu, mēģiniet vēlreiz',
'success' => 'Komponents veiksmīgi pārbaudīts.',
'user_does_not_exist' => 'Šis lietotājs ir nederīgs. Lūdzu mēģiniet vēlreiz.',
'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ',
),
'checkin' => array(
'error' => 'Komponents nav reģistrēts, lūdzu, mēģiniet vēlreiz',
'success' => 'Komponents ir veiksmīgi reģistrēts.',
'user_does_not_exist' => 'Šis lietotājs ir nederīgs. Lūdzu mēģiniet vēlreiz.'
)
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'title' => 'Sastāvdaļas nosaukums',
);