123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- return array
- (
- # 核心相关
- # 数据不存在
- 'core_database_exists' => 'database {0} does not exist',
- # 请求不匹配
- 'core_database_request' => 'The parameter {0} is empty or does not match the rule:{1}',
- # 长度超过最大值
- 'core_database_maxlen' => '[{0}] cannot be longer than {1} characters',
- # dom不存在
- 'dom_exists' => 'DOM "{0}" does not exist',
- # 文件不存在
- 'file_exists' => 'File "{0}" does not exist ',
- # 类不存在
- 'class_exists' => 'Object "{0}" does not exist',
- # 目录不存在
- 'path_exists' => '目录"{0}"不存在',
- # 目录不存在
- 'path_exists_array' => 'Directory "{0}" does not exist',
- # 类中的方法不存在
- 'method_exists' => 'Method {1} in {0} does not exist',
- # api配置不存在
- 'api_exists' => 'API "{0}" does not exist',
- # api配置不存在
- 'api_key_exists' => 'Configuration {0} in API does not exist',
- # api参数不存在
- 'api_param_exists' => 'Parameter {0} does not exist',
- # api参数signature校验错误
- 'api_signature_exists' => 'Signature verification error',
- # api参数signature校验错误
- 'api_signature_repeat' => 'Please do not submit repeatedly',
- # 错误的页面
- 'error_page' => 'Unable to open page',
- # xss请求
- 'request_tainting' => 'request_tainting',
- # 项目不存在
- 'project_exists' => 'Project "{0}" does not exist',
- # 项目已存在
- 'project_already_exists' => 'Project "{0}" already exists',
-
- # 数据库配置不存在
- 'database_config_exists' => 'Database configuration "{0}" does not exist',
- );
|