diff --git a/lib/pages/landing/home_page.dart b/lib/pages/landing/home_page.dart index c4a469ce..6716535b 100644 --- a/lib/pages/landing/home_page.dart +++ b/lib/pages/landing/home_page.dart @@ -686,7 +686,7 @@ class _HomePageState extends State { child: Container(), ), Texts( - TranslationBase.of(context).viewMore, + TranslationBase.of(context).viewAll, color: Colors.white, bold: true, ) @@ -727,7 +727,7 @@ class _HomePageState extends State { child: Container(), ), Texts( - TranslationBase.of(context).viewMore, + TranslationBase.of(context).viewAll, color: Colors.white, bold: true, ) diff --git a/lib/uitl/translations_delegate_base.dart b/lib/uitl/translations_delegate_base.dart index 12704424..b9626272 100644 --- a/lib/uitl/translations_delegate_base.dart +++ b/lib/uitl/translations_delegate_base.dart @@ -779,6 +779,8 @@ class TranslationBase { String get orderStatus => localizedValues['orderStatus'][locale.languageCode]; String get cancelOrder => localizedValues['CancelOrder'][locale.languageCode]; + // String get viewAll => localizedValues['viewMore'][locale.languageCode]; + }