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:
@@ -42,13 +42,19 @@ export default function ParkingInformation({
|
||||
<div className={styles.prices}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<h5 className={styles.heading}>
|
||||
{intl.formatMessage({ defaultMessage: 'Prices' })}
|
||||
{intl.formatMessage({
|
||||
id: 'parkingInformation.prices',
|
||||
defaultMessage: 'Prices',
|
||||
})}
|
||||
</h5>
|
||||
</Typography>
|
||||
<div className={styles.priceWrapper}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<h6 className={styles.priceHeading}>
|
||||
{intl.formatMessage({ defaultMessage: 'Weekday prices' })}
|
||||
{intl.formatMessage({
|
||||
id: 'parkingInformation.weekdayPrices',
|
||||
defaultMessage: 'Weekday prices',
|
||||
})}
|
||||
</h6>
|
||||
</Typography>
|
||||
<Divider />
|
||||
@@ -63,7 +69,10 @@ export default function ParkingInformation({
|
||||
<div className={styles.priceWrapper}>
|
||||
<Typography variant="Title/Overline/sm">
|
||||
<h6 className={styles.priceHeading}>
|
||||
{intl.formatMessage({ defaultMessage: 'Weekend prices' })}
|
||||
{intl.formatMessage({
|
||||
id: 'parkingInformation.weekendPrices',
|
||||
defaultMessage: 'Weekend prices',
|
||||
})}
|
||||
</h6>
|
||||
</Typography>
|
||||
<Divider />
|
||||
@@ -82,7 +91,10 @@ export default function ParkingInformation({
|
||||
href={parking.externalParkingUrl}
|
||||
target="_blank"
|
||||
>
|
||||
{intl.formatMessage({ defaultMessage: 'Book parking' })}
|
||||
{intl.formatMessage({
|
||||
id: 'parkingInformation.bookParking',
|
||||
defaultMessage: 'Book parking',
|
||||
})}
|
||||
<MaterialIcon icon="open_in_new" color="CurrentColor" />
|
||||
</ButtonLink>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user