en.php 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. return array
  3. (
  4. 'error page' => 'Unable to open page',
  5. 'request tainting' => 'request_tainting',
  6. 'project not exists' => 'Project "{0}" does not exist',
  7. 'app not exists' => 'DeverApp {0} does not exist',
  8. 'route not exists' => 'Route does not exist',
  9. 'dom not exists' => 'DOM "{0}" does not exist',
  10. 'file not exists' => 'File "{0}" does not exist',
  11. 'class not exists' => 'Object "{0}" does not exist',
  12. 'path not exists' => 'Path "{0}" does not exist',
  13. 'method not exists' => 'Method {1} in {0} does not exist',
  14. # api
  15. 'api not exists' => 'API "{0}" does not exist',
  16. 'api key not exists' => 'Configuration {0} in API does not exist',
  17. 'api param not exists' => 'Parameter does not exist',
  18. 'api signature not exists' => 'Signature verification error',
  19. 'api signature not repeat' => 'Please do not submit repeatedly',
  20. # 数据库
  21. 'database not exists' => 'Database {0} does not exist',
  22. 'database config not exists' => 'Database configuration "{0}" does not exist',
  23. 'database error' => 'The parameter {0} is empty or does not match the rule:{1}',
  24. 'database maxlen' => '[{0}] cannot be longer than {1} characters',
  25. );