feat:mai page done

This commit is contained in:
jahongireshonqulov
2025-11-01 14:30:56 +05:00
parent 4acc409de0
commit 44878e79b3
81 changed files with 4976 additions and 244 deletions

View File

@@ -249,6 +249,36 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Register'**
String get register;
/// No description provided for @home.
///
/// In en, this message translates to:
/// **'Home'**
String get home;
/// No description provided for @discover.
///
/// In en, this message translates to:
/// **'Discover'**
String get discover;
/// No description provided for @cart.
///
/// In en, this message translates to:
/// **'Cart'**
String get cart;
/// No description provided for @transactions.
///
/// In en, this message translates to:
/// **'Transactions'**
String get transactions;
/// No description provided for @profile.
///
/// In en, this message translates to:
/// **'Profile'**
String get profile;
}
class _AppLocalizationsDelegate

View File

@@ -90,4 +90,19 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get register => 'Register';
@override
String get home => 'Home';
@override
String get discover => 'Discover';
@override
String get cart => 'Cart';
@override
String get transactions => 'Transactions';
@override
String get profile => 'Profile';
}

View File

@@ -88,4 +88,19 @@ class AppLocalizationsRu extends AppLocalizations {
@override
String get register => 'Зарегистрироваться';
@override
String get home => 'Главная';
@override
String get discover => 'Обзор';
@override
String get cart => 'Корзина';
@override
String get transactions => 'Транзакции';
@override
String get profile => 'Профиль';
}

View File

@@ -88,4 +88,19 @@ class AppLocalizationsUz extends AppLocalizations {
@override
String get register => 'Royxatdan otish';
@override
String get home => 'Bosh sahifa';
@override
String get discover => 'Kashf etish';
@override
String get cart => 'Savat';
@override
String get transactions => 'Tranzaksiyalar';
@override
String get profile => 'Profil';
}