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,11 @@
<?php
return array(
'checkout' => 'Periksa Comsumable ke pengguna',
'consumable_name' => 'Nama Consumable',
'create' => 'Buat Consumable',
'item_no' => 'No Barang.',
'remaining' => 'Tersisa',
'total' => 'Total',
'update' => 'Update Consumable',
);

View File

@ -0,0 +1,37 @@
<?php
return array(
'does_not_exist' => 'Consumable Tidak ada.',
'create' => array(
'error' => 'Consumable gagal dibuat, silahkan coba lagi.',
'success' => 'Consumable berhasil dibuat.'
),
'update' => array(
'error' => 'Consumable gagal diupdate, silahkan coba lagi',
'success' => 'Consumable berhasil diupdate.'
),
'delete' => array(
'confirm' => 'Apakah Anda yakin ingin menghapus Consumable ini?',
'error' => 'Ada masalah menghapus Consumable. Silakan coba lagi.',
'success' => 'Consumable berhasil dihapus.'
),
'checkout' => array(
'error' => 'Consumable tidak diperiksa, silakan coba lagi',
'success' => 'Consumable berhasil diperiksa.',
'user_does_not_exist' => 'Pengguna tidak valid. Silakan coba lagi.',
'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ',
),
'checkin' => array(
'error' => 'Consumable tidak diperiksa, silakan coba lagi',
'success' => 'Consumable berhasil di-check in.',
'user_does_not_exist' => 'Pengguna tidak valid. Silakan coba lagi.'
)
);

View File

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