merge-update-with-lab-changes
haroon amjad 5 years ago
parent a6a9a92c6f
commit 353a5157f2

@ -1124,6 +1124,7 @@ const Map localizedValues = {
}, },
"question": {"en": "Question", "ar": "سؤال"}, "question": {"en": "Question", "ar": "سؤال"},
"message-type": {"en": "Message Type", "ar": "نوع الرسالة"}, "message-type": {"en": "Message Type", "ar": "نوع الرسالة"},
"feedback-type": {"en": "Feedback Type", "ar": "نوع الرسالة"},
"compliment": {"en": "compliment", "ar": "ثناء"}, "compliment": {"en": "compliment", "ar": "ثناء"},
"suggestion": {"en": "Suggestion", "ar": "إقتراح"}, "suggestion": {"en": "Suggestion", "ar": "إقتراح"},
"your-feedback": { "your-feedback": {

@ -544,7 +544,7 @@ class FeedbackTypeDialogState extends State<FeedbackTypeDialog> {
return BaseView<FeedbackViewModel>( return BaseView<FeedbackViewModel>(
builder: (_, model, widge) => SimpleDialog( builder: (_, model, widge) => SimpleDialog(
title: Text( title: Text(
TranslationBase.of(context).messageType, TranslationBase.of(context).feedbackType,
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),
children: <Widget>[ children: <Widget>[

@ -798,7 +798,7 @@ class _HomePageState extends State<HomePage> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
Texts( Texts(
TranslationBase.of(context).contactUs, TranslationBase.of(context).reachUs,
color: Colors.white, color: Colors.white,
fontWeight: FontWeight.normal, fontWeight: FontWeight.normal,
), ),

@ -1607,6 +1607,8 @@ class TranslationBase {
String get insuranceID => String get insuranceID =>
localizedValues["insurance-id"][locale.languageCode]; localizedValues["insurance-id"][locale.languageCode];
String get enterFile => localizedValues["enter-file"][locale.languageCode]; String get enterFile => localizedValues["enter-file"][locale.languageCode];
String get feedbackType => localizedValues["feedback-type"][locale.languageCode];
} }
class TranslationBaseDelegate extends LocalizationsDelegate<TranslationBase> { class TranslationBaseDelegate extends LocalizationsDelegate<TranslationBase> {

Loading…
Cancel
Save