1234567891011121314151617181920212223242526272829 |
- <?php
- return array
- (
- 'error page' => 'Unable to open page',
- 'request tainting' => 'request_tainting',
- 'project not exists' => 'Project "{0}" does not exist',
- 'app not exists' => 'DeverApp {0} does not exist',
- 'route not exists' => 'Route does not exist',
- 'dom not exists' => 'DOM "{0}" does not exist',
- 'file not exists' => 'File "{0}" does not exist',
- 'class not exists' => 'Object "{0}" does not exist',
- 'path not exists' => 'Path "{0}" does not exist',
- 'method not exists' => 'Method {1} in {0} does not exist',
- # api
- 'api not exists' => 'API "{0}" does not exist',
- 'api key not exists' => 'Configuration {0} in API does not exist',
- 'api param not exists' => 'Parameter does not exist',
- 'api signature not exists' => 'Signature verification error',
- 'api signature not repeat' => 'Please do not submit repeatedly',
- # 数据库
- 'database not exists' => 'Database {0} does not exist',
- 'database config not exists' => 'Database configuration "{0}" does not exist',
- 'database error' => 'The parameter {0} is empty or does not match the rule:{1}',
- 'database maxlen' => '[{0}] cannot be longer than {1} characters',
- );
|