mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -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
23 lines
892 B
PHP
23 lines
892 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'asset' => '资产',
|
|
'checkin' => '借入',
|
|
'create' => '创建许可证',
|
|
'expiration' => '到期日期',
|
|
'license_key' => '产品序列号',
|
|
'maintained' => '保持',
|
|
'name' => '软件名称',
|
|
'no_depreciation' => '永久',
|
|
'purchase_order' => '采购订单号码',
|
|
'reassignable' => '可重新授权',
|
|
'remaining_seats' => '剩余次数',
|
|
'seats' => '允许使用次数',
|
|
'termination_date' => '终止日期',
|
|
'to_email' => '许可电子邮件',
|
|
'to_name' => '许可人名字',
|
|
'update' => '更新许可证',
|
|
'checkout_help' => '请检查这个许可证是不是已经分配给了某个人或某个设备。你可以选择全部,但是资产归属人必须是相同的。',
|
|
];
|