Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

39 lignes
1.9 KiB

il y a 3 ans
  1. <?php
  2. return array(
  3. //'配置项'=>'配置值'
  4. 'LANG_SWITCH_ON' => true, // 开启语言包功能
  5. 'LANG_AUTO_DETECT' => true, // 自动侦测语言 开启多语言功能后有效
  6. 'DEFAULT_LANG' => 'zh-cn', // 默认语言
  7. 'LANG_LIST' => 'zh-cn,en-us', // 允许切换的语言列表 用逗号分隔
  8. 'VAR_LANGUAGE' => 'l', // 默认语言切换变量
  9. //错误信息配置
  10. 'error_codes' => array(
  11. //通用性错误 :'错误代码'=>'英文描述'
  12. 10101 => '未知错误', //未知错误导致请求接口失败(可能是参数缺失等问题)
  13. 10102 => '你尚未登录', //你尚未登录
  14. 10103 => '没有权限', //权限不够
  15. //用户类错误
  16. 10201 => 'Username has exist', //用户名已经存在
  17. 10202 => 'The email has exist', //注册邮箱已经存在
  18. 10204 => 'Username or password is wrong', //用户名或者密码错误
  19. 10205 => 'Wrong mobile format', //错误的手机号码格式
  20. 10206 => 'captcha wrong or expired', //验证码错误或者过期
  21. 10207 => ' There is no such name', //该昵称不存在
  22. 10208 => ' 密码错误',
  23. 10209 => ' 该用户不存在或者尚未注册',
  24. 10210 => ' Username or password is wrong', //用户名或者密码错误,并且输入错误次数过多
  25. //项目类错误
  26. 10301 => '没有项目访问权限',
  27. 10302 => '没有项目管理权限',
  28. 10303 => '不是项目创建者',
  29. 10304 => '个性域名已经存在',
  30. 10305 => '个性域名只能是字母或数字的组合',
  31. 10306 => 'api_key 或 api_token 不匹配',
  32. 10307 => ' password is wrong', //输入项目密码错误
  33. 10308 => ' password is wrong', //输入项目密码错误,并且输入错误次数过多
  34. ),
  35. 'API_LOG' => false , //是否开启API请求日志记录。如果开启,则记录每一个API请求的参数和返回结果,会生成很多日志
  36. );