mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-28 06:59:41 -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
27 lines
967 B
PHP
27 lines
967 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '供應商不存在',
|
|
|
|
'create' => [
|
|
'error' => '新增供應商失敗,請重試',
|
|
'success' => '新增供應商成功。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '更新供應商失敗,請重試',
|
|
'success' => '更新供應商成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '您確定要刪除此供應商嗎?',
|
|
'error' => '刪除供應商失敗,請重試',
|
|
'success' => '刪除供應商成功。',
|
|
'assoc_assets' => '至少還有 :asset_count 個樣板與此供應商關聯,目前不能被刪除,請檢查後重試。 ',
|
|
'assoc_licenses' => '至少還有 :licenses_count 個授權與此供應商關聯,目前不能被刪除,請檢查後重試。 ',
|
|
'assoc_maintenances' => '至少還有 :asset_maintenances_count 個資產維護與此供應商關聯,目前不能被刪除,請檢查後重試。 ',
|
|
],
|
|
|
|
];
|