snipe-it/resources/lang/zh-CN/admin/custom_fields/general.php
snipe ddfa5776c5 Updated language strings
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();`

I'll try to fix it. :(

FML

Signed-off-by: snipe <snipe@snipe.net>
2022-01-13 21:27:29 -08:00

46 lines
2.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'custom_fields' => '自定义字段',
'manage' => 'Manage',
'field' => '字段',
'about_fieldsets_title' => '关于字段集',
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex 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:" 开头。例如, 要验证自定义字段值是否包含有效的 IMEI (15位数字), 则应使用 <code> regex:/^[0-9]{15} $/</code>。',
'required' => '必填',
'req' => '必填',
'used_by_models' => '引用模板',
'order' => '排序',
'create_fieldset' => '新增字段集',
'create_fieldset_title' => 'Create a new fieldset',
'create_field' => '新增字段',
'create_field_title' => 'Create a new custom field',
'value_encrypted' => '此字段的值已被加密。只有管理员用户能够查看已解密的值',
'show_in_email' => '是否在发送给用户的Email中包含此字段的值邮件中不能包含加密的值。',
'help_text' => 'Help Text',
'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
'about_custom_fields_title' => 'About Custom Fields',
'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
'add_field_to_fieldset' => 'Add Field to Fieldset',
'make_optional' => 'Required - click to make optional',
'make_required' => 'Optional - click to make required',
'reorder' => 'Reorder',
'db_field' => 'DB Field',
'db_convert_warning' => 'WARNING. This field is in the custom fields table as <code> :db_column </code> but should be :expected </code>.'
];