mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
10ac2c830f
Signed-off-by: snipe <snipe@snipe.net>
48 lines
1.9 KiB
PHP
48 lines
1.9 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'deleted' => 'Deleted asset model',
|
|
'does_not_exist' => 'Model tidak ada.',
|
|
'no_association' => 'WARNING! The asset model for this item is invalid or missing!',
|
|
'no_association_fix' => 'This will break things in weird and horrible ways. Edit this asset now to assign it a model.',
|
|
'assoc_users' => 'Model ini saat ini dikaitkan dengan satu atau lebih aset dan tidak dapat dihapus. Harap hapus asetnya, lalu coba hapus lagi. ',
|
|
|
|
|
|
'create' => array(
|
|
'error' => 'Model tidak dibuat, silahkan dicoba lagi.',
|
|
'success' => 'Model berhasil dibuat.',
|
|
'duplicate_set' => 'Model aset dengan nama, nama produsen dan nomor model yang sudah ada.',
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => 'Model tidak diperbarui, silahkan dicoba lagi',
|
|
'success' => 'Model berhasil diperbarui.',
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Yakin ingin menghapus model aset ini?',
|
|
'error' => 'Terjadi masalah saat menghapus model. Silahkan coba lagi.',
|
|
'success' => 'Model berhasil dihapus.'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'Aset tidak dikembalikan, coba lagi',
|
|
'success' => 'Model berhasil dikembalikan.'
|
|
),
|
|
|
|
'bulkedit' => array(
|
|
'error' => 'Tidak ada bidang yang berubah, jadi tidak ada yang diperbarui.',
|
|
'success' => 'Model successfully updated. |:model_count models successfully updated.',
|
|
'warn' => 'You are about to update the properties of the following model:|You are about to edit the properties of the following :model_count models:',
|
|
|
|
),
|
|
|
|
'bulkdelete' => array(
|
|
'error' => 'Tidak ada model yang dipilih, jadi tidak ada yang dihapus.',
|
|
'success' => 'Model deleted!|:success_count models deleted!',
|
|
'success_partial' => ':success_count model(s) telah dihapus, namun: fail_count tidak dapat dihapus karena mereka masih memiliki aset yang terkait dengannya.'
|
|
),
|
|
|
|
);
|