en.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. return array
  3. (
  4. # 核心相关
  5. # 数据不存在
  6. 'core_database_exists' => 'database {0} does not exist',
  7. # 请求不匹配
  8. 'core_database_request' => 'The parameter {0} is empty or does not match the rule:{1}',
  9. # 长度超过最大值
  10. 'core_database_maxlen' => '[{0}] cannot be longer than {1} characters',
  11. # dom不存在
  12. 'dom_exists' => 'DOM "{0}" does not exist',
  13. # 文件不存在
  14. 'file_exists' => 'File "{0}" does not exist ',
  15. # 类不存在
  16. 'class_exists' => 'Object "{0}" does not exist',
  17. # 目录不存在
  18. 'path_exists' => '目录"{0}"不存在',
  19. # 目录不存在
  20. 'path_exists_array' => 'Directory "{0}" does not exist',
  21. # 类中的方法不存在
  22. 'method_exists' => 'Method {1} in {0} does not exist',
  23. # api配置不存在
  24. 'api_exists' => 'API "{0}" does not exist',
  25. # api配置不存在
  26. 'api_key_exists' => 'Configuration {0} in API does not exist',
  27. # api参数不存在
  28. 'api_param_exists' => 'Parameter {0} does not exist',
  29. # api参数signature校验错误
  30. 'api_signature_exists' => 'Signature verification error',
  31. # api参数signature校验错误
  32. 'api_signature_repeat' => 'Please do not submit repeatedly',
  33. # 错误的页面
  34. 'error_page' => 'Unable to open page',
  35. # xss请求
  36. 'request_tainting' => 'request_tainting',
  37. # 项目不存在
  38. 'project_exists' => 'Project "{0}" does not exist',
  39. # 项目已存在
  40. 'project_already_exists' => 'Project "{0}" already exists',
  41. # 数据库配置不存在
  42. 'database_config_exists' => 'Database configuration "{0}" does not exist',
  43. );