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
52 lines
1.9 KiB
PHP
52 lines
1.9 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' => '找不到许可证',
|
||
|
||
'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' => '许可证已经成功借入。',
|
||
],
|
||
|
||
];
|