изменение профиля

This commit is contained in:
Jganenok
2026-05-13 23:57:38 +07:00
parent f6cc5fcbab
commit 98d94ff8a7
11 changed files with 445 additions and 25 deletions
+6 -1
View File
@@ -159,5 +159,10 @@
"chatInfoJoined": "joined:",
"chatInfoGroupCreated": "group created:",
"chatInfoGroupOwner": "group owner:",
"chatInfoDialogStarted": "dialog started:"
"chatInfoDialogStarted": "dialog started:",
"editProfileTitle": "Edit Profile",
"editProfileSave": "Save",
"editProfileFirstName": "First name",
"editProfileLastName": "Last name",
"editProfileRemovePhoto": "Remove photo"
}
+30
View File
@@ -955,6 +955,36 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'dialog started:'**
String get chatInfoDialogStarted;
/// No description provided for @editProfileTitle.
///
/// In en, this message translates to:
/// **'Edit Profile'**
String get editProfileTitle;
/// No description provided for @editProfileSave.
///
/// In en, this message translates to:
/// **'Save'**
String get editProfileSave;
/// No description provided for @editProfileFirstName.
///
/// In en, this message translates to:
/// **'First name'**
String get editProfileFirstName;
/// No description provided for @editProfileLastName.
///
/// In en, this message translates to:
/// **'Last name'**
String get editProfileLastName;
/// No description provided for @editProfileRemovePhoto.
///
/// In en, this message translates to:
/// **'Remove photo'**
String get editProfileRemovePhoto;
}
class _AppLocalizationsDelegate
+15
View File
@@ -451,4 +451,19 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get chatInfoDialogStarted => 'dialog started:';
@override
String get editProfileTitle => 'Edit Profile';
@override
String get editProfileSave => 'Save';
@override
String get editProfileFirstName => 'First name';
@override
String get editProfileLastName => 'Last name';
@override
String get editProfileRemovePhoto => 'Remove photo';
}
+15
View File
@@ -453,4 +453,19 @@ class AppLocalizationsRu extends AppLocalizations {
@override
String get chatInfoDialogStarted => 'ЛС начат в:';
@override
String get editProfileTitle => 'Редактирование профиля';
@override
String get editProfileSave => 'Сохранить';
@override
String get editProfileFirstName => 'Имя';
@override
String get editProfileLastName => 'Фамилия';
@override
String get editProfileRemovePhoto => 'Удалить фото';
}
+6 -1
View File
@@ -159,5 +159,10 @@
"chatInfoJoined": "Зашли в:",
"chatInfoGroupCreated": "Группа создана в:",
"chatInfoGroupOwner": "Создатель группы:",
"chatInfoDialogStarted": "ЛС начат в:"
"chatInfoDialogStarted": "ЛС начат в:",
"editProfileTitle": "Редактирование профиля",
"editProfileSave": "Сохранить",
"editProfileFirstName": "Имя",
"editProfileLastName": "Фамилия",
"editProfileRemovePhoto": "Удалить фото"
}