import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:intl/intl.dart' as intl;
import 'app_localizations_da.dart';
import 'app_localizations_en.dart';
// ignore_for_file: type=lint
/// Callers can lookup localized strings with an instance of AppLocalizations
/// returned by `AppLocalizations.of(context)`.
///
/// Applications need to include `AppLocalizations.delegate()` in their app's
/// `localizationDelegates` list, and the locales they support in the app's
/// `supportedLocales` list. For example:
///
/// ```dart
/// import 'l10n/app_localizations.dart';
///
/// return MaterialApp(
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
/// supportedLocales: AppLocalizations.supportedLocales,
/// home: MyApplicationHome(),
/// );
/// ```
///
/// ## Update pubspec.yaml
///
/// Please make sure to update your pubspec.yaml to include the following
/// packages:
///
/// ```yaml
/// dependencies:
/// # Internationalization support.
/// flutter_localizations:
/// sdk: flutter
/// intl: any # Use the pinned version from flutter_localizations
///
/// # Rest of dependencies
/// ```
///
/// ## iOS Applications
///
/// iOS applications define key application metadata, including supported
/// locales, in an Info.plist file that is built into the application bundle.
/// To configure the locales supported by your app, you’ll need to edit this
/// file.
///
/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
/// Then, in the Project Navigator, open the Info.plist file under the Runner
/// project’s Runner folder.
///
/// Next, select the Information Property List item, select Add Item from the
/// Editor menu, then select Localizations from the pop-up menu.
///
/// Select and expand the newly-created Localizations item then, for each
/// locale your application supports, add a new item and select the locale
/// you wish to add from the pop-up menu in the Value field. This list should
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale)
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
static AppLocalizations? of(BuildContext context) {
return Localizations.of<AppLocalizations>(context, AppLocalizations);
}
static const LocalizationsDelegate<AppLocalizations> delegate =
_AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
///
/// Returns a list of localizations delegates containing this delegate along with
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
/// and GlobalWidgetsLocalizations.delegate.
///
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
<LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
];
/// A list of this localizations delegate's supported locales.
static const List<Locale> supportedLocales = <Locale>[
Locale('da'),
Locale('en'),
];
/// No description provided for @generic_continue.
///
/// In en, this message translates to:
/// **'Continue'**
String get generic_continue;
/// No description provided for @generic_information_required.
///
/// In en, this message translates to:
/// **'This field is required.'**
String get generic_information_required;
/// No description provided for @generic_confirm.
///
/// In en, this message translates to:
/// **'Confirm'**
String get generic_confirm;
/// No description provided for @generic_done.
///
/// In en, this message translates to:
/// **'Done'**
String get generic_done;
/// No description provided for @generic_ok.
///
/// In en, this message translates to:
/// **'OK'**
String get generic_ok;
/// No description provided for @generic_credit_card.
///
/// In en, this message translates to:
/// **'Credit card'**
String get generic_credit_card;
/// No description provided for @generic_apple_pay.
///
/// In en, this message translates to:
/// **'Apple Pay'**
String get generic_apple_pay;
/// No description provided for @generic_google_pay.
///
/// In en, this message translates to:
/// **'Google Pay'**
String get generic_google_pay;
/// No description provided for @generic_error.
///
/// In en, this message translates to:
/// **'An error occurred. Please try again.'**
String get generic_error;
/// No description provided for @welcome_headline.
///
/// In en, this message translates to:
/// **'Welcome to Comwell Hotels'**
String get welcome_headline;
/// No description provided for @welcome_button.
///
/// In en, this message translates to:
/// **'Continue'**
String get welcome_button;
/// No description provided for @welcome_error.
///
/// In en, this message translates to:
/// **'An error has occurred. Restart the app.'**
String get welcome_error;
/// No description provided for @room_key.
///
/// In en, this message translates to:
/// **'Key'**
String get room_key;
/// No description provided for @room_keys.
///
/// In en, this message translates to:
/// **'Keys'**
String get room_keys;
/// No description provided for @redeem_code.
///
/// In en, this message translates to:
/// **'Redeem code'**
String get redeem_code;
/// No description provided for @error_opening_door.
///
/// In en, this message translates to:
/// **'An error occurred.'**
String get error_opening_door;
/// No description provided for @try_again.
///
/// In en, this message translates to:
/// **'Try again'**
String get try_again;
/// No description provided for @room_key_description.
///
/// In en, this message translates to:
/// **'This is your room key.'**
String get room_key_description;
/// No description provided for @login_button.
///
/// In en, this message translates to:
/// **'Login'**
String get login_button;
/// No description provided for @create_user_button.
///
/// In en, this message translates to:
/// **'Create new user'**
String get create_user_button;
/// No description provided for @profile_settings_profile_menu.
///
/// In en, this message translates to:
/// **'Profile settings'**
String get profile_settings_profile_menu;
/// No description provided for @payment_card_profile_menu.
///
/// In en, this message translates to:
/// **'Payment card'**
String get payment_card_profile_menu;
/// No description provided for @notifications_profile_menu.
///
/// In en, this message translates to:
/// **'Notifications'**
String get notifications_profile_menu;
/// No description provided for @logout_profile_menu.
///
/// In en, this message translates to:
/// **'Log out'**
String get logout_profile_menu;
/// No description provided for @logout_dialog_title.
///
/// In en, this message translates to:
/// **'Do you want to log out of your profile?'**
String get logout_dialog_title;
/// No description provided for @cancel.
///
/// In en, this message translates to:
/// **'Cancel'**
String get cancel;
/// No description provided for @name_cc_sign.
///
/// In en, this message translates to:
/// **'Name'**
String get name_cc_sign;
/// No description provided for @become_cc_member_title.
///
/// In en, this message translates to:
/// **'Become a member of comwell club'**
String get become_cc_member_title;
/// No description provided for @become_cc_member_subtitle.
///
/// In en, this message translates to:
/// **'Become a member and earn points every time you stay at a Comwell Hotel.'**
String get become_cc_member_subtitle;
/// No description provided for @overview_tabbar_active.
///
/// In en, this message translates to:
/// **'Current'**
String get overview_tabbar_active;
/// No description provided for @overview_tabbar_past.
///
/// In en, this message translates to:
/// **'Previous'**
String get overview_tabbar_past;
/// No description provided for @overview_tabbar_cancelled.
///
/// In en, this message translates to:
/// **'Cancelled'**
String get overview_tabbar_cancelled;
/// No description provided for @no_past_bookings_title.
///
/// In en, this message translates to:
/// **'No previous stays'**
String get no_past_bookings_title;
/// No description provided for @no_past_bookings_subtitle.
///
/// In en, this message translates to:
/// **'There are no previous stays on this profile.'**
String get no_past_bookings_subtitle;
/// No description provided for @no_cancelled_booking_title.
///
/// In en, this message translates to:
/// **'No cancelled stays'**
String get no_cancelled_booking_title;
/// No description provided for @no_cancelled_booking_subtitle.
///
/// In en, this message translates to:
/// **'You have no canceled nights with us.'**
String get no_cancelled_booking_subtitle;
/// No description provided for @booking_annulled.
///
/// In en, this message translates to:
/// **'Cancelled'**
String get booking_annulled;
/// No description provided for @no_current_bookings.
///
/// In en, this message translates to:
/// **'No current bookings'**
String get no_current_bookings;
/// No description provided for @no_current_bookings_subtitle.
///
/// In en, this message translates to:
/// **'You have no current bookings. Plan your next stay at Comwell.'**
String get no_current_bookings_subtitle;
/// No description provided for @adults.
///
/// In en, this message translates to:
/// **'adults'**
String get adults;
/// No description provided for @children.
///
/// In en, this message translates to:
/// **'children'**
String get children;
/// No description provided for @adult.
///
/// In en, this message translates to:
/// **'adult'**
String get adult;
/// No description provided for @child.
///
/// In en, this message translates to:
/// **'child'**
String get child;
/// No description provided for @rooms.
///
/// In en, this message translates to:
/// **'Rooms'**
String get rooms;
/// No description provided for @prepare_room.
///
/// In en, this message translates to:
/// **'Save time at check-in'**
String get prepare_room;
/// No description provided for @jump_line_text.
///
/// In en, this message translates to:
/// **'Fill in your information'**
String get jump_line_text;
/// No description provided for @overview_add_booking.
///
/// In en, this message translates to:
/// **'Add booking'**
String get overview_add_booking;
/// No description provided for @open_room.
///
/// In en, this message translates to:
/// **'Open room'**
String get open_room;
/// No description provided for @hold_phone_to_door.
///
/// In en, this message translates to:
/// **'Keep close to the reader'**
String get hold_phone_to_door;
/// No description provided for @open_room_success.
///
/// In en, this message translates to:
/// **'Success'**
String get open_room_success;
/// No description provided for @open_room_error.
///
/// In en, this message translates to:
/// **'Try again!'**
String get open_room_error;
/// No description provided for @profile_settings.
///
/// In en, this message translates to:
/// **'Profile settings'**
String get profile_settings;
/// No description provided for @profile_settings_firstname.
///
/// In en, this message translates to:
/// **'First name'**
String get profile_settings_firstname;
/// No description provided for @profile_settings_lastname.
///
/// In en, this message translates to:
/// **'Surname'**
String get profile_settings_lastname;
/// No description provided for @profile_settings_email.
///
/// In en, this message translates to:
/// **'Email'**
String get profile_settings_email;
/// No description provided for @profile_settings_phone.
///
/// In en, this message translates to:
/// **'Telephone'**
String get profile_settings_phone;
/// No description provided for @profile_settings_address.
///
/// In en, this message translates to:
/// **'Address'**
String get profile_settings_address;
/// No description provided for @profile_settings_birthday.
///
/// In en, this message translates to:
/// **'Birthday'**
String get profile_settings_birthday;
/// No description provided for @profile_settings_edit_password.
///
/// In en, this message translates to:
/// **'Change password'**
String get profile_settings_edit_password;
/// No description provided for @profile_settings_error.
///
/// In en, this message translates to:
/// **'An error occurred. Please try again.'**
String get profile_settings_error;
/// No description provided for @delete_profile.
///
/// In en, this message translates to:
/// **'Delete profile'**
String get delete_profile;
/// No description provided for @my_booking.
///
/// In en, this message translates to:
/// **'My booking'**
String get my_booking;
/// No description provided for @booking_reference.
///
/// In en, this message translates to:
/// **'Reservation number'**
String get booking_reference;
/// No description provided for @check_in.
///
/// In en, this message translates to:
/// **'Check in'**
String get check_in;
/// No description provided for @check_out.
///
/// In en, this message translates to:
/// **'Check out'**
String get check_out;
/// No description provided for @overview_page_check_in_physical_card_subtitle.
///
/// In en, this message translates to:
/// **'Go to the lobby and get your key.'**
String get overview_page_check_in_physical_card_subtitle;
/// No description provided for @booking_details.
///
/// In en, this message translates to:
/// **'My booking'**
String get booking_details;
/// No description provided for @number_of_guests.
///
/// In en, this message translates to:
/// **'People'**
String get number_of_guests;
/// No description provided for @booker.
///
/// In en, this message translates to:
/// **'Book'**
String get booker;
/// No description provided for @booking_date.
///
/// In en, this message translates to:
/// **'Date'**
String get booking_date;
/// No description provided for @payment.
///
/// In en, this message translates to:
/// **'Payment'**
String get payment;
/// No description provided for @payment_method.
///
/// In en, this message translates to:
/// **'Payment method'**
String get payment_method;
/// No description provided for @bill.
///
/// In en, this message translates to:
/// **'Receipt'**
String get bill;
/// No description provided for @get_bill.
///
/// In en, this message translates to:
/// **'Get receipt'**
String get get_bill;
/// No description provided for @your_last_name.
///
/// In en, this message translates to:
/// **'Surname'**
String get your_last_name;
/// No description provided for @find_booking.
///
/// In en, this message translates to:
/// **'Add booking'**
String get find_booking;
/// No description provided for @choose_hotel.
///
/// In en, this message translates to:
/// **'Choose hotel'**
String get choose_hotel;
/// No description provided for @hotels.
///
/// In en, this message translates to:
/// **'Hotels'**
String get hotels;
/// No description provided for @all.
///
/// In en, this message translates to:
/// **'All'**
String get all;
/// No description provided for @zealand.
///
/// In en, this message translates to:
/// **'Zealand'**
String get zealand;
/// No description provided for @funen.
///
/// In en, this message translates to:
/// **'Funen'**
String get funen;
/// No description provided for @jutland.
///
/// In en, this message translates to:
/// **'Jutland'**
String get jutland;
/// No description provided for @booking_not_found.
///
/// In en, this message translates to:
/// **'The booking was not found.'**
String get booking_not_found;
/// No description provided for @booking_not_found_subtitle.
///
/// In en, this message translates to:
/// **'The booking you are looking for could not be found. \nDid you enter the information correctly?'**
String get booking_not_found_subtitle;
/// No description provided for @booking_not_found_button.
///
/// In en, this message translates to:
/// **'Try again'**
String get booking_not_found_button;
/// No description provided for @booking_not_found_cancel.
///
/// In en, this message translates to:
/// **'Cancel'**
String get booking_not_found_cancel;
/// No description provided for @save.
///
/// In en, this message translates to:
/// **'Save'**
String get save;
/// No description provided for @zipCode.
///
/// In en, this message translates to:
/// **'Postal code'**
String get zipCode;
/// No description provided for @city.
///
/// In en, this message translates to:
/// **'Town'**
String get city;
/// No description provided for @country.
///
/// In en, this message translates to:
/// **'Country'**
String get country;
/// No description provided for @delete_profile_title.
///
/// In en, this message translates to:
/// **'You are about to delete your profile.'**
String get delete_profile_title;
/// No description provided for @delete_profile_description.
///
/// In en, this message translates to:
/// **'When you delete your profile, you will lose track of previous stays and your Comwell Club points.'**
String get delete_profile_description;
/// No description provided for @delete_profile_button.
///
/// In en, this message translates to:
/// **'Delete profile'**
String get delete_profile_button;
/// No description provided for @delete_profile_cancel.
///
/// In en, this message translates to:
/// **'Cancel'**
String get delete_profile_cancel;
/// No description provided for @check_in_loading_title.
///
/// In en, this message translates to:
/// **'Finding your room...'**
String get check_in_loading_title;
/// No description provided for @check_in_room_found_title.
///
/// In en, this message translates to:
/// **'Room found...'**
String get check_in_room_found_title;
/// No description provided for @check_in_your_digital_card_title.
///
/// In en, this message translates to:
/// **'Your Key Card'**
String get check_in_your_digital_card_title;
/// No description provided for @check_in_your_digital_card_subtitle.
///
/// In en, this message translates to:
/// **'Use your mobile phone to open your room. You no longer need to check in at the reception.'**
String get check_in_your_digital_card_subtitle;
/// No description provided for @check_in_your_digital_card_nb.
///
/// In en, this message translates to:
/// **'NB: If you want a physical key card, you can always go to reception and get one.'**
String get check_in_your_digital_card_nb;
/// No description provided for @check_in_error_title.
///
/// In en, this message translates to:
/// **'Room not found...'**
String get check_in_error_title;
/// No description provided for @check_in_error_subtitle.
///
/// In en, this message translates to:
/// **'We could not find your room. Please contact the reception.'**
String get check_in_error_subtitle;
/// No description provided for @preregistration_address_title.
///
/// In en, this message translates to:
/// **'Address'**
String get preregistration_address_title;
/// No description provided for @check_in_your_digital_card_room_prefix.
///
/// In en, this message translates to:
/// **'Room'**
String get check_in_your_digital_card_room_prefix;
/// No description provided for @preregistration_address_subtitle.
///
/// In en, this message translates to:
/// **'It is a legal requirement that we know the address of the primary occupant of the room. This is for fire safety reasons.'**
String get preregistration_address_subtitle;
/// No description provided for @preregistration_address_label_address.
///
/// In en, this message translates to:
/// **'Address'**
String get preregistration_address_label_address;
/// No description provided for @preregistration_address_label_postal_code.
///
/// In en, this message translates to:
/// **'Postal code'**
String get preregistration_address_label_postal_code;
/// No description provided for @preregistration_address_label_city.
///
/// In en, this message translates to:
/// **'Town'**
String get preregistration_address_label_city;
/// No description provided for @preregistration_address_label_country.
///
/// In en, this message translates to:
/// **'Country'**
String get preregistration_address_label_country;
/// No description provided for @preregistration_profile_title.
///
/// In en, this message translates to:
/// **'Your info'**
String get preregistration_profile_title;
/// No description provided for @preregistration_profile_subtitle.
///
/// In en, this message translates to:
/// **'It is a legal requirement that we know the address of the primary occupant of the room. This is for fire safety reasons.'**
String get preregistration_profile_subtitle;
/// No description provided for @preregistration_birthdate_error_message.
///
/// In en, this message translates to:
/// **'Please enter a valid birth date'**
String get preregistration_birthdate_error_message;
/// No description provided for @nationality.
///
/// In en, this message translates to:
/// **'Nationality'**
String get nationality;
/// No description provided for @preregistration_payment_title.
///
/// In en, this message translates to:
/// **'Payment card'**
String get preregistration_payment_title;
/// No description provided for @preregistration_payment_subtitle.
///
/// In en, this message translates to:
/// **'To stay overnight at Comwell, we need a payment card.'**
String get preregistration_payment_subtitle;
/// No description provided for @preregistration_payment_add_card.
///
/// In en, this message translates to:
/// **'Add card'**
String get preregistration_payment_add_card;
/// No description provided for @preregistration_confirmation_title.
///
/// In en, this message translates to:
/// **'Registration information'**
String get preregistration_confirmation_title;
/// No description provided for @preregistration_confirmation_profile_card_title.
///
/// In en, this message translates to:
/// **'Profile information'**
String get preregistration_confirmation_profile_card_title;
/// No description provided for @preregistration_confirmation_address_card_title.
///
/// In en, this message translates to:
/// **'Address'**
String get preregistration_confirmation_address_card_title;
/// No description provided for @preregistration_confirmation_payment_card_title.
///
/// In en, this message translates to:
/// **'Payment card'**
String get preregistration_confirmation_payment_card_title;
/// No description provided for @preregistration_confirmation_extras_card_title_singular.
///
/// In en, this message translates to:
/// **'1 selected Purchase'**
String get preregistration_confirmation_extras_card_title_singular;
/// No description provided for @preregistration_confirmation_extras_card_title_plural.
///
/// In en, this message translates to:
/// **'{amount} selected add-ons'**
String preregistration_confirmation_extras_card_title_plural(Object amount);
/// No description provided for @preregistration_my_addons.
///
/// In en, this message translates to:
/// **'My purchases'**
String get preregistration_my_addons;
/// No description provided for @preregistration_my_addons_subtitle.
///
/// In en, this message translates to:
/// **'Ea sit sunt sunt sint exercitation id cupidatat ipsum quis eu quis incididunt mollit ea pariatur.'**
String get preregistration_my_addons_subtitle;
/// No description provided for @preregistration_confirmation_extras_card_subtitle.
///
/// In en, this message translates to:
/// **'Written on your room bill'**
String get preregistration_confirmation_extras_card_subtitle;
/// No description provided for @need_help.
///
/// In en, this message translates to:
/// **'Do you need help?'**
String get need_help;
/// No description provided for @call_us.
///
/// In en, this message translates to:
/// **'Call us'**
String get call_us;
/// No description provided for @call_us_description.
///
/// In en, this message translates to:
/// **'Do you need to get in touch with one of our hotels? Use the button below to call.'**
String get call_us_description;
/// No description provided for @get_a_call.
///
/// In en, this message translates to:
/// **'Get a call'**
String get get_a_call;
/// No description provided for @get_a_call_description.
///
/// In en, this message translates to:
/// **'Enter your phone number below and we will call you back.'**
String get get_a_call_description;
/// No description provided for @call_received_title.
///
/// In en, this message translates to:
/// **'Received'**
String get call_received_title;
/// No description provided for @call_received_description.
///
/// In en, this message translates to:
/// **'We have received your contact request. Our team will contact you soon.'**
String get call_received_description;
/// No description provided for @telephone_number.
///
/// In en, this message translates to:
/// **'Telephone number'**
String get telephone_number;
/// No description provided for @comwell_telephone_number.
///
/// In en, this message translates to:
/// **'+4570274274'**
String get comwell_telephone_number;
/// No description provided for @booking_details_page_hotel_information_button_title.
///
/// In en, this message translates to:
/// **'Hotel information'**
String get booking_details_page_hotel_information_button_title;
/// No description provided for @booking_details_page_hotel_information_button_subtitle.
///
/// In en, this message translates to:
/// **'Find relevant information about the hotel'**
String get booking_details_page_hotel_information_button_subtitle;
/// No description provided for @booking_details_page_contact_button_title.
///
/// In en, this message translates to:
/// **'Contact'**
String get booking_details_page_contact_button_title;
/// No description provided for @booking_details_page_contact_button_subtitle.
///
/// In en, this message translates to:
/// **'Get in touch with the reception.'**
String get booking_details_page_contact_button_subtitle;
/// No description provided for @housekeeping_page_title.
///
/// In en, this message translates to:
/// **'Housekeeping'**
String get housekeeping_page_title;
/// No description provided for @housekeeping_page_subtitle.
///
/// In en, this message translates to:
/// **'If you want extra cleaning or replenishment in the room, you can always order it here - at no cost.'**
String get housekeeping_page_subtitle;
/// No description provided for @housekeeping_page_button.
///
/// In en, this message translates to:
/// **'Book housekeeping'**
String get housekeeping_page_button;
/// No description provided for @housekeeping_page_service_title_cleaning.
///
/// In en, this message translates to:
/// **'Room cleaning'**
String get housekeeping_page_service_title_cleaning;
/// No description provided for @housekeeping_page_service_title_towels.
///
/// In en, this message translates to:
/// **'Fresh towels'**
String get housekeeping_page_service_title_towels;
/// No description provided for @housekeeping_page_service_title_refill.
///
/// In en, this message translates to:
/// **'Coffee and tea refills'**
String get housekeeping_page_service_title_refill;
/// No description provided for @housekeeping_page_service_title_trash.
///
/// In en, this message translates to:
/// **'Garbage collection'**
String get housekeeping_page_service_title_trash;
/// No description provided for @housekeeping_page_service_title_soap.
///
/// In en, this message translates to:
/// **'Soap/shampoo'**
String get housekeeping_page_service_title_soap;
/// No description provided for @housekeeping_page_service_cleaning_subtitle.
///
/// In en, this message translates to:
/// **'Cleaning will be done between 11am and 2pm.'**
String get housekeeping_page_service_cleaning_subtitle;
/// No description provided for @housekeeping_page_supplies.
///
/// In en, this message translates to:
/// **'Supplies'**
String get housekeeping_page_supplies;
/// No description provided for @housekeeping_page_cleaning.
///
/// In en, this message translates to:
/// **'Cleaning'**
String get housekeeping_page_cleaning;
/// No description provided for @booking_details_page_housekeeping_button_title_ordered.
///
/// In en, this message translates to:
/// **'Housekeeping ordered'**
String get booking_details_page_housekeeping_button_title_ordered;
/// No description provided for @booking_details_page_housekeeping_button_subtitle_ordered.
///
/// In en, this message translates to:
/// **'Cleaning comes between 11 am and 2 pm'**
String get booking_details_page_housekeeping_button_subtitle_ordered;
/// No description provided for @housekeeping_page_supplies_subtitle_towels.
///
/// In en, this message translates to:
/// **'Soap and shampoo'**
String get housekeeping_page_supplies_subtitle_towels;
/// No description provided for @housekeeping_page_supplies_subtitle_refill.
///
/// In en, this message translates to:
/// **'Refill coffee and tea'**
String get housekeeping_page_supplies_subtitle_refill;
/// No description provided for @housekeeping_page_supplies_subtitle_trash.
///
/// In en, this message translates to:
/// **'Fresh towels'**
String get housekeeping_page_supplies_subtitle_trash;
/// No description provided for @housekeeping_page_supplies_subtitle_soap.
///
/// In en, this message translates to:
/// **'Trash removal'**
String get housekeeping_page_supplies_subtitle_soap;
/// No description provided for @booking_details_page_housekeeping_button_title.
///
/// In en, this message translates to:
/// **'Book housekeeping'**
String get booking_details_page_housekeeping_button_title;
/// No description provided for @booking_details_page_housekeeping_button_subtitle.
///
/// In en, this message translates to:
/// **'The day before housekeeping is requested.'**
String get booking_details_page_housekeeping_button_subtitle;
/// No description provided for @booking_details_page_practical_information.
///
/// In en, this message translates to:
/// **'Practical information'**
String get booking_details_page_practical_information;
/// No description provided for @booking_details_page_checkout_title.
///
/// In en, this message translates to:
/// **'Check-out'**
String get booking_details_page_checkout_title;
/// No description provided for @booking_details_page_checkout_subtitle.
///
/// In en, this message translates to:
/// **'Start your check-out here'**
String get booking_details_page_checkout_subtitle;
/// No description provided for @booking_details_page_checkout_time.
///
/// In en, this message translates to:
/// **'10:00 AM'**
String get booking_details_page_checkout_time;
/// No description provided for @hotel_information_page_menu_restaurants_title.
///
/// In en, this message translates to:
/// **'Restaurants'**
String get hotel_information_page_menu_restaurants_title;
/// No description provided for @hotel_information_page_menu_restaurants_subtitle.
///
/// In en, this message translates to:
/// **'Read about our restaurant'**
String get hotel_information_page_menu_restaurants_subtitle;
/// No description provided for @hotel_information_page_menu_spa_title.
///
/// In en, this message translates to:
/// **'Spa'**
String get hotel_information_page_menu_spa_title;
/// No description provided for @hotel_information_page_menu_spa_subtitle.
///
/// In en, this message translates to:
/// **'Baths, saunas, brechelbath, etc.'**
String get hotel_information_page_menu_spa_subtitle;
/// No description provided for @hotel_information_page_menu_parking_title.
///
/// In en, this message translates to:
/// **'Parking'**
String get hotel_information_page_menu_parking_title;
/// No description provided for @hotel_information_page_menu_other_info_title.
///
/// In en, this message translates to:
/// **'Other information'**
String get hotel_information_page_menu_other_info_title;
/// No description provided for @hotel_information_page_menu_other_info_subtitle.
///
/// In en, this message translates to:
/// **'Find more information about the hotel'**
String get hotel_information_page_menu_other_info_subtitle;
/// No description provided for @hotel_information_page_spa_button.
///
/// In en, this message translates to:
/// **'Book a spa'**
String get hotel_information_page_spa_button;
/// No description provided for @restaurant_page_practical_information.
///
/// In en, this message translates to:
/// **'Practical information'**
String get restaurant_page_practical_information;
/// No description provided for @restaurant_page_address.
///
/// In en, this message translates to:
/// **'Address'**
String get restaurant_page_address;
/// No description provided for @restaurant_page_opening_hours.
///
/// In en, this message translates to:
/// **'Opening hours'**
String get restaurant_page_opening_hours;
/// No description provided for @restaurant_page_book_table.
///
/// In en, this message translates to:
/// **'Book a table'**
String get restaurant_page_book_table;
/// No description provided for @restaurant_page_send_email.
///
/// In en, this message translates to:
/// **'Write an email'**
String get restaurant_page_send_email;
/// No description provided for @overview_page_check_in_button_subtitle.
///
/// In en, this message translates to:
/// **'Get your digital key card immediately'**
String get overview_page_check_in_button_subtitle;
/// No description provided for @checkout_page_confirmation_title.
///
/// In en, this message translates to:
/// **'Check-out'**
String get checkout_page_confirmation_title;
/// No description provided for @checkout_page_confirmation_subtitle.
///
/// In en, this message translates to:
/// **'When you confirm your check-out, you have 30 minutes to leave the room before your key card will stop working.'**
String get checkout_page_confirmation_subtitle;
/// No description provided for @checkout_page_confirmation_deadline.
///
/// In en, this message translates to:
/// **'Your check-out must be no later than 10:00 AM.'**
String get checkout_page_confirmation_deadline;
/// No description provided for @checkout_page_confirmation_price_title.
///
/// In en, this message translates to:
/// **'For payment'**
String get checkout_page_confirmation_price_title;
/// No description provided for @checkout_page_confirmation_continue.
///
/// In en, this message translates to:
/// **'Go to payment'**
String get checkout_page_confirmation_continue;
/// No description provided for @checkout_page_payment_title.
///
/// In en, this message translates to:
/// **'Payment summary'**
String get checkout_page_payment_title;
/// No description provided for @checkout_page_payment_total.
///
/// In en, this message translates to:
/// **'Total'**
String get checkout_page_payment_total;
/// No description provided for @checkout_page_payment_price.
///
/// In en, this message translates to:
/// **'{amount} kr.'**
String checkout_page_payment_price(Object amount);
/// No description provided for @checkout_page_payment_club_points_title.
///
/// In en, this message translates to:
/// **'Use Comwell Club Points'**
String get checkout_page_payment_club_points_title;
/// No description provided for @checkout_page_payment_club_points_subtitle.
///
/// In en, this message translates to:
/// **'You have {points} points, use them and save {amount}kr.'**
String checkout_page_payment_club_points_subtitle(
Object amount,
Object points,
);
/// No description provided for @checkout_page_payment_club_points_subtitle_zero.
///
/// In en, this message translates to:
/// **'You have no points to use.'**
String get checkout_page_payment_club_points_subtitle_zero;
/// No description provided for @checkout_page_payment_payment_title.
///
/// In en, this message translates to:
/// **'Pay and check out'**
String get checkout_page_payment_payment_title;
/// No description provided for @checkout_page_confirmation.
///
/// In en, this message translates to:
/// **'Go to check out'**
String get checkout_page_confirmation;
/// No description provided for @accept_terms.
///
/// In en, this message translates to:
/// **'Accept the terms and conditions'**
String get accept_terms;
/// No description provided for @checkout_page_payment_dialog_title.
///
/// In en, this message translates to:
/// **'Are you sure you want to check out of the hotel?'**
String get checkout_page_payment_dialog_title;
/// No description provided for @checkout_page_payment_dialog_subtitle.
///
/// In en, this message translates to:
/// **'Once you confirm, you have 30 minutes to vacate your room.'**
String get checkout_page_payment_dialog_subtitle;
/// No description provided for @checkout_page_payment_dialog_confirm.
///
/// In en, this message translates to:
/// **'Yes, check out now'**
String get checkout_page_payment_dialog_confirm;
/// No description provided for @checkout_page_payment_dialog_cancel.
///
/// In en, this message translates to:
/// **'No'**
String get checkout_page_payment_dialog_cancel;
/// No description provided for @checkout_page_processing_success_title.
///
/// In en, this message translates to:
/// **'Check-out confirmed'**
String get checkout_page_processing_success_title;
/// No description provided for @checkout_page_processing_success_subtitle.
///
/// In en, this message translates to:
/// **'Your check-out is now confirmed and you now have 30 minutes to leave your room. After that, you will no longer be able to use your key card.'**
String get checkout_page_processing_success_subtitle;
/// No description provided for @checkout_page_processing_success_subtitle_no_digital_card.
///
/// In en, this message translates to:
/// **'You are now checked out. Remember to return your key to the lobby.'**
String get checkout_page_processing_success_subtitle_no_digital_card;
/// No description provided for @checkout_page_processing_error_title.
///
/// In en, this message translates to:
/// **'Check-out failed'**
String get checkout_page_processing_error_title;
/// No description provided for @checkout_page_processing_error_subtitle.
///
/// In en, this message translates to:
/// **'There was an error during check-out. Please contact the reception.'**
String get checkout_page_processing_error_subtitle;
/// No description provided for @payment_cards_title.
///
/// In en, this message translates to:
/// **'Payment card'**
String get payment_cards_title;
/// No description provided for @payment_cards_subtitle.
///
/// In en, this message translates to:
/// **'To stay overnight at Comwell, we need a payment card.'**
String get payment_cards_subtitle;
/// No description provided for @payment_cards_my_cards.
///
/// In en, this message translates to:
/// **'My cards'**
String get payment_cards_my_cards;
/// No description provided for @payment_cards_confirm_remove_title.
///
/// In en, this message translates to:
/// **'You are about to remove a payment card.'**
String get payment_cards_confirm_remove_title;
/// No description provided for @payment_cards_confirm_remove_subtitle.
///
/// In en, this message translates to:
/// **'This payment card will no longer be available if you delete it.'**
String get payment_cards_confirm_remove_subtitle;
/// No description provided for @payment_cards_remove_card_button.
///
/// In en, this message translates to:
/// **'Remove card'**
String get payment_cards_remove_card_button;
/// No description provided for @payment_cards_edit_card_title.
///
/// In en, this message translates to:
/// **'Edit map'**
String get payment_cards_edit_card_title;
/// No description provided for @payment_cards_save_card_button.
///
/// In en, this message translates to:
/// **'Save map'**
String get payment_cards_save_card_button;
/// No description provided for @share_booking_page_title.
///
/// In en, this message translates to:
/// **'Share stay'**
String get share_booking_page_title;
/// No description provided for @share_booking_page_subtitle.
///
/// In en, this message translates to:
/// **'Here you can share your stay with another guest and give them access to booking information, key cards and Concierge'**
String get share_booking_page_subtitle;
/// No description provided for @share_booking_page_share_button.
///
/// In en, this message translates to:
/// **'Share your stay'**
String get share_booking_page_share_button;
/// No description provided for @handle_guests_title.
///
/// In en, this message translates to:
/// **'Manage guests'**
String get handle_guests_title;
/// No description provided for @cancel_sharing.
///
/// In en, this message translates to:
/// **'Undo sharing'**
String get cancel_sharing;
/// No description provided for @check_out_my_booking.
///
/// In en, this message translates to:
/// **'Check out of my stay'**
String get check_out_my_booking;
/// No description provided for @dates.
///
/// In en, this message translates to:
/// **'Dates'**
String get dates;
/// No description provided for @guest.
///
/// In en, this message translates to:
/// **'Guest'**
String get guest;
/// No description provided for @guests.
///
/// In en, this message translates to:
/// **'Guests'**
String get guests;
/// No description provided for @view_booking.
///
/// In en, this message translates to:
/// **'See booking'**
String get view_booking;
/// No description provided for @comwell_booking.
///
/// In en, this message translates to:
/// **'Comwell Stay'**
String get comwell_booking;
/// No description provided for @name_on_card_hint.
///
/// In en, this message translates to:
/// **'Name on card'**
String get name_on_card_hint;
/// No description provided for @card_number_hint.
///
/// In en, this message translates to:
/// **'Shortcode'**
String get card_number_hint;
/// No description provided for @expiry_date_hint.
///
/// In en, this message translates to:
/// **'Expiration date'**
String get expiry_date_hint;
/// No description provided for @cvc_hint.
///
/// In en, this message translates to:
/// **'CVC'**
String get cvc_hint;
/// No description provided for @remove_guest.
///
/// In en, this message translates to:
/// **'Remove guest'**
String get remove_guest;
/// No description provided for @remove_guests.
///
/// In en, this message translates to:
/// **'Remove guests'**
String get remove_guests;
/// No description provided for @are_you_sure.
///
/// In en, this message translates to:
/// **'Are you sure?'**
String get are_you_sure;
/// No description provided for @guest_removal_responsibility.
///
/// In en, this message translates to:
/// **'You will be responsible for all in-room purchases upon check-out (316 DKK)'**
String get guest_removal_responsibility;
/// No description provided for @notifications_page_title.
///
/// In en, this message translates to:
/// **'Notifications'**
String get notifications_page_title;
/// No description provided for @subscribe_all.
///
/// In en, this message translates to:
/// **'Subscribe to all notifications'**
String get subscribe_all;
/// No description provided for @company_deal.
///
/// In en, this message translates to:
/// **'Company agreement'**
String get company_deal;
/// No description provided for @company_deal_subtitle.
///
/// In en, this message translates to:
/// **'Yes, I would like to receive relevant information related to the company agreement from Comwell A/S via email and SMS. You can end your registration at any time by clicking the exit link at the bottom of the email.'**
String get company_deal_subtitle;
/// No description provided for @club_newsletter.
///
/// In en, this message translates to:
/// **'Comwell Club newsletter'**
String get club_newsletter;
/// No description provided for @club_newsletter_subtitle.
///
/// In en, this message translates to:
/// **'Yes, I would like to receive emails with exciting offers on hotel stays and events at Comwell Hotels. I can unsubscribe at any time.'**
String get club_newsletter_subtitle;
/// No description provided for @digital_media.
///
/// In en, this message translates to:
/// **'Digital media'**
String get digital_media;
/// No description provided for @digital_media_subtitle.
///
/// In en, this message translates to:
/// **'Yes, I would like to see personalized digital advertisements with news, inspiration and invitations to events. I can unsubscribe at any time.'**
String get digital_media_subtitle;
/// No description provided for @sms.
///
/// In en, this message translates to:
/// **'SMS'**
String get sms;
/// No description provided for @sms_subtitle.
///
/// In en, this message translates to:
/// **'Yes, I would like to receive SMS with news, inspiration and invitations to events. I can unsubscribe at any time.'**
String get sms_subtitle;
/// No description provided for @email_subtitle.
///
/// In en, this message translates to:
/// **'Yes, I would like to receive emails with news, inspiration and invitations to events. I can unsubscribe at any time.'**
String get email_subtitle;
/// No description provided for @push_subtitle.
///
/// In en, this message translates to:
/// **'Yes, I would like to receive push notifications with news, inspiration and invitations to events. I can unsubscribe at any time.'**
String get push_subtitle;
/// No description provided for @update_profile.
///
/// In en, this message translates to:
/// **'Update profile'**
String get update_profile;
/// No description provided for @profile_settings_invalid_date.
///
/// In en, this message translates to:
/// **'Invalid date'**
String get profile_settings_invalid_date;
/// No description provided for @gender.
///
/// In en, this message translates to:
/// **'Sex'**
String get gender;
/// No description provided for @comwell_club_dialog_title.
///
/// In en, this message translates to:
/// **'Become a member'**
String get comwell_club_dialog_title;
/// No description provided for @comwell_club_dialog_description.
///
/// In en, this message translates to:
/// **'Enter the following information to become a member of Comwell Club'**
String get comwell_club_dialog_description;
/// No description provided for @postal_code.
///
/// In en, this message translates to:
/// **'Postal code'**
String get postal_code;
/// No description provided for @male.
///
/// In en, this message translates to:
/// **'Man'**
String get male;
/// No description provided for @female.
///
/// In en, this message translates to:
/// **'Woman'**
String get female;
/// No description provided for @not_specified.
///
/// In en, this message translates to:
/// **'Not specified'**
String get not_specified;
/// No description provided for @tos_accept.
///
/// In en, this message translates to:
/// **'Accept'**
String get tos_accept;
/// No description provided for @tos_accept_link.
///
/// In en, this message translates to:
/// **'Comwell Club rules and conditions'**
String get tos_accept_link;
/// No description provided for @newsletter_accept.
///
/// In en, this message translates to:
/// **'Yes, I would like to be updated on current member offers, Comwell Club surprises and other recommendations tailored to me. I can unsubscribe at any time.'**
String get newsletter_accept;
/// No description provided for @read_more.
///
/// In en, this message translates to:
/// **'Read more'**
String get read_more;
/// No description provided for @read_less.
///
/// In en, this message translates to:
/// **'Read less'**
String get read_less;
/// No description provided for @comwell_club_inactive.
///
/// In en, this message translates to:
/// **'Inactive'**
String get comwell_club_inactive;
/// No description provided for @points.
///
/// In en, this message translates to:
/// **'Point'**
String get points;
/// No description provided for @my_balance.
///
/// In en, this message translates to:
/// **'My balance'**
String get my_balance;
/// No description provided for @cancel_booking.
///
/// In en, this message translates to:
/// **'Cancel stay'**
String get cancel_booking;
/// No description provided for @cancellation_policy.
///
/// In en, this message translates to:
/// **'Cancellation conditions'**
String get cancellation_policy;
/// No description provided for @cancellation_policy_description.
///
/// In en, this message translates to:
/// **'This stay can be cancelled free of charge until 12.11.2024 at 15:00 on the day of arrival. If cancelled later than 14.01, the first night will be invoiced.'**
String get cancellation_policy_description;
/// No description provided for @payment_date.
///
/// In en, this message translates to:
/// **'Payment date'**
String get payment_date;
/// No description provided for @not_shared.
///
/// In en, this message translates to:
/// **'Not shared'**
String get not_shared;
/// No description provided for @share_booking.
///
/// In en, this message translates to:
/// **'Share stay'**
String get share_booking;
/// No description provided for @total_charge.
///
/// In en, this message translates to:
/// **'Total for payment'**
String get total_charge;
/// No description provided for @early_checkin.
///
/// In en, this message translates to:
/// **'Early check-in'**
String get early_checkin;
/// No description provided for @paid.
///
/// In en, this message translates to:
/// **'PAID'**
String get paid;
/// No description provided for @restaurant.
///
/// In en, this message translates to:
/// **'Restaurant'**
String get restaurant;
/// No description provided for @spa.
///
/// In en, this message translates to:
/// **'Spa'**
String get spa;
/// No description provided for @parking.
///
/// In en, this message translates to:
/// **'Parking'**
String get parking;
/// No description provided for @go_to_payment.
///
/// In en, this message translates to:
/// **'Go to payment'**
String get go_to_payment;
/// No description provided for @room_prefix.
///
/// In en, this message translates to:
/// **'Room {roomNumber}'**
String room_prefix(Object roomNumber);
/// No description provided for @total_charge_value.
///
/// In en, this message translates to:
/// **'{amount} kr.'**
String total_charge_value(Object amount);
/// No description provided for @generic_error_profile_page.
///
/// In en, this message translates to:
/// **'An error occurred. Please try again later. Or log out and try again.'**
String get generic_error_profile_page;
/// No description provided for @profile_error_name.
///
/// In en, this message translates to:
/// **'Error loading profile information'**
String get profile_error_name;
/// No description provided for @error.
///
/// In en, this message translates to:
/// **'Error'**
String get error;
/// No description provided for @error_logout.
///
/// In en, this message translates to:
/// **'An error occurred.'**
String get error_logout;
/// No description provided for @error_logout_subtitle.
///
/// In en, this message translates to:
/// **'You have been logged out. Please log in again.'**
String get error_logout_subtitle;
/// No description provided for @edit.
///
/// In en, this message translates to:
/// **'Edit'**
String get edit;
/// No description provided for @error_cards.
///
/// In en, this message translates to:
/// **'Error loading map, please try again later.'**
String get error_cards;
/// No description provided for @check_in_button_timer_days_hours_minutes.
///
/// In en, this message translates to:
/// **'In {d} days, {h} hours and {m} minutes'**
String check_in_button_timer_days_hours_minutes(Object d, Object h, Object m);
/// No description provided for @check_in_button_timer_hours_minutes.
///
/// In en, this message translates to:
/// **'In {h} hours and {m} minutes'**
String check_in_button_timer_hours_minutes(Object h, Object m);
/// No description provided for @check_in_button_timer_minutes.
///
/// In en, this message translates to:
/// **'In {m} minutes'**
String check_in_button_timer_minutes(Object m);
/// No description provided for @check_in_button_timer_seconds.
///
/// In en, this message translates to:
/// **'In {s} seconds'**
String check_in_button_timer_seconds(Object s);
/// No description provided for @approve_conditions_title.
///
/// In en, this message translates to:
/// **'I accept'**
String get approve_conditions_title;
/// No description provided for @approve_conditions_subtitle.
///
/// In en, this message translates to:
/// **'the conditions'**
String get approve_conditions_subtitle;
/// No description provided for @up_sales_title.
///
/// In en, this message translates to:
/// **'Early check-in'**
String get up_sales_title;
/// No description provided for @up_sales_subtitle.
///
/// In en, this message translates to:
/// **'With early check-in, you can check in at 1:00 PM instead of 3:00 PM.'**
String get up_sales_subtitle;
/// No description provided for @up_sales_popular.
///
/// In en, this message translates to:
/// **'POPULAR'**
String get up_sales_popular;
/// No description provided for @services.
///
/// In en, this message translates to:
/// **'Services'**
String get services;
/// No description provided for @up_sales_see_all.
///
/// In en, this message translates to:
/// **'See all'**
String get up_sales_see_all;
/// No description provided for @up_sales_catalog_button_title.
///
/// In en, this message translates to:
/// **'See product catalog'**
String get up_sales_catalog_button_title;
/// No description provided for @up_sales_catalog_button_subtitle.
///
/// In en, this message translates to:
/// **'Here you can view and order products and have them automatically added to your room bill.'**
String get up_sales_catalog_button_subtitle;
/// No description provided for @up_sales_catalog_title.
///
/// In en, this message translates to:
/// **'Purchase options'**
String get up_sales_catalog_title;
/// No description provided for @room_upgrades.
///
/// In en, this message translates to:
/// **'Room upgrades'**
String get room_upgrades;
/// No description provided for @other_up_sales.
///
/// In en, this message translates to:
/// **'Other purchases'**
String get other_up_sales;
/// No description provided for @read_more_up_sales.
///
/// In en, this message translates to:
/// **'Read more'**
String get read_more_up_sales;
/// No description provided for @continue_without_up_sales.
///
/// In en, this message translates to:
/// **'Continue without purchase'**
String get continue_without_up_sales;
/// No description provided for @open_maps_error_title.
///
/// In en, this message translates to:
/// **'Can\'t open map'**
String get open_maps_error_title;
/// No description provided for @open_maps_error_subtitle.
///
/// In en, this message translates to:
/// **'No map program is available.'**
String get open_maps_error_subtitle;
/// No description provided for @apple_maps.
///
/// In en, this message translates to:
/// **'Apple Card'**
String get apple_maps;
/// No description provided for @google_maps.
///
/// In en, this message translates to:
/// **'Google Maps'**
String get google_maps;
/// No description provided for @add_to_booking.
///
/// In en, this message translates to:
/// **'Add to booking'**
String get add_to_booking;
/// No description provided for @see_all_facilities.
///
/// In en, this message translates to:
/// **'See all facilities'**
String get see_all_facilities;
/// No description provided for @remove_from_booking.
///
/// In en, this message translates to:
/// **'Remove from booking'**
String get remove_from_booking;
/// No description provided for @no_services_available.
///
/// In en, this message translates to:
/// **'No services available'**
String get no_services_available;
/// No description provided for @no_room_upgrades_available.
///
/// In en, this message translates to:
/// **'No room upgrades available'**
String get no_room_upgrades_available;
/// No description provided for @confirm_up_sales_dialog_title.
///
/// In en, this message translates to:
/// **'Confirm purchase'**
String get confirm_up_sales_dialog_title;
/// No description provided for @confirm_up_sales_dialog_subtitle.
///
/// In en, this message translates to:
/// **'Are you sure you want to add these {amount} DKK extras to your booking?'**
String confirm_up_sales_dialog_subtitle(Object amount);
/// No description provided for @confirm_up_sales_dialog_confirm.
///
/// In en, this message translates to:
/// **'Yes, add additional purchases'**
String get confirm_up_sales_dialog_confirm;
/// No description provided for @confirm_up_sales_dialog_cancel.
///
/// In en, this message translates to:
/// **'No'**
String get confirm_up_sales_dialog_cancel;
/// No description provided for @email_launch_error.
///
/// In en, this message translates to:
/// **'Could not open email client'**
String get email_launch_error;
/// No description provided for @phone_launch_error.
///
/// In en, this message translates to:
/// **'Could not open phone'**
String get phone_launch_error;
/// No description provided for @balance.
///
/// In en, this message translates to:
/// **'BALANCE'**
String get balance;
/// No description provided for @new_booking.
///
/// In en, this message translates to:
/// **'Book a new stay'**
String get new_booking;
/// No description provided for @error_opening_website.
///
/// In en, this message translates to:
/// **'Could not open the website. Please try again later.'**
String get error_opening_website;
/// No description provided for @error_opening_website_title.
///
/// In en, this message translates to:
/// **'Error'**
String get error_opening_website_title;
/// No description provided for @room_selection.
///
/// In en, this message translates to:
/// **'Select room'**
String get room_selection;
/// No description provided for @room_selection_subtitle.
///
/// In en, this message translates to:
/// **'Allocate guests to the rooms you have booked'**
String get room_selection_subtitle;
/// No description provided for @choose_room.
///
/// In en, this message translates to:
/// **'Allocate rooms'**
String get choose_room;
/// No description provided for @choose_room_subtitle.
///
/// In en, this message translates to:
/// **'You must first choose your own room. Then you can assign the other rooms.'**
String get choose_room_subtitle;
/// No description provided for @check_in_date.
///
/// In en, this message translates to:
/// **'Check-in date'**
String get check_in_date;
/// No description provided for @check_out_date.
///
/// In en, this message translates to:
/// **'Check-out date'**
String get check_out_date;
/// No description provided for @confirmation_number.
///
/// In en, this message translates to:
/// **'Confirmation number'**
String get confirmation_number;
/// No description provided for @close.
///
/// In en, this message translates to:
/// **'Close'**
String get close;
/// No description provided for @choose_room_confirmation_title.
///
/// In en, this message translates to:
/// **'Are you sure you want to choose this room?'**
String get choose_room_confirmation_title;
/// No description provided for @choose_room_confirmation_subtitle.
///
/// In en, this message translates to:
/// **'You cannot undo your choice.'**
String get choose_room_confirmation_subtitle;
/// No description provided for @choose_room_confirmation_confirm.
///
/// In en, this message translates to:
/// **'Yes, select room'**
String get choose_room_confirmation_confirm;
/// No description provided for @choose_room_confirmation_cancel.
///
/// In en, this message translates to:
/// **'No'**
String get choose_room_confirmation_cancel;
/// No description provided for @my_room.
///
/// In en, this message translates to:
/// **'My room'**
String get my_room;
/// No description provided for @share_room.
///
/// In en, this message translates to:
/// **'Share room'**
String get share_room;
/// No description provided for @share_room_page_title.
///
/// In en, this message translates to:
/// **'Share room'**
String get share_room_page_title;
/// No description provided for @share_room_page_subtitle.
///
/// In en, this message translates to:
/// **'Here you can share your room with another guest and give them access to booking information, key cards and Concierge'**
String get share_room_page_subtitle;
/// No description provided for @share_room_page_button.
///
/// In en, this message translates to:
/// **'Share your room'**
String get share_room_page_button;
/// No description provided for @addon.
///
/// In en, this message translates to:
/// **'Additional purchases'**
String get addon;
/// No description provided for @added_to_room.
///
/// In en, this message translates to:
/// **'Purchased in room'**
String get added_to_room;
/// No description provided for @force_update_title.
///
/// In en, this message translates to:
/// **'Update to use the app'**
String get force_update_title;
/// No description provided for @force_update_description.
///
/// In en, this message translates to:
/// **'There is a required update to the app that requires you to update in order to continue.'**
String get force_update_description;
/// No description provided for @force_update_button.
///
/// In en, this message translates to:
/// **'Go to the App Store'**
String get force_update_button;
/// No description provided for @invalid_birthday.
///
/// In en, this message translates to:
/// **'Invalid birthday'**
String get invalid_birthday;
/// No description provided for @invalid_birthday_description.
///
/// In en, this message translates to:
/// **'Your saved birthday is not allowed. Please choose a new date.'**
String get invalid_birthday_description;
/// No description provided for @up_sales_confirmation_title.
///
/// In en, this message translates to:
/// **'Payment summary'**
String get up_sales_confirmation_title;
/// No description provided for @up_sales_confirmation_no_up_sales.
///
/// In en, this message translates to:
/// **'No options selected.'**
String get up_sales_confirmation_no_up_sales;
/// No description provided for @facilities.
///
/// In en, this message translates to:
/// **'Facilities'**
String get facilities;
/// No description provided for @remove.
///
/// In en, this message translates to:
/// **'Remote'**
String get remove;
/// No description provided for @up_sales_processing_error_title.
///
/// In en, this message translates to:
/// **'Could not add add-ons'**
String get up_sales_processing_error_title;
/// No description provided for @up_sales_processing_error_subtitle.
///
/// In en, this message translates to:
/// **'Upgrades are not working at the moment. Please try again later.'**
String get up_sales_processing_error_subtitle;
/// No description provided for @pay_bill.
///
/// In en, this message translates to:
/// **'Pay bill'**
String get pay_bill;
/// No description provided for @discount.
///
/// In en, this message translates to:
/// **'Comwell Club Point Discount'**
String get discount;
/// No description provided for @error_preregistration.
///
/// In en, this message translates to:
/// **'Could not preregister, go to reception'**
String get error_preregistration;
/// No description provided for @get_keys.
///
/// In en, this message translates to:
/// **'Get digital key'**
String get get_keys;
/// No description provided for @get_keys_subtitle.
///
/// In en, this message translates to:
/// **'Get your digital key card immediately'**
String get get_keys_subtitle;
/// No description provided for @add_card.
///
/// In en, this message translates to:
/// **'Add map'**
String get add_card;
/// No description provided for @total.
///
/// In en, this message translates to:
/// **'Total'**
String get total;
/// No description provided for @profile_error_title.
///
/// In en, this message translates to:
/// **'Could not load your profile.'**
String get profile_error_title;
/// No description provided for @profile_error_subtitle.
///
/// In en, this message translates to:
/// **'An error has occurred. Please try again later.'**
String get profile_error_subtitle;
/// No description provided for @generic_error_title.
///
/// In en, this message translates to:
/// **'An error has occurred.'**
String get generic_error_title;
/// No description provided for @notifications_error_subtitle.
///
/// In en, this message translates to:
/// **'Notifications cannot be retrieved at this time. Please try again later.'**
String get notifications_error_subtitle;
/// No description provided for @payment_cards_error_subtitle.
///
/// In en, this message translates to:
/// **'Your payment cards cannot be retrieved at this time. Please try again later.'**
String get payment_cards_error_subtitle;
/// No description provided for @hotel_information_error_subtitle.
///
/// In en, this message translates to:
/// **'The hotel information cannot be retrieved at this time. Please try again later.'**
String get hotel_information_error_subtitle;
/// No description provided for @overview_error_title.
///
/// In en, this message translates to:
/// **'Could not load your bookings.'**
String get overview_error_title;
/// No description provided for @overview_error_subtitle.
///
/// In en, this message translates to:
/// **'An error occurred. We were unable to load your bookings. Please try again later.'**
String get overview_error_subtitle;
/// No description provided for @up_sales_error_title.
///
/// In en, this message translates to:
/// **'Add-on purchases are currently unavailable.'**
String get up_sales_error_title;
/// No description provided for @up_sales_error_subtitle.
///
/// In en, this message translates to:
/// **'An error has occurred. Please try again later.'**
String get up_sales_error_subtitle;
/// No description provided for @choose_room_error_title.
///
/// In en, this message translates to:
/// **'Could not choose room'**
String get choose_room_error_title;
/// No description provided for @choose_room_error_subtitle.
///
/// In en, this message translates to:
/// **'An error has occurred. Please try again later or go to the front desk.'**
String get choose_room_error_subtitle;
/// No description provided for @share_booking_error_title.
///
/// In en, this message translates to:
/// **'Could not find the guests in the room'**
String get share_booking_error_title;
/// No description provided for @share_booking_error_subtitle.
///
/// In en, this message translates to:
/// **'An error has occurred. Please try again later.'**
String get share_booking_error_subtitle;
/// No description provided for @refresh_bookings.
///
/// In en, this message translates to:
/// **'Update bookings'**
String get refresh_bookings;
/// No description provided for @document_type.
///
/// In en, this message translates to:
/// **'Document type'**
String get document_type;
/// No description provided for @document_type_passport.
///
/// In en, this message translates to:
/// **'Passport'**
String get document_type_passport;
/// No description provided for @document_type_id_card.
///
/// In en, this message translates to:
/// **'ID card'**
String get document_type_id_card;
/// No description provided for @document_type_driver_license.
///
/// In en, this message translates to:
/// **'Driving license'**
String get document_type_driver_license;
/// No description provided for @document_type_other.
///
/// In en, this message translates to:
/// **'Other'**
String get document_type_other;
/// No description provided for @document_number.
///
/// In en, this message translates to:
/// **'Document number'**
String get document_number;
/// No description provided for @up_sales_catalog_no_up_sales_title.
///
/// In en, this message translates to:
/// **'No options available'**
String get up_sales_catalog_no_up_sales_title;
/// No description provided for @up_sales_catalog_no_up_sales_subtitle.
///
/// In en, this message translates to:
/// **'There are no options available at this time. Please try again later.'**
String get up_sales_catalog_no_up_sales_subtitle;
/// No description provided for @payment_cards_missing_payment_method_title.
///
/// In en, this message translates to:
/// **'Missing payment method'**
String get payment_cards_missing_payment_method_title;
/// No description provided for @payment_cards_missing_payment_method_subtitle.
///
/// In en, this message translates to:
/// **'Please select a payment method to continue.'**
String get payment_cards_missing_payment_method_subtitle;
/// No description provided for @share_booking_page_error_title.
///
/// In en, this message translates to:
/// **'Error'**
String get share_booking_page_error_title;
/// No description provided for @share_booking_page_error_subtitle.
///
/// In en, this message translates to:
/// **'This booking has already been shared.'**
String get share_booking_page_error_subtitle;
/// No description provided for @share_booking_message.
///
/// In en, this message translates to:
/// **'{name} would like to share a stay with you at Comwell {hotel}. Access via the link: {url}'**
String share_booking_message(Object hotel, Object name, Object url);
/// No description provided for @check_in_page_error_title.
///
/// In en, this message translates to:
/// **'Room not found'**
String get check_in_page_error_title;
/// No description provided for @check_in_page_error_subtitle.
///
/// In en, this message translates to:
/// **'We could not find your room. Please contact the reception.'**
String get check_in_page_error_subtitle;
/// No description provided for @remove_guest_overview.
///
/// In en, this message translates to:
/// **'Remote'**
String get remove_guest_overview;
/// No description provided for @home_page.
///
/// In en, this message translates to:
/// **'Home'**
String get home_page;
/// No description provided for @send_to_email.
///
/// In en, this message translates to:
/// **'Send to email'**
String get send_to_email;
/// No description provided for @download_bill.
///
/// In en, this message translates to:
/// **'Get a receipt sent to you'**
String get download_bill;
/// No description provided for @bill_email_placeholder.
///
/// In en, this message translates to:
/// **'Email'**
String get bill_email_placeholder;
/// No description provided for @payment_overview_send_receipt_title.
///
/// In en, this message translates to:
/// **'Receipt via email'**
String get payment_overview_send_receipt_title;
/// No description provided for @payment_overview_send_receipt_subtitle.
///
/// In en, this message translates to:
/// **'Sent to {name}'**
String payment_overview_send_receipt_subtitle(Object name);
/// No description provided for @payment_overview_send_comment_title.
///
/// In en, this message translates to:
/// **'Comment'**
String get payment_overview_send_comment_title;
/// No description provided for @payment_overview_send_receipt_hint.
///
/// In en, this message translates to:
/// **'Insert comment'**
String get payment_overview_send_receipt_hint;
/// No description provided for @key_page_room_prefix.
///
/// In en, this message translates to:
/// **'Room {roomNumber}'**
String key_page_room_prefix(Object roomNumber);
/// No description provided for @please_accept_terms.
///
/// In en, this message translates to:
/// **'Accept the terms'**
String get please_accept_terms;
/// No description provided for @received_shared_room_page_subtitle.
///
/// In en, this message translates to:
/// **'text {name}'**
String received_shared_room_page_subtitle(Object name);
/// No description provided for @received_shared_room_page_title.
///
/// In en, this message translates to:
/// **''**
String get received_shared_room_page_title;
/// No description provided for @received_shared_booking_page_title.
///
/// In en, this message translates to:
/// **''**
String get received_shared_booking_page_title;
/// No description provided for @received_shared_booking_page_subtitle.
///
/// In en, this message translates to:
/// **'text {name}'**
String received_shared_booking_page_subtitle(Object name);
/// No description provided for @accept_notifications.
///
/// In en, this message translates to:
/// **'Allow notifications'**
String get accept_notifications;
/// No description provided for @accept_notifications_rationale.
///
/// In en, this message translates to:
/// **'To get the latest updates about your booking, please allow notifications.'**
String get accept_notifications_rationale;
/// No description provided for @allow.
///
/// In en, this message translates to:
/// **'Allow'**
String get allow;
/// No description provided for @skip.
///
/// In en, this message translates to:
/// **'Skip'**
String get skip;
/// No description provided for @internet_disabled.
///
/// In en, this message translates to:
/// **'The internet is down.'**
String get internet_disabled;
/// No description provided for @please_enable_internet.
///
/// In en, this message translates to:
/// **'Please check your internet connection.'**
String get please_enable_internet;
/// No description provided for @bluetooth_disabled.
///
/// In en, this message translates to:
/// **'Bluetooth is disabled.'**
String get bluetooth_disabled;
/// No description provided for @please_enable_bluetooth.
///
/// In en, this message translates to:
/// **'Activate Bluetooth'**
String get please_enable_bluetooth;
/// No description provided for @allow_usage_tracking.
///
/// In en, this message translates to:
/// **'Allow usage tracking'**
String get allow_usage_tracking;
/// No description provided for @usage_tracking_rationale.
///
/// In en, this message translates to:
/// **'Please allow tracking of how you use the app'**
String get usage_tracking_rationale;
/// No description provided for @share_room_subtitle_mvp.
///
/// In en, this message translates to:
/// **'We are currently working on making it possible to delegate rooms here in the app.'**
String get share_room_subtitle_mvp;
/// No description provided for @subtitle_mvp.
///
/// In en, this message translates to:
/// **'Unfortunately, for now we can only help you through our customer service. Please call us and we will find a solution.'**
String get subtitle_mvp;
/// No description provided for @find_booking_subtitle_mvp.
///
/// In en, this message translates to:
/// **'We are currently working on making it possible to find your booking digitally here in the app.'**
String get find_booking_subtitle_mvp;
/// No description provided for @bluetooth_permission_title.
///
/// In en, this message translates to:
/// **'Allow Bluetooth to unlock your room'**
String get bluetooth_permission_title;
/// No description provided for @bluetooth_permission_description.
///
/// In en, this message translates to:
/// **'In order to open the door to your hotel room, you must give us permission to use Bluetooth on your phone.'**
String get bluetooth_permission_description;
/// No description provided for @allow_bluetooth.
///
/// In en, this message translates to:
/// **'Allow Bluetooth'**
String get allow_bluetooth;
/// No description provided for @permissions.
///
/// In en, this message translates to:
/// **'Permissions'**
String get permissions;
/// No description provided for @buy_early_checkin.
///
/// In en, this message translates to:
/// **'Buy early check-in'**
String get buy_early_checkin;
/// No description provided for @preregistration_serving_time_label.
///
/// In en, this message translates to:
/// **'Desired serving time for additional purchases'**
String get preregistration_serving_time_label;
/// No description provided for @preregistration_comment_label.
///
/// In en, this message translates to:
/// **'Comment'**
String get preregistration_comment_label;
/// No description provided for @preregistration_comment_hint.
///
/// In en, this message translates to:
/// **'Please insert any comment.'**
String get preregistration_comment_hint;
/// No description provided for @preregistration_accept_terms_prefix.
///
/// In en, this message translates to:
/// **'I accept Comwell\'s'**
String get preregistration_accept_terms_prefix;
/// No description provided for @preregistration_accept_terms_privacy_policy.
///
/// In en, this message translates to:
/// **'personal data policy'**
String get preregistration_accept_terms_privacy_policy;
/// No description provided for @preregistration_accept_terms_and.
///
/// In en, this message translates to:
/// **'and'**
String get preregistration_accept_terms_and;
/// No description provided for @preregistration_accept_terms_trade_conditions.
///
/// In en, this message translates to:
/// **'terms of trade'**
String get preregistration_accept_terms_trade_conditions;
/// No description provided for @check_in_button_timer_days_minutes.
///
/// In en, this message translates to:
/// **'In {d} days and {m} minutes'**
String check_in_button_timer_days_minutes(Object d, Object m);
/// No description provided for @check_in_page_payment_payment_title.
///
/// In en, this message translates to:
/// **'Pay and check in'**
String get check_in_page_payment_payment_title;
/// No description provided for @pickup.
///
/// In en, this message translates to:
/// **'Pick up'**
String get pickup;
/// No description provided for @delivery.
///
/// In en, this message translates to:
/// **'Delivery'**
String get delivery;
/// No description provided for @order_overview.
///
/// In en, this message translates to:
/// **'Order overview'**
String get order_overview;
/// No description provided for @confirm_order.
///
/// In en, this message translates to:
/// **'Confirm order'**
String get confirm_order;
/// No description provided for @comment_to_order.
///
/// In en, this message translates to:
/// **'Comment to order'**
String get comment_to_order;
/// No description provided for @charge_to_room.
///
/// In en, this message translates to:
/// **'Charge to room and earn points'**
String get charge_to_room;
/// No description provided for @you_will_pay_at_checkout.
///
/// In en, this message translates to:
/// **'You will pay at checkout'**
String get you_will_pay_at_checkout;
/// No description provided for @pay_now.
///
/// In en, this message translates to:
/// **'Pay now'**
String get pay_now;
/// No description provided for @select_payment_method_next_step.
///
/// In en, this message translates to:
/// **'Select payment method in the next step'**
String get select_payment_method_next_step;
/// No description provided for @there_are_no_products_in_this_area.
///
/// In en, this message translates to:
/// **'There are no products in this area'**
String get there_are_no_products_in_this_area;
/// No description provided for @my_order.
///
/// In en, this message translates to:
/// **'My order'**
String get my_order;
/// No description provided for @products.
///
/// In en, this message translates to:
/// **'products'**
String get products;
/// No description provided for @product.
///
/// In en, this message translates to:
/// **'product'**
String get product;
/// No description provided for @update_order.
///
/// In en, this message translates to:
/// **'Update order'**
String get update_order;
/// No description provided for @add_to_order.
///
/// In en, this message translates to:
/// **'Add to order'**
String get add_to_order;
/// No description provided for @provide_location.
///
/// In en, this message translates to:
/// **'Provide location'**
String get provide_location;
/// No description provided for @deliver_to_room.
///
/// In en, this message translates to:
/// **'Deliver to room'**
String get deliver_to_room;
/// No description provided for @room.
///
/// In en, this message translates to:
/// **'Room'**
String get room;
/// No description provided for @deliver_to_area.
///
/// In en, this message translates to:
/// **'Deliver to location'**
String get deliver_to_area;
/// No description provided for @provide_location_code.
///
/// In en, this message translates to:
/// **'Provide location code'**
String get provide_location_code;
/// No description provided for @contact_comwell_for_changes.
///
/// In en, this message translates to:
/// **'Call Comwell for changes at 42 43 44 45'**
String get contact_comwell_for_changes;
/// No description provided for @go_to_front_page.
///
/// In en, this message translates to:
/// **'Go to front page'**
String get go_to_front_page;
/// No description provided for @order_to_room.
///
/// In en, this message translates to:
/// **'Order to room'**
String get order_to_room;
/// No description provided for @order_status.
///
/// In en, this message translates to:
/// **'Order status'**
String get order_status;
/// No description provided for @your_order_is_being_delivered.
///
/// In en, this message translates to:
/// **'Your order is being delivered'**
String get your_order_is_being_delivered;
/// No description provided for @your_order_is_ready.
///
/// In en, this message translates to:
/// **'Your order is ready'**
String get your_order_is_ready;
/// No description provided for @your_order.
///
/// In en, this message translates to:
/// **'Your order'**
String get your_order;
/// No description provided for @asap.
///
/// In en, this message translates to:
/// **'As soon as possible'**
String get asap;
/// No description provided for @no_products_in_cart.
///
/// In en, this message translates to:
/// **'You have no products in your cart'**
String get no_products_in_cart;
/// No description provided for @confirm_location.
///
/// In en, this message translates to:
/// **'Confirm location'**
String get confirm_location;
}
class _AppLocalizationsDelegate
extends LocalizationsDelegate<AppLocalizations> {
const _AppLocalizationsDelegate();
@override
Future<AppLocalizations> load(Locale locale) {
return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
}
@override
bool isSupported(Locale locale) =>
<String>['da', 'en'].contains(locale.languageCode);
@override
bool shouldReload(_AppLocalizationsDelegate old) => false;
}
AppLocalizations lookupAppLocalizations(Locale locale) {
// Lookup logic when only language code is specified.
switch (locale.languageCode) {
case 'da':
return AppLocalizationsDa();
case 'en':
return AppLocalizationsEn();
}
throw FlutterError(
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.',
);
}