From 741126102d9ca1029419d7d6cb164d0740dac9e3 Mon Sep 17 00:00:00 2001 From: Mohammad Aljmma Date: Sun, 15 Nov 2020 15:03:47 +0200 Subject: [PATCH] fix issue #11 --- lib/pages/landing/home_page.dart | 4 ++-- lib/uitl/translations_delegate_base.dart | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) 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]; + }