feat:verify your account page ui done
This commit is contained in:
@@ -279,6 +279,114 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Profile'**
|
||||
String get profile;
|
||||
|
||||
/// No description provided for @forgotPassword.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Forgot Password'**
|
||||
String get forgotPassword;
|
||||
|
||||
/// No description provided for @forgotPasswordSubtitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Please enter your phone number to reset your password.'**
|
||||
String get forgotPasswordSubtitle;
|
||||
|
||||
/// No description provided for @phoneNumber.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Phone Number'**
|
||||
String get phoneNumber;
|
||||
|
||||
/// No description provided for @sendCode.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Send Code'**
|
||||
String get sendCode;
|
||||
|
||||
/// No description provided for @verifyYourAccount.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Verify Your Account'**
|
||||
String get verifyYourAccount;
|
||||
|
||||
/// No description provided for @verifyAccountSubtitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'We’ve sent a verification code to'**
|
||||
String get verifyAccountSubtitle;
|
||||
|
||||
/// No description provided for @verifyAccount.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Verify Account'**
|
||||
String get verifyAccount;
|
||||
|
||||
/// No description provided for @didNotReceiveCode.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Didn’t receive the code?'**
|
||||
String get didNotReceiveCode;
|
||||
|
||||
/// No description provided for @resend.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Resend'**
|
||||
String get resend;
|
||||
|
||||
/// No description provided for @createNewPassword.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Create New Password'**
|
||||
String get createNewPassword;
|
||||
|
||||
/// No description provided for @createNewPasswordSubtitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Please create your new password.'**
|
||||
String get createNewPasswordSubtitle;
|
||||
|
||||
/// No description provided for @oldPassword.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Old Password'**
|
||||
String get oldPassword;
|
||||
|
||||
/// No description provided for @newPassword.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'New Password'**
|
||||
String get newPassword;
|
||||
|
||||
/// No description provided for @confirmNewPassword.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Confirm New Password'**
|
||||
String get confirmNewPassword;
|
||||
|
||||
/// No description provided for @passwordHint.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'*Password must have at least 8 characters, including number and symbol.'**
|
||||
String get passwordHint;
|
||||
|
||||
/// No description provided for @resetPassword.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Reset Password'**
|
||||
String get resetPassword;
|
||||
|
||||
/// No description provided for @changePasswordSuccess.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Change Password Success'**
|
||||
String get changePasswordSuccess;
|
||||
|
||||
/// No description provided for @changePasswordMessage.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'We have updated your password. Please remember your password, thank you!'**
|
||||
String get changePasswordMessage;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
@@ -105,4 +105,61 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get profile => 'Profile';
|
||||
|
||||
@override
|
||||
String get forgotPassword => 'Forgot Password';
|
||||
|
||||
@override
|
||||
String get forgotPasswordSubtitle =>
|
||||
'Please enter your phone number to reset your password.';
|
||||
|
||||
@override
|
||||
String get phoneNumber => 'Phone Number';
|
||||
|
||||
@override
|
||||
String get sendCode => 'Send Code';
|
||||
|
||||
@override
|
||||
String get verifyYourAccount => 'Verify Your Account';
|
||||
|
||||
@override
|
||||
String get verifyAccountSubtitle => 'We’ve sent a verification code to';
|
||||
|
||||
@override
|
||||
String get verifyAccount => 'Verify Account';
|
||||
|
||||
@override
|
||||
String get didNotReceiveCode => 'Didn’t receive the code?';
|
||||
|
||||
@override
|
||||
String get resend => 'Resend';
|
||||
|
||||
@override
|
||||
String get createNewPassword => 'Create New Password';
|
||||
|
||||
@override
|
||||
String get createNewPasswordSubtitle => 'Please create your new password.';
|
||||
|
||||
@override
|
||||
String get oldPassword => 'Old Password';
|
||||
|
||||
@override
|
||||
String get newPassword => 'New Password';
|
||||
|
||||
@override
|
||||
String get confirmNewPassword => 'Confirm New Password';
|
||||
|
||||
@override
|
||||
String get passwordHint =>
|
||||
'*Password must have at least 8 characters, including number and symbol.';
|
||||
|
||||
@override
|
||||
String get resetPassword => 'Reset Password';
|
||||
|
||||
@override
|
||||
String get changePasswordSuccess => 'Change Password Success';
|
||||
|
||||
@override
|
||||
String get changePasswordMessage =>
|
||||
'We have updated your password. Please remember your password, thank you!';
|
||||
}
|
||||
|
||||
@@ -103,4 +103,61 @@ class AppLocalizationsRu extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get profile => 'Профиль';
|
||||
|
||||
@override
|
||||
String get forgotPassword => 'Забыли пароль';
|
||||
|
||||
@override
|
||||
String get forgotPasswordSubtitle =>
|
||||
'Пожалуйста, введите свой номер телефона, чтобы сбросить пароль.';
|
||||
|
||||
@override
|
||||
String get phoneNumber => 'Номер телефона';
|
||||
|
||||
@override
|
||||
String get sendCode => 'Отправить код';
|
||||
|
||||
@override
|
||||
String get verifyYourAccount => 'Подтвердите аккаунт';
|
||||
|
||||
@override
|
||||
String get verifyAccountSubtitle => 'Мы отправили код подтверждения на';
|
||||
|
||||
@override
|
||||
String get verifyAccount => 'Подтвердить';
|
||||
|
||||
@override
|
||||
String get didNotReceiveCode => 'Не получили код?';
|
||||
|
||||
@override
|
||||
String get resend => 'Отправить повторно';
|
||||
|
||||
@override
|
||||
String get createNewPassword => 'Создайте новый пароль';
|
||||
|
||||
@override
|
||||
String get createNewPasswordSubtitle => 'Пожалуйста, создайте новый пароль.';
|
||||
|
||||
@override
|
||||
String get oldPassword => 'Старый пароль';
|
||||
|
||||
@override
|
||||
String get newPassword => 'Новый пароль';
|
||||
|
||||
@override
|
||||
String get confirmNewPassword => 'Подтвердите пароль';
|
||||
|
||||
@override
|
||||
String get passwordHint =>
|
||||
'*Пароль должен содержать не менее 8 символов, включая цифры и символы.';
|
||||
|
||||
@override
|
||||
String get resetPassword => 'Сбросить пароль';
|
||||
|
||||
@override
|
||||
String get changePasswordSuccess => 'Пароль успешно изменён';
|
||||
|
||||
@override
|
||||
String get changePasswordMessage =>
|
||||
'Ваш пароль был обновлён. Пожалуйста, запомните его. Спасибо!';
|
||||
}
|
||||
|
||||
@@ -103,4 +103,63 @@ class AppLocalizationsUz extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get profile => 'Profil';
|
||||
|
||||
@override
|
||||
String get forgotPassword => 'Parolni unutdingizmi';
|
||||
|
||||
@override
|
||||
String get forgotPasswordSubtitle =>
|
||||
'Parolingizni tiklash uchun telefon raqamingizni kiriting.';
|
||||
|
||||
@override
|
||||
String get phoneNumber => 'Telefon raqami';
|
||||
|
||||
@override
|
||||
String get sendCode => 'Kod yuborish';
|
||||
|
||||
@override
|
||||
String get verifyYourAccount => 'Hisobni tasdiqlang';
|
||||
|
||||
@override
|
||||
String get verifyAccountSubtitle =>
|
||||
'Tasdiqlash kodi quyidagi raqamga yuborildi';
|
||||
|
||||
@override
|
||||
String get verifyAccount => 'Hisobni tasdiqlash';
|
||||
|
||||
@override
|
||||
String get didNotReceiveCode => 'Kod kelmadimi?';
|
||||
|
||||
@override
|
||||
String get resend => 'Qayta yuborish';
|
||||
|
||||
@override
|
||||
String get createNewPassword => 'Yangi parol yarating';
|
||||
|
||||
@override
|
||||
String get createNewPasswordSubtitle =>
|
||||
'Iltimos, yangi parolingizni yarating.';
|
||||
|
||||
@override
|
||||
String get oldPassword => 'Eski parol';
|
||||
|
||||
@override
|
||||
String get newPassword => 'Yangi parol';
|
||||
|
||||
@override
|
||||
String get confirmNewPassword => 'Parolni tasdiqlang';
|
||||
|
||||
@override
|
||||
String get passwordHint =>
|
||||
'*Parol kamida 8 ta belgi, raqam va belgidan iborat bo‘lishi kerak.';
|
||||
|
||||
@override
|
||||
String get resetPassword => 'Parolni tiklash';
|
||||
|
||||
@override
|
||||
String get changePasswordSuccess => 'Parol muvaffaqiyatli o‘zgartirildi';
|
||||
|
||||
@override
|
||||
String get changePasswordMessage =>
|
||||
'Parolingiz yangilandi. Iltimos, uni eslab qoling. Rahmat!';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user