6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 0377db88
Changed files
comwell_key_app/assets/translations/da-DK.json | 5 ++++- comwell_key_app/assets/translations/en-US.json | 5 ++++- comwell_key_app/lib/home/home_page.dart | 8 ++++---- 3 files changed, 12 insertions(+), 6 deletions(-)
Diff
diff --git a/comwell_key_app/assets/translations/da-DK.json b/comwell_key_app/assets/translations/da-DK.json
index b4c4bdfb..6d3a4e32 100644
--- a/comwell_key_app/assets/translations/da-DK.json
+++ b/comwell_key_app/assets/translations/da-DK.json
@@ -117,7 +117,10 @@
"get_a_call_description": "Indtast dit telefonnummer herunder og bliv ringet op.",
"telephone_number": "Telefonnummer",
"comwell_telephone_number": "+4570274274",
- "overview_page_hotel_information_button": "Hotelinformation",
+ "booking_details_page_hotel_information_button_title": "Hotelinformation",
+ "booking_details_page_hotel_information_button_subtitle": "Find relevant information om hotellet",
+ "booking_details_page_contact_button_title": "Kontakt",
+ "booking_details_page_contact_button_subtitle": "Kom i kontakt med receptionen.",
"hotel_information_page_menu_restaurants_title": "Restauranter",
"hotel_information_page_menu_restaurants_subtitle": "Læs om vores restaurant",
"hotel_information_page_menu_spa_title": "Spa",
diff --git a/comwell_key_app/assets/translations/en-US.json b/comwell_key_app/assets/translations/en-US.json
index 8c3ba5ff..3bbd74a4 100644
--- a/comwell_key_app/assets/translations/en-US.json
+++ b/comwell_key_app/assets/translations/en-US.json
@@ -117,7 +117,10 @@
"get_a_call_description": "Enter your phone number below and we will call you.",
"telephone_number": "Telephone number",
"comwell_telephone_number": "+4570274274",
- "overview_page_hotel_information_button": "Hotel information",
+ "booking_details_page_hotel_information_button_title": "Hotel information",
+ "booking_details_page_hotel_information_button_subtitle": "Find relevant information about the hotel",
+ "booking_details_page_contact_button_title": "Contact",
+ "booking_details_page_contact_button_subtitle": "Contact the reception",
"housekeeping_page_title": "Housekeeping",
"housekeeping_page_subtitle": "If you wish for housekeeping, you can order it here",
"housekeeping_page_button": "Order housekeeping",
diff --git a/comwell_key_app/lib/home/home_page.dart b/comwell_key_app/lib/home/home_page.dart
index e8a23265..80d7f9d8 100644
--- a/comwell_key_app/lib/home/home_page.dart
+++ b/comwell_key_app/lib/home/home_page.dart
@@ -127,8 +127,8 @@ class _HomeWidget extends State<HomeWidget> {
aspectRatio: 175/220,
child: PracticalInformationButton(
iconPath: "assets/icons/ic_bed.svg",
- title: "overview_page_hotel_information_button".tr(),
- subtitle: "Find relevant information om hotellet",
+ title: "booking_details_page_hotel_information_button_title".tr(),
+ subtitle: "booking_details_page_hotel_information_button_subtitle".tr(),
onClick: () {
context.pushNamed(AppRoutes.hotelInformation.name);
}),
@@ -140,8 +140,8 @@ class _HomeWidget extends State<HomeWidget> {
aspectRatio: 175/220,
child: PracticalInformationButton(
iconPath: "assets/icons/ic_telephone.svg",
- title: "overview_page_hotel_information_button".tr(),
- subtitle: "Find relevant information om hotellet",
+ title: "booking_details_page_contact_button_title".tr(),
+ subtitle: "booking_details_page_contact_button_subtitle".tr(),
onClick: () {
context.pushNamed(AppRoutes.contact.name);
}),