新增去绑定中英文
This commit is contained in:
parent
93199704bf
commit
4f598ac5a3
@ -255,6 +255,7 @@
|
||||
"pleaseEnterNewAccountNumber":"Please enter your new account number",
|
||||
"changeIphoneTip":"When you retrieve your password and log in to a new device, you can verify it with the attached phone",
|
||||
"changeEmailTip":"When you retrieve your password and log in to a new device, you can verify it with the attached Email",
|
||||
"goBind":"Go Bind",
|
||||
"originalPassword":"Original Password",
|
||||
"newPassword":"New Password",
|
||||
"surePassword":"Sure Password",
|
||||
|
||||
@ -252,6 +252,7 @@
|
||||
"pleaseEnterNewAccountNumber":"pleaseEnterNewAccountNumber",
|
||||
"changeIphoneTip":"changeIphoneTip",
|
||||
"changeEmailTip":"changeEmailTip",
|
||||
"goBind":"goBind",
|
||||
"originalPassword":"originalPassword",
|
||||
"newPassword":"newPassword",
|
||||
"surePassword":"surePassword",
|
||||
|
||||
@ -252,6 +252,7 @@
|
||||
"pleaseEnterNewAccountNumber":"请输入新账号",
|
||||
"changeIphoneTip":"找回密码和登录新设备时,可通过绑定的手机验证",
|
||||
"changeEmailTip":"找回密码和登录新设备时,可通过绑定的邮箱验证",
|
||||
"goBind":"去绑定",
|
||||
"originalPassword":"原密码",
|
||||
"newPassword":"新密码",
|
||||
"surePassword":"确认密码",
|
||||
|
||||
@ -70,7 +70,9 @@ class _MinePersonInfoPageState extends State<MinePersonInfoPage> {
|
||||
})),
|
||||
Obx(() => CommonItem(
|
||||
leftTitel: TranslationLoader.lanKeys!.mobileNumber!.tr,
|
||||
rightTitle: state.mobileStr.value,
|
||||
rightTitle: state.mobileStr.value.isNotEmpty
|
||||
? state.mobileStr.value
|
||||
: TranslationLoader.lanKeys!.goBind!.tr,
|
||||
isHaveLine: true,
|
||||
isHaveDirection: true,
|
||||
action: () {
|
||||
@ -93,7 +95,9 @@ class _MinePersonInfoPageState extends State<MinePersonInfoPage> {
|
||||
})),
|
||||
Obx(() => CommonItem(
|
||||
leftTitel: TranslationLoader.lanKeys!.email!.tr,
|
||||
rightTitle: state.emailStr.value,
|
||||
rightTitle: state.emailStr.value.isNotEmpty
|
||||
? state.emailStr.value
|
||||
: TranslationLoader.lanKeys!.goBind!.tr,
|
||||
isHaveLine: true,
|
||||
isHaveDirection: true,
|
||||
action: () {
|
||||
|
||||
@ -247,6 +247,7 @@ class LanKeyEntity {
|
||||
this.pleaseEnterNewAccountNumber,
|
||||
this.changeIphoneTip,
|
||||
this.changeEmailTip,
|
||||
this.goBind,
|
||||
this.originalPassword,
|
||||
this.newPassword,
|
||||
this.surePassword,
|
||||
@ -664,6 +665,7 @@ class LanKeyEntity {
|
||||
pleaseEnterNewAccountNumber = json['pleaseEnterNewAccountNumber'];
|
||||
changeIphoneTip = json['changeIphoneTip'];
|
||||
changeEmailTip = json['changeEmailTip'];
|
||||
goBind = json['goBind'];
|
||||
originalPassword = json['originalPassword'];
|
||||
newPassword = json['newPassword'];
|
||||
surePassword = json['surePassword'];
|
||||
@ -1093,6 +1095,7 @@ class LanKeyEntity {
|
||||
String? pleaseEnterNewAccountNumber;
|
||||
String? changeIphoneTip;
|
||||
String? changeEmailTip;
|
||||
String? goBind;
|
||||
String? originalPassword;
|
||||
String? newPassword;
|
||||
String? surePassword;
|
||||
@ -1521,6 +1524,7 @@ class LanKeyEntity {
|
||||
map['pleaseEnterNewAccountNumber'] = pleaseEnterNewAccountNumber;
|
||||
map['changeIphoneTip'] = changeIphoneTip;
|
||||
map['changeEmailTip'] = changeEmailTip;
|
||||
map['goBind'] = goBind;
|
||||
map['originalPassword'] = originalPassword;
|
||||
map['newPassword'] = newPassword;
|
||||
map['surePassword'] = surePassword;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user