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 Masuk',
'checkout' => 'Komponen Keluar',
'cost' => 'Harga Pembelian',
'create' => 'Buat Komponen',
'edit' => 'Ubah Komponen',
'date' => 'Tanggal Pemebelian',
'order' => 'Nomor Permintaan',
'remaining' => 'Sisa',
'total' => 'Total',
'update' => 'Perbaharui Komponen',
'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 ada.',
'create' => array(
'error' => 'Komponen belum dibuat, silahkan coba lagi.',
'success' => 'Komponen berhasil dibuat.'
),
'update' => array(
'error' => 'Komponen gagal diubah, silahkan coba lagi',
'success' => 'Komponen berhasil diubah.'
),
'delete' => array(
'confirm' => 'Anda yakin akan mengahpus komponen ini?',
'error' => 'Ada masalah untuk hapus komponen, silahkan coba kembali.',
'success' => 'Komponen berhasil dihapus.'
),
'checkout' => array(
'error' => 'Komponen tidak bisa dikeluarkan, silahkan coba kembali',
'success' => 'Komponen berhasil dikeluarkan.',
'user_does_not_exist' => 'Pengguna tidak cocok. Silahkan coba lagi.',
'unavailable' => 'Not enough components remaining: :remaining remaining, :requested requested ',
),
'checkin' => array(
'error' => 'Komponen tidak bisa dimasukan, silahkan coba lagi',
'success' => 'Komponen berhasil dimasukan.',
'user_does_not_exist' => 'Pengguna tidak cocok. Silahkan coba lagi.'
)
);

View File

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