mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 09:04:09 -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
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => 'Model tidak wujud.',
|
|
'assoc_users' => 'Model ini sekarang disekutukan dengan sekurang2nya satu atau lebih harta dan tidak boleh dihapuskan. Sila kemaskini harta, dan kemudian cuba lagi. ',
|
|
|
|
'create' => [
|
|
'error' => 'Model gagal dicipta, sila cuba lagi.',
|
|
'success' => 'Model berjaya dicipta.',
|
|
'duplicate_set' => 'Model aset dengan nama itu, pengeluar dan nombor model sudah ada.',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => 'Model gagal dikemaskin, sila cuba lagi',
|
|
'success' => 'Model berjaya dikemaskini.',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => 'Anda pasti anda ingin hapuskan model harta ini?',
|
|
'error' => 'Ada isu semasa menghapuskan model. Sila cuba lagi.',
|
|
'success' => 'Model berjaya dihapuskan.',
|
|
],
|
|
|
|
'restore' => [
|
|
'error' => 'Model tidak dipulihkan, sila cuba lagi',
|
|
'success' => 'Model berjaya dipulihkan.',
|
|
],
|
|
|
|
'bulkedit' => [
|
|
'error' => 'Tiada medan berubah, jadi tiada apa yang dikemas kini.',
|
|
'success' => 'Model dikemas kini.',
|
|
],
|
|
|
|
'bulkdelete' => [
|
|
'error' => 'No models were selected, so nothing was deleted.',
|
|
'success' => ':success_count model(s) deleted!',
|
|
'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.',
|
|
],
|
|
|
|
];
|