HintConfig.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. namespace SC.XR.Unity.Module_PlatformAccount
  2. {
  3. /// <summary>
  4. /// 提示配置
  5. /// </summary>
  6. public class HintConfig
  7. {
  8. public static string input_account = "请输入手机或邮箱账号";
  9. public static string input_password = "请输入密码";
  10. public static string error_password = "密码不正确,请重新输入";
  11. public static string error_password_limit = "密码输错5次,请在下方输入校验码";
  12. public static string input_confirm_password = "确认密码未填写";
  13. public static string error_confirm_password = "两次密码不匹配,请重新输入确认密码";
  14. public static string input_check = "请输入校验码";
  15. public static string error_check = "校验码错误,请重新输入";
  16. public static string input_captcha = "请输入验证码";
  17. public static string send_captcha = "发送验证码";
  18. public static string error_captcha = "验证码错误,请重新输入";
  19. public static string input_phone = "请输入手机号";
  20. public static string error_phone = "手机号格式错误";
  21. public static string error_login_code = "验证码错误或已过期";
  22. public static string error_forget_code_leave = "今日验证码发送次数仅剩: ";
  23. public static string error_forget_code_limit = "今日验证码发送次数已用完,无法继续接收";
  24. public static string not_exist_user = "账号不存在";
  25. public static string not_register_account = "该账号尚未注册,请在趣立官网进行注册";
  26. public static string not_register_quli = "该账号尚未注册,请在趣立官网进行注册";
  27. public static string not_register_phone = "该账号尚未注册,请在趣立官网注册";
  28. public static string error_forget_code = "请输入正确的验证码";
  29. public static string error_account_format = "账号名格式错误";
  30. public static string error_password_format = "密码格式错误";
  31. public static string error_confirm_password_format = "确认密码格式错误";
  32. public static string error_code_forms =
  33. "收不到短信/邮箱验证码的场景一般有:\n" +
  34. "1.登录/注册时手机或邮箱收不到验证码\n" +
  35. "2.绑定安全信息时,收不到验证码\n" +
  36. "3.进行二次验证时,给安全手机/邮箱发送验证码\n" +
  37. "手机收不到验证码,可能是以下原因导致:\n" +
  38. "1.安全手机不再使用,需要更换安全手机\n" +
  39. "A.若安全手机不再使用,请使用密码登录后,在帐号中心更换安全手机;\n" +
  40. "B.若忘记密码,请 重置密码 后使用密码登录 ,或 申诉更换安全手机 后使用短信登录。\n" +
  41. "2.短信收件箱过满或手机内存不够,清空后需重启\n" +
  42. "3.所处地区信号不好或接收短信的时间点关机状态\n" +
  43. "4.双卡双待手机,AB卡槽是否正确安放(可尝试更换AB卡位置重试)\n" +
  44. "5.长时间未关机,可尝试关机重启后重新发送短信验证码\n" +
  45. "6.手机欠费\n" +
  46. "7.退订、投诉过营销或者行业短信,被通道商拉入黑名单导致无法发送。请联系客服解除退订。\n" +
  47. "8.短信发送超过当天限制\n" +
  48. "为避免短信轰炸,以及资源浪费,每个手机号码24小时上限可发送10条短信。\n" +
  49. "解决方案: 24小时候再次尝试短信登录。\n" +
  50. "邮箱收不到验证码邮件,可能是以下原因导致:\n" +
  51. "1.验证码邮件被误判为垃圾邮件\n" +
  52. "解决方法:进入垃圾箱,查找是否有“趣立用户中心”发送的验证码邮件。\n" +
  53. "2.“趣立用户中心”的邮件地址,被列入了黑名单\n" +
  54. "解决方法:将“移动帐号”的邮件地址xraccount-service @movisionxr.com从黑名单移除,并加入白名单。\n" +
  55. "3.“趣立用户中心”的邮件地址,被自建的邮件服务器拦截\n" +
  56. "解决方法:联系邮箱管理员,将“趣立用户中心”的邮件地址xraccount-service @movisionxr.com加入白名单。";
  57. }
  58. }