user.php 620 B

1234567891011
  1. <?php
  2. return [
  3. 'nickname is null' => '请填写昵称',
  4. 'nickname Invalid' => '昵称只能是汉字、字母、数字和下划线_及破折号-',
  5. 'nickname Up to 32 characters' => '昵称最大长度为32个字符',
  6. 'oldpwd is null' => '请填写旧密码',
  7. 'newpwd is null' => '请填写新密码',
  8. 'newpwd length is 6~32 characters' => '新密码长度为6~32位',
  9. 'please fill in again new password' => '请再次填写新密码',
  10. 'two passwords are inconsistent' => '两次输入的密码不一致',
  11. ];