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

30 lines
829 B
PHP

<?php
return array(
'does_not_exist' => '制造商不存在',
'assoc_users' => '这个制造商下关联的还有其他资产,请确认后再重试。',
'create' => array(
'error' => '制造商创建失败,请重试。',
'success' => '制造商创建成功。'
),
'update' => array(
'error' => '制造商没有被更新,请重试。',
'success' => '制造商更新成功。'
),
'restore' => array(
'error' => '制造商未恢复,请重试',
'success' => '制造商恢复成功。'
),
'delete' => array(
'confirm' => '确定要删除这个制造商吗?',
'error' => '删除制造商的过程中出现了一点儿问题,请重试。',
'success' => '制造商已经成功被删除。'
)
);