mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08: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
52 lines
1.8 KiB
PHP
52 lines
1.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '授權不存在。',
|
|
'user_does_not_exist' => '使用者不存在',
|
|
'asset_does_not_exist' => '您正在授權的資產不存在。',
|
|
'owner_doesnt_match_asset' => '您正在授權的資產已被其他人佔用,請重新選擇。',
|
|
'assoc_users' => '此授權已分配給某個使用者,目前不能被刪除,請檢查後重試。',
|
|
'select_asset_or_person' => '您必須選擇資產或用戶,但不能同時選擇兩者。',
|
|
'not_found' => 'License not found',
|
|
|
|
'create' => [
|
|
'error' => '新增授權失敗,請重試。',
|
|
'success' => '新增授權成功。',
|
|
],
|
|
|
|
'deletefile' => [
|
|
'error' => '刪除檔案失敗,請重試。',
|
|
'success' => '刪除檔案成功。',
|
|
],
|
|
|
|
'upload' => [
|
|
'error' => '上傳檔案失敗,請重試。',
|
|
'success' => '上傳檔案成功。',
|
|
'nofiles' => '您尚未選擇要上傳的檔案,或上傳的檔案太大。',
|
|
'invalidfiles' => '一個或多個檔案太大,或者是不允許的檔案類型。允許的檔案類型有 png、 gif、 jpg、 jpeg、 doc、 docx、 pdf、 txt、 zip、 rar、 rtf、 xml 和 lic。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '更新授權失敗,請重試。',
|
|
'success' => '更新授權成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '您確定要刪除此授權嗎?',
|
|
'error' => '刪除授權時發生問題,請重試。',
|
|
'success' => '刪除授權成功。',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => '借出授權時發生問題,請重試。',
|
|
'success' => '借出授權成功。',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => '繳回授權時發生問題,請重試。',
|
|
'success' => '繳回授權成功。',
|
|
],
|
|
|
|
];
|