mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 17:44:17 -08:00
2a0697022e
Signed-off-by: snipe <snipe@snipe.net>
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'invalid_category_type' => 'The category must be a consumable category.',
|
|
'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.'
|
|
)
|
|
|
|
|
|
);
|