6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit a2ca7711
Changed files
comwell_key_app/assets/translations/da-DK.json | 11 +++++++++-- comwell_key_app/assets/translations/en-US.json | 3 ++- comwell_key_app/lib/home/home_page.dart | 5 ++--- comwell_key_app/lib/routing/app_routes.dart | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-)
Diff
diff --git a/comwell_key_app/assets/translations/da-DK.json b/comwell_key_app/assets/translations/da-DK.json
index 9afae5bf..b4c4bdfb 100644
--- a/comwell_key_app/assets/translations/da-DK.json
+++ b/comwell_key_app/assets/translations/da-DK.json
@@ -110,6 +110,14 @@
"preregistration_confirmation_extras_card_title_singular": "1 valgt Tilkøb",
"preregistration_confirmation_extras_card_title_plural": "{} valgte tilkøb",
"preregistration_confirmation_extras_card_subtitle": "Skrives på din værelsesregning",
+ "need_help": "Har du brug for hjælp?",
+ "call_us": "Ring til os",
+ "call_us_description": "Har du brug for at komme i kontakt med et af vores hoteller? Benyt knappen nedenfor for at ringe op.",
+ "get_a_call": "Bliv ringet op",
+ "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",
"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",
@@ -117,8 +125,7 @@
"hotel_information_page_menu_parking_title": "Parkering",
"hotel_information_page_menu_other_info_title": "Øvrige informationer",
"hotel_information_page_menu_other_info_subtitle": "Find mere information om hotellet",
- "hotel_information_page_spa_button": "Book spa"
-
+ "hotel_information_page_spa_button": "Book spa",
"housekeeping_page_title": "Housekeeping",
"housekeeping_page_subtitle": "Ønsker du ekstra rengøring eller opfyldning på værelset, kan du altid bestille det her - uden omkostninger",
"housekeeping_page_button": "Bestil housekeeping",
diff --git a/comwell_key_app/assets/translations/en-US.json b/comwell_key_app/assets/translations/en-US.json
index 48095121..8c3ba5ff 100644
--- a/comwell_key_app/assets/translations/en-US.json
+++ b/comwell_key_app/assets/translations/en-US.json
@@ -116,7 +116,8 @@
"get_a_call": "Get a call",
"get_a_call_description": "Enter your phone number below and we will call you.",
"telephone_number": "Telephone number",
- "comwell_telefon_number": "+4570274274",
+ "comwell_telephone_number": "+4570274274",
+ "overview_page_hotel_information_button": "Hotel information",
"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 f240769e..e8a23265 100644
--- a/comwell_key_app/lib/home/home_page.dart
+++ b/comwell_key_app/lib/home/home_page.dart
@@ -3,7 +3,6 @@ import 'package:comwell_key_app/common/components/comwell_app_bar.dart';
import 'package:comwell_key_app/home/bloc/home_bloc.dart';
import 'package:comwell_key_app/home/components/housekeeping_button.dart';
import 'package:comwell_key_app/home/components/practical_information_button.dart';
-import 'package:comwell_key_app/home/components/room_key_widget.dart';
import 'package:comwell_key_app/routing/app_routes.dart';
import 'package:comwell_key_app/themes/light_theme.dart';
import 'package:easy_localization/easy_localization.dart';
@@ -128,7 +127,7 @@ class _HomeWidget extends State<HomeWidget> {
aspectRatio: 175/220,
child: PracticalInformationButton(
iconPath: "assets/icons/ic_bed.svg",
- title: "Hotel information",
+ title: "overview_page_hotel_information_button".tr(),
subtitle: "Find relevant information om hotellet",
onClick: () {
context.pushNamed(AppRoutes.hotelInformation.name);
@@ -141,7 +140,7 @@ class _HomeWidget extends State<HomeWidget> {
aspectRatio: 175/220,
child: PracticalInformationButton(
iconPath: "assets/icons/ic_telephone.svg",
- title: "Hotel information".tr(),
+ title: "overview_page_hotel_information_button".tr(),
subtitle: "Find relevant information om hotellet",
onClick: () {
context.pushNamed(AppRoutes.contact.name);
diff --git a/comwell_key_app/lib/routing/app_routes.dart b/comwell_key_app/lib/routing/app_routes.dart
index cd9da056..5bff07e1 100644
--- a/comwell_key_app/lib/routing/app_routes.dart
+++ b/comwell_key_app/lib/routing/app_routes.dart
@@ -21,6 +21,6 @@ enum AppRoutes {
hotelInformation,
restaurants,
spa,
- parking
+ parking,
houseKeeping,
}