Merged in feat/lokalise-rebuild (pull request #2993)
Feat/lokalise rebuild * chore(lokalise): update translation ids * chore(lokalise): easier to switch between projects * chore(lokalise): update translation ids * . * . * . * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * chore(lokalise): new translations * merge * switch to errors for missing id's * merge * sync translations Approved-by: Linus Flood
This commit is contained in:
@@ -40,7 +40,10 @@ export default function BreakfastAccordionItem({
|
||||
|
||||
return (
|
||||
<AccordionItem
|
||||
title={intl.formatMessage({ defaultMessage: "Breakfast" })}
|
||||
title={intl.formatMessage({
|
||||
id: "common.breakfast",
|
||||
defaultMessage: "Breakfast",
|
||||
})}
|
||||
iconName={IconName.CoffeeAlt}
|
||||
type="sidepeek"
|
||||
className={styles.accordionItem}
|
||||
@@ -50,11 +53,19 @@ export default function BreakfastAccordionItem({
|
||||
<OpeningHours
|
||||
openingHours={openingHours.openingHours}
|
||||
alternateOpeningHours={openingHours.alternateOpeningHours}
|
||||
heading={intl.formatMessage({ defaultMessage: "Opening hours" })}
|
||||
heading={intl.formatMessage({
|
||||
id: "common.openingHours",
|
||||
defaultMessage: "Opening hours",
|
||||
})}
|
||||
/>
|
||||
) : (
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>{intl.formatMessage({ defaultMessage: "All-day breakfast" })}</p>
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "breakfastAccordion.allDayBreakfast",
|
||||
defaultMessage: "All-day breakfast",
|
||||
})}
|
||||
</p>
|
||||
</Typography>
|
||||
)}
|
||||
</AccordionItem>
|
||||
|
||||
@@ -25,7 +25,10 @@ export default function CheckInCheckOutAccordionItem({
|
||||
|
||||
return (
|
||||
<AccordionItem
|
||||
title={intl.formatMessage({ defaultMessage: "Check-in/Check-out" })}
|
||||
title={intl.formatMessage({
|
||||
id: "sidepeek.checkin/checkout",
|
||||
defaultMessage: "Check-in/Check-out",
|
||||
})}
|
||||
iconName={IconName.Business}
|
||||
type="sidepeek"
|
||||
className={styles.accordionItem}
|
||||
@@ -34,7 +37,10 @@ export default function CheckInCheckOutAccordionItem({
|
||||
<div className={styles.checkInCheckOutContent}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<h4 className={styles.subheading}>
|
||||
{intl.formatMessage({ defaultMessage: "Hours" })}
|
||||
{intl.formatMessage({
|
||||
id: "sidepeek.checkin/checkout.hours",
|
||||
defaultMessage: "Hours",
|
||||
})}
|
||||
</h4>
|
||||
</Typography>
|
||||
<Divider />
|
||||
@@ -42,7 +48,10 @@ export default function CheckInCheckOutAccordionItem({
|
||||
<div>
|
||||
<p>
|
||||
{intl.formatMessage(
|
||||
{ defaultMessage: "Check in from: {checkInTime}" },
|
||||
{
|
||||
id: "sidepeek.checkin/checkout.checkInFrom",
|
||||
defaultMessage: "Check in from: {checkInTime}",
|
||||
},
|
||||
{
|
||||
checkInTime,
|
||||
}
|
||||
@@ -50,7 +59,10 @@ export default function CheckInCheckOutAccordionItem({
|
||||
</p>
|
||||
<p>
|
||||
{intl.formatMessage(
|
||||
{ defaultMessage: "Check out at latest: {checkOutTime}" },
|
||||
{
|
||||
id: "sidepeek.checkin/checkout.checkOutAtLatest",
|
||||
defaultMessage: "Check out at latest: {checkOutTime}",
|
||||
},
|
||||
{
|
||||
checkOutTime,
|
||||
}
|
||||
|
||||
@@ -33,6 +33,7 @@ export default function ParkingAccordionItem({
|
||||
return (
|
||||
<AccordionItem
|
||||
title={intl.formatMessage({
|
||||
id: "common.parking",
|
||||
defaultMessage: "Parking",
|
||||
})}
|
||||
iconName={IconName.Parking}
|
||||
@@ -58,6 +59,7 @@ export default function ParkingAccordionItem({
|
||||
typography="Body/Paragraph/mdBold"
|
||||
>
|
||||
{intl.formatMessage({
|
||||
id: "sideepek.parking.aboutParking",
|
||||
defaultMessage: "About parking",
|
||||
})}
|
||||
</ButtonLink>
|
||||
|
||||
Reference in New Issue
Block a user