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:
@@ -18,6 +18,7 @@ export default function ChangeNameDisclaimer() {
|
||||
<p>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "myPages.contactSupportForNameChange",
|
||||
defaultMessage:
|
||||
"Need to update your name? Please get in touch with member service at <phone>+46 8 517 517 00</phone> or <email>member@scandichotels.com</email>.",
|
||||
},
|
||||
|
||||
@@ -13,6 +13,7 @@ export default async function CommunicationSlot() {
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<h3>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.myCommunicationPreferences",
|
||||
defaultMessage: "My communication preferences",
|
||||
})}
|
||||
</h3>
|
||||
@@ -20,6 +21,7 @@ export default async function CommunicationSlot() {
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.tellUsWhatInfoYouWouldLikeToReceive",
|
||||
defaultMessage:
|
||||
"Tell us what information and updates you'd like to receive, and how, by clicking the link below.",
|
||||
})}
|
||||
|
||||
@@ -19,6 +19,7 @@ export default async function CreditCardSlot() {
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<h3>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.myPaymentCards",
|
||||
defaultMessage: "My payment cards",
|
||||
})}
|
||||
</h3>
|
||||
@@ -26,6 +27,7 @@ export default async function CreditCardSlot() {
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.checkOutCardsSavedToProfile",
|
||||
defaultMessage:
|
||||
"Check out the credit cards saved to your profile. Pay with a saved card when signed in for a smoother web experience.",
|
||||
})}
|
||||
|
||||
@@ -19,6 +19,7 @@ export default async function MembershipCardSlot() {
|
||||
<Typography variant="Title/Subtitle/md">
|
||||
<h3>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.myMembershipCards",
|
||||
defaultMessage: "My membership cards",
|
||||
})}
|
||||
</h3>
|
||||
@@ -30,6 +31,7 @@ export default async function MembershipCardSlot() {
|
||||
<h4 className={styles.subTitle}>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "myPages.nameWithCardMembershipType",
|
||||
defaultMessage: "Name: {cardMembershipType}",
|
||||
},
|
||||
{
|
||||
@@ -41,6 +43,7 @@ export default async function MembershipCardSlot() {
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "myPages.currentPointsWithPoints",
|
||||
defaultMessage: "Current Points: {points, number}",
|
||||
},
|
||||
{ points: card.currentPoints }
|
||||
@@ -49,6 +52,7 @@ export default async function MembershipCardSlot() {
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "myPages.memberSinceWithValue",
|
||||
defaultMessage: "Member Since: {value}",
|
||||
},
|
||||
{
|
||||
@@ -59,6 +63,7 @@ export default async function MembershipCardSlot() {
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "myPages.numberWithValue",
|
||||
defaultMessage: "Number: {membershipNumber}",
|
||||
},
|
||||
{
|
||||
@@ -69,6 +74,7 @@ export default async function MembershipCardSlot() {
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
id: "myPages.expirationDateWithDate",
|
||||
defaultMessage: "Expiration Date: {expirationDate}",
|
||||
},
|
||||
{
|
||||
@@ -82,6 +88,7 @@ export default async function MembershipCardSlot() {
|
||||
<MaterialIcon icon="add_circle" color="CurrentColor" />
|
||||
<Body color="burgundy" textTransform="underlined">
|
||||
{intl.formatMessage({
|
||||
id: "myPages.addNewCard",
|
||||
defaultMessage: "Add new card",
|
||||
})}
|
||||
</Body>
|
||||
|
||||
@@ -57,6 +57,7 @@ export default async function Profile() {
|
||||
addressParts.length > 0
|
||||
? addressParts.join(", ")
|
||||
: intl.formatMessage({
|
||||
id: "common.NA",
|
||||
defaultMessage: "N/A",
|
||||
})
|
||||
|
||||
@@ -72,6 +73,7 @@ export default async function Profile() {
|
||||
<Typography variant="Title/xs">
|
||||
<h2 className={styles.title}>
|
||||
{intl.formatMessage({
|
||||
id: "common.welcome",
|
||||
defaultMessage: "Welcome",
|
||||
})}
|
||||
<br />
|
||||
@@ -87,6 +89,7 @@ export default async function Profile() {
|
||||
typography="Body/Supporting text (caption)/smBold"
|
||||
>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.editProfile",
|
||||
defaultMessage: "Edit profile",
|
||||
})}
|
||||
</ButtonLink>
|
||||
@@ -100,6 +103,7 @@ export default async function Profile() {
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "myPages.dateOfBirth",
|
||||
defaultMessage: "Date of birth",
|
||||
})}
|
||||
</p>
|
||||
@@ -113,6 +117,7 @@ export default async function Profile() {
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "common.phoneNumber",
|
||||
defaultMessage: "Phone number",
|
||||
})}
|
||||
</p>
|
||||
@@ -126,6 +131,7 @@ export default async function Profile() {
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "common.language",
|
||||
defaultMessage: "Language",
|
||||
})}
|
||||
</p>
|
||||
@@ -139,6 +145,7 @@ export default async function Profile() {
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "common.email",
|
||||
defaultMessage: "Email",
|
||||
})}
|
||||
</p>
|
||||
@@ -152,6 +159,7 @@ export default async function Profile() {
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "common.address",
|
||||
defaultMessage: "Address",
|
||||
})}
|
||||
</p>
|
||||
@@ -165,6 +173,7 @@ export default async function Profile() {
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
<p>
|
||||
{intl.formatMessage({
|
||||
id: "common.password",
|
||||
defaultMessage: "Password",
|
||||
})}
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user