zhcn.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. return array
  3. (
  4. # 核心相关
  5. # 数据不存在
  6. 'core_database_exists' => '数据库{0}不存在',
  7. # 请求不匹配
  8. 'core_database_request' => '参数{0}为空,或者不匹配该规则:{1}',
  9. # 长度超过最大值
  10. 'core_database_maxlen' => '[{0}]的长度不能超过{1}位字符',
  11. # dom不存在
  12. 'dom_exists' => 'dom"{0}"不存在',
  13. # 文件不存在
  14. 'file_exists' => '文件"{0}"不存在',
  15. # 类不存在
  16. 'class_exists' => '对象"{0}"不存在',
  17. # 目录不存在
  18. 'path_exists' => '目录"{0}"不存在',
  19. # 目录不存在
  20. 'path_exists_array' => '目录"{0}"不存在',
  21. # 类中的方法不存在
  22. 'method_exists' => '{0}中的方法{1}不存在',
  23. # api配置不存在
  24. 'api_exists' => 'api"{0}"不存在',
  25. # api配置不存在
  26. 'api_key_exists' => 'api中的配置{0}不存在',
  27. # api参数不存在
  28. 'api_param_exists' => '参数{0}不存在',
  29. # api参数signature校验错误
  30. 'api_signature_exists' => 'signature校验错误',
  31. # api参数signature校验错误
  32. 'api_signature_repeat' => '请不要重复提交',
  33. # 错误的页面
  34. 'error_page' => '无法打开页面',
  35. # xss请求
  36. 'request_tainting' => 'request_tainting',
  37. # 项目不存在
  38. 'project_exists' => '项目"{0}"不存在',
  39. # 项目已存在
  40. 'project_already_exists' => '项目"{0}"已存在',
  41. # 数据库配置不存在
  42. 'database_config_exists' => '数据库配置"{0}"不存在',
  43. );