31 lines
853 B
PHP
Executable File
31 lines
853 B
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '模板不存在',
|
|
'assoc_users' => '本模板下目前还有相关的资产,不能被删除,请删除资产以后,再重试。',
|
|
|
|
|
|
'create' => array(
|
|
'error' => '模板没有被创建,请重试。',
|
|
'success' => '模板创建成功。'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '模板没有被更新,请重试。',
|
|
'success' => '模板更新成功。'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '你确定删除这个模板吗?',
|
|
'error' => '删除模板的过程中出现了一点儿问题,请重试。',
|
|
'success' => '模板已经成功被删除'
|
|
),
|
|
|
|
'restore' => array(
|
|
'error' => 'Model was not restored, please try again',
|
|
'success' => 'Model restored successfully.'
|
|
),
|
|
|
|
);
|