mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
37 lines
1.1 KiB
PHP
Executable file
37 lines
1.1 KiB
PHP
Executable file
<?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.'
|
|
),
|
|
|
|
'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.'
|
|
)
|
|
|
|
|
|
);
|