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' => 'Nama Komponen',
'checkin' => 'Komponen Pemeriksa',
'checkout' => 'Komponen Keluar',
'cost' => 'Kos Pembelian',
'create' => 'Buat Komponen',
'edit' => 'Edit Komponen',
'date' => 'Tarikh Pembelian',
'order' => 'Nombor Pesanan',
'remaining' => 'Baki',
'total' => 'Jumlah',
'update' => 'Komponen Kemas Kini',
'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' => 'Komponen tidak wujud.',
'create' => array(
'error' => 'Komponen tidak dibuat, sila cuba lagi.',
'success' => 'Komponen berjaya dihasilkan.'
),
'update' => array(
'error' => 'Komponen tidak dikemas kini, sila cuba lagi',
'success' => 'Komponen berjaya dikemas kini.'
),
'delete' => array(
'confirm' => 'Adakah anda pasti ingin memadamkan komponen ini?',
'error' => 'Terdapat isu memadamkan komponen. Sila cuba lagi.',
'success' => 'Komponen telah berjaya dipadam.'
),
'checkout' => array(
'error' => 'Komponen tidak diperiksa, sila cuba lagi',
'success' => 'Komponen diperiksa dengan jayanya.',
'user_does_not_exist' => 'Pengguna itu tidak sah. Sila cuba lagi.',
'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ',
),
'checkin' => array(
'error' => 'Komponen tidak diperiksa, sila cuba lagi',
'success' => 'Komponen diperiksa dengan jayanya.',
'user_does_not_exist' => 'Pengguna itu tidak sah. Sila cuba lagi.'
)
);

View File

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