Merged in feat/fix-translations (pull request #1244)

Feat: Fix translations for localize

* fix: POI translations

* fix: update translations


Approved-by: Michael Zetterberg
Approved-by: Erik Tiekstra
This commit is contained in:
Matilda Landström
2025-02-06 12:14:40 +00:00
parent 87820a6f2d
commit 3690b0a29a
11 changed files with 123 additions and 51 deletions

View File

@@ -47,7 +47,7 @@ export enum RestaurantHeadings {
restaurantAndBar = "Restaurant & Bar",
bar = "Bar",
restaurant = "Restaurant",
breakfastRestaurant = "Breakfast restaurant",
breakfastRestaurant = "Breakfast Restaurant",
}
export enum WellnessHeadings {
@@ -57,11 +57,26 @@ export enum WellnessHeadings {
GymJacuzziSaunaRelax = "Gym, Jacuzzi, Sauna & Relax",
}
export enum MeetingsHeading {
Default = "Events that make an impression",
}
export type HeadingEnum =
| RestaurantHeadings
| WellnessHeadings
| MeetingsHeading
export enum HealthFacilitiesEnum {
Jacuzzi = "Jacuzzi",
Gym = "Gym",
Sauna = "Sauna",
Relax = "Relax",
IndoorPool = "IndoorPool",
OutdoorPool = "OutdoorPool",
IndoorPool = "Indoor pool",
OutdoorPool = "Outdoor pool",
}
export const FacilityCardButtonText = {
RESTAURANT: "Read more & book a table",
MEETINGS: "About meetings & conferences",
WELLNESS: "Read more about wellness & exercise",
} as const