12345678910111213141516171819202122232425262728 |
- <?php
- return array
- (
- 'error page' => '无法打开页面',
- 'request tainting' => 'request_tainting',
- 'project not exists' => '项目"{0}"不存在',
- 'app not exists' => '应用"{0}"不存在',
- 'route not exists' => '路由"{0}"不存在',
- 'dom not exists' => 'dom"{0}"不存在',
- 'file not exists' => '文件"{0}"不存在',
- 'class not exists' => '对象"{0}"不存在',
- 'path not exists' => '目录"{0}"不存在',
- 'method not exists' => '{0}中的方法{1}不存在',
- # api
- 'api not exists' => 'api"{0}"不存在',
- 'api key not exists' => 'api中的配置{0}不存在',
- 'api param not exists' => 'api参数不存在',
- 'api signature not exists' => 'signature校验错误',
- 'api signature not repeat' => '请不要重复提交',
- # 数据库
- 'database not exists' => '数据库{0}不存在',
- 'database config not exists' => '数据库配置{0}不存在',
- 'database error' => '参数{0}为空,或者不匹配该规则:{1}',
- 'database maxlen' => '[{0}]的长度不能超过{1}位字符',
- );
|