mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-17 19:14:06 -08:00
0bb8cc63c5
Signed-off-by: snipe <snipe@snipe.net>
31 lines
994 B
PHP
31 lines
994 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'support_url_help' => '在您的 URL 中使用 <code>{LOCALE}</code> 和 <code>{SERIAL}</code> 作为变量,以便在查看资产时自动填充这些值。',
|
|
'does_not_exist' => '制造商不存在',
|
|
'assoc_users' => '这个制造商下关联的还有其他资产,请确认后再重试。',
|
|
|
|
'create' => array(
|
|
'error' => '制造商创建失败,请重试。',
|
|
'success' => '制造商创建成功。'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '制造商没有被更新,请重试。',
|
|
'success' => '制造商更新成功。'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => '制造商未恢复,请重试',
|
|
'success' => '制造商恢复成功。'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '确定要删除这个制造商吗?',
|
|
'error' => '删除制造商的过程中出现了一点儿问题,请重试。',
|
|
'success' => '制造商已经成功被删除。'
|
|
)
|
|
|
|
);
|