fix: 補充翻譯(註冊Error)

This commit is contained in:
JingChiang
2024-11-10 14:50:34 +08:00
parent 4c8d789a86
commit f4d0243de0
6 changed files with 178 additions and 12 deletions

View File

@@ -110,6 +110,106 @@ class S {
);
}
/// `Please enter your email`
String get register_error_email_empty {
return Intl.message(
'Please enter your email',
name: 'register_error_email_empty',
desc: '',
args: [],
);
}
/// `Please enter a valid email`
String get register_error_email_invalid {
return Intl.message(
'Please enter a valid email',
name: 'register_error_email_invalid',
desc: '',
args: [],
);
}
/// `Please enter your username`
String get register_error_username_empty {
return Intl.message(
'Please enter your username',
name: 'register_error_username_empty',
desc: '',
args: [],
);
}
/// `Please enter your password`
String get register_error_password_empty {
return Intl.message(
'Please enter your password',
name: 'register_error_password_empty',
desc: '',
args: [],
);
}
/// `Please send the verification code first`
String get register_error_verificationCode_not_send {
return Intl.message(
'Please send the verification code first',
name: 'register_error_verificationCode_not_send',
desc: '',
args: [],
);
}
/// `Verification code does not match`
String get register_error_verificationCode_not_match {
return Intl.message(
'Verification code does not match',
name: 'register_error_verificationCode_not_match',
desc: '',
args: [],
);
}
/// `Username or email already exists, please try again`
String get register_error_usernameOrEmail_exist {
return Intl.message(
'Username or email already exists, please try again',
name: 'register_error_usernameOrEmail_exist',
desc: '',
args: [],
);
}
/// `Register Failed: Server error, please try again later`
String get register_error_server_error {
return Intl.message(
'Register Failed: Server error, please try again later',
name: 'register_error_server_error',
desc: '',
args: [],
);
}
/// `Register Success`
String get register_success {
return Intl.message(
'Register Success',
name: 'register_success',
desc: '',
args: [],
);
}
/// `Return to Login Page`
String get register_turn_back {
return Intl.message(
'Return to Login Page',
name: 'register_turn_back',
desc: '',
args: [],
);
}
/// `Live View`
String get realtime_video {
return Intl.message(