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
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '樣板不存在',
|
|
'assoc_users' => '至少還有一個資產與此樣板關聯,目前不能被删除,請在刪除資產後重試。 ',
|
|
|
|
'create' => [
|
|
'error' => '新增樣板失敗,請重試。',
|
|
'success' => '新增樣板成功。',
|
|
'duplicate_set' => '資產名稱、製造商、型號都相同的其它資產樣板已存在。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '更新樣板失敗,請重試。',
|
|
'success' => '更新樣板成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '您確定要刪除此樣板嗎?',
|
|
'error' => '刪除樣板失敗,請重試。',
|
|
'success' => '刪除樣板成功。',
|
|
],
|
|
|
|
'restore' => [
|
|
'error' => '恢復樣板失敗,請重試。',
|
|
'success' => '恢復樣板成功。',
|
|
],
|
|
|
|
'bulkedit' => [
|
|
'error' => '沒有欄位被更改,因此沒有更新任何內容。',
|
|
'success' => '樣板已更新。',
|
|
],
|
|
|
|
'bulkdelete' => [
|
|
'error' => '沒有型號被選擇,因此沒有更新任何內容。',
|
|
'success' => ':success_count 個型號已刪除!',
|
|
'success_partial' => ':success_count 個型號被刪除, 但是 :fail_count 無法被刪除, 因為它們仍有與之關聯的資產。',
|
|
],
|
|
|
|
];
|