mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
014eab3abc
Signed-off-by: snipe <snipe@snipe.net>
23 lines
967 B
PHP
23 lines
967 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => 'Departemen tidak ada.',
|
|
'department_already_exists' => 'A department already exists with that name at this company location. Or choose a more specific name for this department. ',
|
|
'assoc_users' => 'Saat ini kategori ini terkait dengan setidaknya satu pengguna dan tidak dapat dihapus. Silahkan perbaharui model Anda untuk tidak lagi tereferensi dengan kategori ini dan coba lagi. ',
|
|
'create' => array(
|
|
'error' => 'Komponen belum dibuat, silahkan coba lagi.',
|
|
'success' => 'Komponen berhasil dibuat.'
|
|
),
|
|
'update' => array(
|
|
'error' => 'Komponen belum diperbaharui, silahkan coba lagi',
|
|
'success' => 'Komponen berhasil dibuat.'
|
|
),
|
|
'delete' => array(
|
|
'confirm' => 'Anda yakin akan mengahpus komponen ini?',
|
|
'error' => 'Ada masalah untuk hapus komponen, silahkan coba kembali.',
|
|
'success' => 'Komponen berhasil dihapus.'
|
|
)
|
|
|
|
);
|