snipe-it/resources/lang/zh-CN/admin/custom_fields/message.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

58 lines
1.4 KiB
PHP

<?php
return array(
'field' => array(
'invalid' => '字段不存在',
'already_added' => '已经新增字段',
'create' => array(
'error' => '新增字段失败,请重试',
'success' => '新增字段成功。',
'assoc_success' => '增加字段到字段集成功'
),
'update' => array(
'error' => '更新字段失败,请重试。',
'success' => '更新字段成功'
),
'delete' => array(
'confirm' => '你确定要删除这个字段?',
'error' => '删除字段失败,请重试。',
'success' => '删除字段成功',
'in_use' => '字段还在使用中',
)
),
'fieldset' => array(
'does_not_exist' => '现场集不存在',
'create' => array(
'error' => '新增字段集失败,请重试',
'success' => '新增字段集成功'
),
'update' => array(
'error' => '更新字段集失败,请重试。',
'success' => '更新字段集成功'
),
'delete' => array(
'confirm' => '确定要删除这个字段集吗?',
'error' => '删除字段集失败,请重试。',
'success' => '删除字段集成功',
'in_use' => '字段集还在使用中',
)
),
);