mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'The accessory [:id] does not exist.',
|
|
'assoc_users' => 'Aksesori ini saat ini memiliki: count item yang dikeluarkan ke pengguna. Silakan periksa di aksesoris dan dan coba lagi. . Silakan periksa di aksesoris dan dan coba lagi. ',
|
|
|
|
'create' => [
|
|
'error' => 'Aksesori gagal di buat, mohon ulangi kembali.',
|
|
'success' => 'Aksesori sukses di buat.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Aksesori gagal terbaharui, mohon ulangi kembali',
|
|
'success' => 'Aksesori sukses terbaharui.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Apakah anda yakin menghapus aksesori ini?',
|
|
'error' => 'Terdapat kesalahan pada saat penghapusan aksesori ini. Silahkan coba kembali.',
|
|
'success' => 'Aksesori sukses terhapus.',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => 'Aksesori ini belum dikeluarkan, silahkan coba kembali',
|
|
'success' => 'Aksesori telah berhasil dikeluarkan.',
|
|
'user_does_not_exist' => 'Terdapat kesalahan pada user ini. Silahkan coba kembali.',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => 'Aksesoris belum masuk, silahkan coba kembali',
|
|
'success' => 'Aksesoris telah berhasil dimasukkan.',
|
|
'user_does_not_exist' => 'Terdapat kesalahan pada user ini. Silahkan coba kembali.',
|
|
],
|
|
|
|
];
|