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:
@@ -80,6 +80,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Tag/sm">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.exchangeFrom",
|
||||
defaultMessage: "Exchange from",
|
||||
})}
|
||||
</p>
|
||||
@@ -89,6 +90,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.sasEuroBonus",
|
||||
defaultMessage: "SAS EuroBonus",
|
||||
})}
|
||||
</p>
|
||||
@@ -98,6 +100,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Tag/sm">
|
||||
<p className={styles.balanceLabel}>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.balance",
|
||||
defaultMessage: "Balance",
|
||||
})}
|
||||
</p>
|
||||
@@ -113,6 +116,7 @@ async function TransferPointsFormContent({
|
||||
<p>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "partnerSas.pointsWithValue",
|
||||
defaultMessage: "{points, number} p",
|
||||
},
|
||||
{ points: sasPoints }
|
||||
@@ -127,6 +131,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.noPointsToTransfer",
|
||||
defaultMessage: "You have no points to transfer.",
|
||||
})}
|
||||
</p>
|
||||
@@ -140,6 +145,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Tag/sm">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.exchangeTo",
|
||||
defaultMessage: "Exchange to",
|
||||
})}
|
||||
</p>
|
||||
@@ -148,6 +154,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "common.scandicFriends",
|
||||
defaultMessage: "Scandic Friends",
|
||||
})}
|
||||
</p>
|
||||
@@ -157,6 +164,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Tag/sm">
|
||||
<p className={styles.balanceLabel}>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.balance",
|
||||
defaultMessage: "Balance",
|
||||
})}
|
||||
</p>
|
||||
@@ -172,6 +180,7 @@ async function TransferPointsFormContent({
|
||||
<p>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "partnerSas.pointsWithValue",
|
||||
defaultMessage: "{points, number} p",
|
||||
},
|
||||
{ points: scandicPoints }
|
||||
@@ -191,6 +200,7 @@ async function TransferPointsFormContent({
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p style={{ color: "var(--Text-Tertiary)" }}>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.exchangedPointsNotLevelQualifying",
|
||||
defaultMessage: "Exchanged points will not be level-qualifying.",
|
||||
})}
|
||||
</p>
|
||||
|
||||
@@ -67,6 +67,7 @@ export function TransferPointsFormClient({
|
||||
// Set max value to 1 if sasPoints is 0 since slider requires a range
|
||||
maxValue={hasNoSasPoints ? 1 : sasPoints}
|
||||
aria-label={intl.formatMessage({
|
||||
id: "partnerSas.ebPointsToExchange",
|
||||
defaultMessage: "EB points to exchange",
|
||||
})}
|
||||
formatOptions={{
|
||||
@@ -88,6 +89,7 @@ export function TransferPointsFormClient({
|
||||
<TextField type="number" isDisabled={disabled}>
|
||||
<Input
|
||||
label={intl.formatMessage({
|
||||
id: "partnerSas.ebPointsToExchange",
|
||||
defaultMessage: "EB points to exchange",
|
||||
})}
|
||||
type="number"
|
||||
@@ -109,6 +111,7 @@ export function TransferPointsFormClient({
|
||||
<p className={styles.conversionRate}>
|
||||
{/* TODO maybe dynamic string based on exchange rate */}
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.conversionRateInfo",
|
||||
defaultMessage: "1 EuroBonus point = 2 Scandic Friends points",
|
||||
})}
|
||||
</p>
|
||||
@@ -117,6 +120,7 @@ export function TransferPointsFormClient({
|
||||
<Typography variant="Label/xsRegular">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.sfPointsToReceive",
|
||||
defaultMessage: "SF points to receive",
|
||||
})}
|
||||
</p>
|
||||
@@ -183,6 +187,7 @@ function ConfirmModal({
|
||||
disabled={disabled}
|
||||
>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.exchangePoints",
|
||||
defaultMessage: "Exchange points",
|
||||
})}
|
||||
</Button>
|
||||
@@ -197,6 +202,7 @@ function ConfirmModal({
|
||||
<Typography variant="Title/Subtitle/lg">
|
||||
<h3>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.proceedWithPointExchange",
|
||||
defaultMessage: "Proceed with point exchange?",
|
||||
})}
|
||||
</h3>
|
||||
@@ -205,6 +211,7 @@ function ConfirmModal({
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.youAreAboutToExchange",
|
||||
defaultMessage: "You are about to exchange:",
|
||||
})}
|
||||
</p>
|
||||
@@ -213,6 +220,7 @@ function ConfirmModal({
|
||||
<p>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "partnerSas.exchangePointsDetails",
|
||||
defaultMessage:
|
||||
"<bold>{sasPoints, number} EuroBonus points</bold> to <bold>{scandicPoints, number} Scandic Friends points</bold>",
|
||||
},
|
||||
@@ -232,6 +240,7 @@ function ConfirmModal({
|
||||
<Typography variant="Body/Supporting text (caption)/smRegular">
|
||||
<p className={styles.expiryText}>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.exchangePointsExpiry",
|
||||
defaultMessage:
|
||||
"Your exchanged points will retain their original expiry date with a maximum validity of 12 months.",
|
||||
})}
|
||||
@@ -245,6 +254,7 @@ function ConfirmModal({
|
||||
color="none"
|
||||
>
|
||||
{intl.formatMessage({
|
||||
id: "partnerSas.yesIWantToExchangeMyPoints",
|
||||
defaultMessage: "Yes, I want to exchange my points",
|
||||
})}
|
||||
</Link>
|
||||
@@ -256,6 +266,7 @@ function ConfirmModal({
|
||||
onClick={() => handleToggle(false)}
|
||||
>
|
||||
{intl.formatMessage({
|
||||
id: "common.cancel",
|
||||
defaultMessage: "Cancel",
|
||||
})}
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user