mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -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
33 lines
1.8 KiB
PHP
33 lines
1.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
'custom_fields' => '自訂欄位',
|
|
'field' => '欄位',
|
|
'about_fieldsets_title' => '關於欄位集',
|
|
'about_fieldsets_text' => '欄位集允許您為常用的資產模型定義一組可重複使用的欄位。',
|
|
'custom_format' => '自訂格式',
|
|
'encrypt_field' => '加密資料庫中此欄位的值',
|
|
'encrypt_field_help' => '警告:對欄位加密將導致此欄無法用於搜索',
|
|
'encrypted' => '已加密',
|
|
'fieldset' => '欄位集',
|
|
'qty_fields' => '欄位數',
|
|
'fieldsets' => '欄位集',
|
|
'fieldset_name' => '名稱',
|
|
'field_name' => '名稱',
|
|
'field_values' => '欄位值',
|
|
'field_values_help' => '添加可選的選項,每行一個。第一行之外的空行將被忽略。',
|
|
'field_element' => '表單元素',
|
|
'field_element_short' => '表單元素',
|
|
'field_format' => '格式',
|
|
'field_custom_format' => '自訂格式',
|
|
'field_custom_format_help' => '此欄位允許您使用 RegEx 運算式進行驗證。它應該以 "RegEx:" 開頭, 例如, 要驗證自訂欄位值是否包含有效的 IMEI (15 位數字), 則應使用 <code>regex:/^[0-9]{15}$/</code>。',
|
|
'required' => '必填',
|
|
'req' => '必填',
|
|
'used_by_models' => '引用型號',
|
|
'order' => '排序',
|
|
'create_fieldset' => '新增欄位集',
|
|
'create_field' => '新增欄位',
|
|
'value_encrypted' => '此欄位的值已被加密。只有管理員能夠查看原始資料。',
|
|
'show_in_email' => '在發送給用戶的借出通知信中包含此欄位的值?加密的欄位不能包含在電子郵件中。',
|
|
];
|