feat(auth): implement phone registration flow with preset avatars
This commit is contained in:
+4
-1
@@ -168,5 +168,8 @@
|
||||
"editProfileSave": "Save",
|
||||
"editProfileFirstName": "First name",
|
||||
"editProfileLastName": "Last name",
|
||||
"editProfileRemovePhoto": "Remove photo"
|
||||
"editProfileRemovePhoto": "Remove photo",
|
||||
"registrationTitle": "Create your profile",
|
||||
"registrationSubtitle": "Add your name and pick an avatar",
|
||||
"registrationChooseAvatar": "Choose an avatar"
|
||||
}
|
||||
|
||||
@@ -1009,6 +1009,24 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Remove photo'**
|
||||
String get editProfileRemovePhoto;
|
||||
|
||||
/// No description provided for @registrationTitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Create your profile'**
|
||||
String get registrationTitle;
|
||||
|
||||
/// No description provided for @registrationSubtitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Add your name and pick an avatar'**
|
||||
String get registrationSubtitle;
|
||||
|
||||
/// No description provided for @registrationChooseAvatar.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Choose an avatar'**
|
||||
String get registrationChooseAvatar;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
@@ -478,4 +478,13 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get editProfileRemovePhoto => 'Remove photo';
|
||||
|
||||
@override
|
||||
String get registrationTitle => 'Create your profile';
|
||||
|
||||
@override
|
||||
String get registrationSubtitle => 'Add your name and pick an avatar';
|
||||
|
||||
@override
|
||||
String get registrationChooseAvatar => 'Choose an avatar';
|
||||
}
|
||||
|
||||
@@ -480,4 +480,13 @@ class AppLocalizationsRu extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get editProfileRemovePhoto => 'Удалить фото';
|
||||
|
||||
@override
|
||||
String get registrationTitle => 'Создание профиля';
|
||||
|
||||
@override
|
||||
String get registrationSubtitle => 'Укажите имя и выберите аватар';
|
||||
|
||||
@override
|
||||
String get registrationChooseAvatar => 'Выберите аватар';
|
||||
}
|
||||
|
||||
+4
-1
@@ -168,5 +168,8 @@
|
||||
"editProfileSave": "Сохранить",
|
||||
"editProfileFirstName": "Имя",
|
||||
"editProfileLastName": "Фамилия",
|
||||
"editProfileRemovePhoto": "Удалить фото"
|
||||
"editProfileRemovePhoto": "Удалить фото",
|
||||
"registrationTitle": "Создание профиля",
|
||||
"registrationSubtitle": "Укажите имя и выберите аватар",
|
||||
"registrationChooseAvatar": "Выберите аватар"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user