From 1c23e28081bed699db4111e9e331b19465a392df Mon Sep 17 00:00:00 2001 From: Mohammad Aljammal Date: Thu, 3 Dec 2020 16:54:49 +0200 Subject: [PATCH] fix merge issues --- lib/config/localized_values.dart | 9 +-------- lib/uitl/translations_delegate_base.dart | 2 -- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/config/localized_values.dart b/lib/config/localized_values.dart index b6018e98..50d189a5 100644 --- a/lib/config/localized_values.dart +++ b/lib/config/localized_values.dart @@ -1211,17 +1211,10 @@ const Map localizedValues = { "en": "This service allows you to see all the appointment you have visited in Al Habib Medical Group, and through this service:", "ar": "خدمة مواعيدي: هذه الخدمة تمكنك من الاطلاع على جميع المواعيد التي قمت بزيارتهم في مجموعة الحبيب الطبية, كما تستطيع من خلال هذه الخدمة:" }, - "info-advance-payment": { - "en": "This service designed so that you can deposit an amount in advance either in your account or in someone else's account with Al Habib Medical Group.", - "ar": "تم تصميم هذه الخدمة حتى تتمكن من دفع مبلغ مقدما او تحت الحساب سواء في حسابك او في حساب شخص اخر لدى مجموعة الحبيب الطبية." - }, "info-todo": { "en": "This service is designed to enable you to have a quick link to the list of tasks that need to be done", "ar": "هذه الخدمة تم تصميمها لتمكنك من الوصول الى رابط سريع لقائمة المهام التي يجب القيام بها" }, - "info-my-balance": { - "en": "This service allows you to check your balance in all branchs", - "ar": "هذه الخدمه تتيح لك الاطلاع رصيدك في كل الفروع" - }, + }; diff --git a/lib/uitl/translations_delegate_base.dart b/lib/uitl/translations_delegate_base.dart index e9dd8784..b1477629 100644 --- a/lib/uitl/translations_delegate_base.dart +++ b/lib/uitl/translations_delegate_base.dart @@ -909,9 +909,7 @@ String get fileno => localizedValues['fileno'][locale.languageCode]; String get directions => localizedValues['directions'][locale.languageCode]; String get infoMyAppointments => localizedValues['info-my-appointments'][locale.languageCode]; - String get infoAdvancePayment => localizedValues['info-advance-payment'][locale.languageCode]; String get infoTodo => localizedValues['info-todo'][locale.languageCode]; - String get infoMyBalance => localizedValues['info-my-balance'][locale.languageCode]; }