Merged in fix/label-sync (pull request #2163)

fix: english label sync

* fix: english label sync

* fix: sync from Lokalise


Approved-by: Linus Flood
This commit is contained in:
Michael Zetterberg
2025-05-21 04:11:22 +00:00
parent 1b8688c7ee
commit f3936f41d8
30 changed files with 1063 additions and 391 deletions

View File

@@ -78,7 +78,7 @@ export default function PriceDetails({
const items = [
{
title: `${selectedAncillary.title} / ${intl.formatMessage({
defaultMessage: "Adult",
defaultMessage: "adult",
})}`,
totalPrice: breakfastData.priceAdult,
currency: breakfastData.currency,

View File

@@ -104,7 +104,7 @@ export default function SelectQuantityStep({ user }: SelectQuantityStepProps) {
" "
}
{intl.formatMessage({
defaultMessage: "Pay with Card",
defaultMessage: "Pay with card at the hotel",
})}
</h2>
</Typography>
@@ -128,7 +128,7 @@ function BreakfastInfo() {
if (!breakfastData) {
return intl.formatMessage({
defaultMessage: "Can not show breakfast prices.",
defaultMessage: "Unable to display breakfast prices.",
})
}

View File

@@ -435,7 +435,7 @@ function BreakfastPriceList() {
if (!breakfastData) {
return intl.formatMessage({
defaultMessage: "Can not show breakfast prices.",
defaultMessage: "Unable to display breakfast prices.",
})
}
@@ -446,7 +446,7 @@ function BreakfastPriceList() {
<span>
{intl.formatMessage(
{
defaultMessage: "{price} / Adult / Night",
defaultMessage: "{price}/night per adult",
},
{
price: `${breakfastData.priceAdult} ${breakfastData.currency}`,