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

28 lines
1,002 B
PHP

<?php
return array(
'does_not_exist' => '位置不存在',
'assoc_users' => '该位置下管理的还有其他用户,目前不能删除,请更新该用户的信息之后,再尝试删除。',
'assoc_assets' => '删除失败,该位置已与其它资产关联。请先更新资产以取消关联,然后重试。 ',
'assoc_child_loc' => '删除失败,该位置是一个或多个子位置的上层节点。请更新地理位置信息以取消关联,然后重试。 ',
'create' => array(
'error' => '位置没有被创建,请重试。',
'success' => '位置创建成功。'
),
'update' => array(
'error' => '位置没有被更新,请重试。',
'success' => '位置更新成功。'
),
'delete' => array(
'confirm' => '确定删除这个位置吗?',
'error' => '删除位置的过成中出现了一点儿问题,请重试。',
'success' => '位置已经成功删除。'
)
);