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:
Joakim Jäderberg
2025-10-22 11:00:03 +00:00
parent bdfe2ab213
commit aafad9781f
499 changed files with 93363 additions and 99164 deletions

View File

@@ -41,6 +41,7 @@ export default function PriceChangeDialog({
}: PriceChangeDialogProps) {
const intl = useIntl()
const title = intl.formatMessage({
id: "enterDetails.priceChangeDialog.title",
defaultMessage: "Price change",
})
const rooms = useEnterDetailsStore((state) => state.rooms)
@@ -68,6 +69,7 @@ export default function PriceChangeDialog({
const roomSelectionMsg = intl.formatMessage(
{
id: "enterDetails.priceChangeDialog.descriptionPreviousRooms",
defaultMessage: "{totalRooms, plural, one {room} other {rooms}}",
},
{
@@ -77,6 +79,7 @@ export default function PriceChangeDialog({
const newRoomSelectionMsg = intl.formatMessage(
{
id: "enterDetails.priceChangeDialog.descriptionNewRooms",
defaultMessage:
"{totalRooms, plural, one {a new room} other {new rooms}}",
},
@@ -112,6 +115,7 @@ export default function PriceChangeDialog({
<Body textAlign="center">
{intl.formatMessage(
{
id: "enterDetails.priceChangeDialog.description",
defaultMessage:
"Prices have increased since you selected your {roomSelection}.{linebreak} To continue your booking, accept the updated price,{linebreak} or go back to select {newRoomSelection}.",
},
@@ -125,6 +129,7 @@ export default function PriceChangeDialog({
<div>
<Subtitle textAlign="center" color="burgundy">
{intl.formatMessage({
id: "enterDetails.priceChangeDialog.newTotalLabel",
defaultMessage: "New total",
})}
</Subtitle>
@@ -148,11 +153,13 @@ export default function PriceChangeDialog({
<footer className={styles.footer}>
<Button intent="secondary" onClick={onCancel}>
{intl.formatMessage({
id: "enterDetails.priceChangeDialog.cancelButton",
defaultMessage: "Back to room selection",
})}
</Button>
<Button onClick={onAccept}>
{intl.formatMessage({
id: "enterDetails.priceChangeDialog.acceptButton",
defaultMessage: "Continue with new price",
})}
</Button>